diff --git a/test/ibc.test.ts b/test/ibc.test.ts index 876051d3..878b9d18 100644 --- a/test/ibc.test.ts +++ b/test/ibc.test.ts @@ -420,7 +420,11 @@ describe("ibcResponses", () => { } expect(tx.code).toBe(TxResultCode.Success); - const txs = await secretjs.query.txsQuery( + const readonly = new SecretNetworkClient({ + chainId: "secretdev-1", + url: "http://localhost:1317", + }); + const txs = await readonly.query.txsQuery( `tx.hash='${tx.transactionHash}'`, );