From 92c01776ba84cf6e106603ad17be064ddd4673bd Mon Sep 17 00:00:00 2001 From: Daniel Bate Date: Thu, 17 Oct 2024 11:02:37 +0700 Subject: [PATCH] chore: improve doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Nedim Salkić --- apps/docs-snippets2/src/cookbook/combining-utxos.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/docs-snippets2/src/cookbook/combining-utxos.ts b/apps/docs-snippets2/src/cookbook/combining-utxos.ts index 90cee50add..929071d699 100644 --- a/apps/docs-snippets2/src/cookbook/combining-utxos.ts +++ b/apps/docs-snippets2/src/cookbook/combining-utxos.ts @@ -49,8 +49,8 @@ const { coins: combinedCoins } = await wallet.getCoins( console.log('Combined Coins Length', combinedCoins.length); // 2 -// And we can also confirm the final balance of the base asset for this account is 9_998. So -// the cost of combining is also minimal. +// And we can also confirm the final balance of the base asset for this account is 9_998, +// so the cost of combining is also minimal. const combinedBalance = await wallet.getBalance(provider.getBaseAssetId()); console.log('Combined Balance', combinedBalance.toNumber()); // 9_998