From c4870d387d55d0238d63498450bcb245a4d3f4d1 Mon Sep 17 00:00:00 2001 From: pdp2121 <71317875+pdp2121@users.noreply.github.com> Date: Tue, 31 Jan 2023 11:58:49 -0500 Subject: [PATCH] Update content/_code-samples/claim-payment-channel/js/claimPayChannel.ts Co-authored-by: Jackson Mills --- .../_code-samples/claim-payment-channel/js/claimPayChannel.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/_code-samples/claim-payment-channel/js/claimPayChannel.ts b/content/_code-samples/claim-payment-channel/js/claimPayChannel.ts index b1b3565fc5..47c197bc31 100644 --- a/content/_code-samples/claim-payment-channel/js/claimPayChannel.ts +++ b/content/_code-samples/claim-payment-channel/js/claimPayChannel.ts @@ -67,8 +67,8 @@ async function claimPayChannel(): Promise { console.log(channelClaimResponse) console.log('Balances of wallets after Payment Channel is claimed:') - console.log(await client.getXrpBalance(wallet1.classicAddress)) - console.log(await client.getXrpBalance(wallet2.classicAddress)) + console.log(`Balance of ${wallet1.address} is ${await client.getXrpBalance(wallet1.address)} XRP) + console.log(`Balance of ${wallet2.address} is ${await client.getXrpBalance(wallet2.address)} XRP) await client.disconnect() }