Skip to content

Commit

Permalink
chore: improve doc
Browse files Browse the repository at this point in the history
Co-authored-by: Nedim Salkić <nedim.salkic@fuel.sh>
  • Loading branch information
danielbate and nedsalk authored Oct 17, 2024
1 parent 7f0641d commit 9e17c08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/docs-snippets2/src/cookbook/combining-utxos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ const combineTx = await wallet.transfer(
);
await combineTx.wait();

// Now we can perform the same validations and see we have less UTXOs. We have 2 in this instance
// as we have performed the transfer in the base asset. So we have a UTXO for our transfer, and another
// for what is left after paying the fees.
// Now we can perform the same validations and see we have less UTXOs.
// We have 2 in this instance, as we have performed the transfer in the base asset:
// a UTXO for our transfer, and another for what is left after paying the fees.
const { coins: combinedCoins } = await wallet.getCoins(
provider.getBaseAssetId()
);
Expand Down

0 comments on commit 9e17c08

Please sign in to comment.