From b2bd3428cc4efb3a83733c38bca9475c8fd48f34 Mon Sep 17 00:00:00 2001 From: mr-t Date: Fri, 7 Jun 2024 13:05:45 +0200 Subject: [PATCH] more test output --- ts-relayer-tests/src/ics721.spec.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ts-relayer-tests/src/ics721.spec.ts b/ts-relayer-tests/src/ics721.spec.ts index 204b22db..ee269d72 100644 --- a/ts-relayer-tests/src/ics721.spec.ts +++ b/ts-relayer-tests/src/ics721.spec.ts @@ -56,7 +56,9 @@ const standardSetup = async (t: ExecutionContext) => { t.context.osmoClient = await setupOsmosisClient(MNEMONIC); t.context.wasmAddr = t.context.wasmClient.senderAddress; + t.log(`wasm client address: ${t.context.wasmAddr}`); t.context.osmoAddr = t.context.osmoClient.senderAddress; + t.log(`osmo client address: ${t.context.osmoAddr}`); const { wasmClient, osmoClient } = t.context; @@ -331,6 +333,7 @@ test.serial('transfer NFT: wasmd -> osmo', async (t) => { }, }; transferResponse = await sendNft(wasmClient, wasmCw721, wasmCw721OutgoingProxy, ibcMsg, tokenId); + t.log(`- transfer response: ${JSON.stringify(transferResponse)}`); t.truthy(transferResponse); // Relay and verify we got an error