Skip to content

Commit

Permalink
chore(multichain-testing): fix the lint
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Jan 23, 2025
1 parent 5252cef commit 3a4bb6b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions multichain-testing/test/ibc-transfers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ const fundRemote = async (
yes: true,
},
);
t.is(fundInitial.code, 0);
t.log('Success. TxHash:', fundInitial.txhash);
t.is(fundInitial?.code, 0);
t.log('Success. TxHash:', fundInitial?.txhash);

const queryClient = makeQueryClient(
await useChain(destChainName).getRestEndpoint(),
Expand Down Expand Up @@ -272,8 +272,8 @@ test('pfm: osmosis -> agoric -> cosmoshub', async t => {
fees: '200000uosmo',
},
);
t.is(pfmThroughAgoric.code, 0);
t.log('PFM Transfer success. Tx:', pfmThroughAgoric.txhash);
t.is(pfmThroughAgoric?.code, 0);
t.log('PFM Transfer success. Tx:', pfmThroughAgoric?.txhash);

const cosmosQueryClient = makeQueryClient(
await useChain('cosmoshub').getRestEndpoint(),
Expand Down

0 comments on commit 3a4bb6b

Please sign in to comment.