From a26b7e7ba88e35a4be5b9d852354bf8a7a7d1691 Mon Sep 17 00:00:00 2001 From: Michalina Date: Wed, 1 Nov 2023 12:24:41 +0100 Subject: [PATCH] Print tcoin depositor address This is a commit for debugging purposes, not intended for merge to main. --- system-tests/test/deposit-redemption.test.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/system-tests/test/deposit-redemption.test.ts b/system-tests/test/deposit-redemption.test.ts index c5052fef7..a20386d9f 100644 --- a/system-tests/test/deposit-redemption.test.ts +++ b/system-tests/test/deposit-redemption.test.ts @@ -145,6 +145,11 @@ describe("System Test - Deposit and redemption", () => { Hex.from(systemTestsContext.depositorBitcoinKeyPair.publicKey.compressed), BitcoinNetwork.Testnet, ) + console.log(` + Depositor Bitcoin address: + ${depositorBitcoinAddress} + `) + const depositorUtxos = await electrumClient.findAllUnspentTransactionOutputs( depositorBitcoinAddress )