Skip to content

Commit

Permalink
chore: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
HinsonSIDAN committed Oct 17, 2024
1 parent 12c6f6c commit d4f729c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ async fn my_first_whisky_tx(
my_address: &str,
inputs: Vec<UTxO>,
) -> String {
let mut mesh = TxBuilder::new_core();
mesh.tx_out(
let mut tx_builder = TxBuilder::new_core();
tx_builder.tx_out(
&recipient_address,
vec![Asset::new_from_str("lovelace", "1000000")],
)
Expand All @@ -66,7 +66,7 @@ async fn my_first_whisky_tx(
.complete(None)
.await;

mesh.tx_hex()
tx_builder.tx_hex()
}
```

Expand Down

0 comments on commit d4f729c

Please sign in to comment.