From d87a7ed85bfe3ae6c9f4244734160f0eebb1cb89 Mon Sep 17 00:00:00 2001 From: Joel Smith Date: Fri, 4 Oct 2024 15:01:04 -0500 Subject: [PATCH] Remove Debug Msgs, Increase Timeout --- .../contracts/tools/__tests__/test_ntt_accountant.ts | 8 ++++---- wormchain/contracts/tools/deploy_wormchain.ts | 5 ----- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/wormchain/contracts/tools/__tests__/test_ntt_accountant.ts b/wormchain/contracts/tools/__tests__/test_ntt_accountant.ts index 5490e72b0d..f595364751 100644 --- a/wormchain/contracts/tools/__tests__/test_ntt_accountant.ts +++ b/wormchain/contracts/tools/__tests__/test_ntt_accountant.ts @@ -1020,7 +1020,7 @@ describe("NTT Global Accountant Tests", () => { transport: NodeHttpTransport(), }, 1000, - 60 + 180 ); await waitForMetricsChange( (afterMetrics) => @@ -1164,7 +1164,7 @@ describe("NTT Global Accountant Tests", () => { transport: NodeHttpTransport(), }, 1000, - 60 + 180 ); await waitForMetricsChange( (afterMetrics) => @@ -1240,7 +1240,7 @@ describe("NTT Global Accountant Tests", () => { transport: NodeHttpTransport(), }, 1000, - 60 + 180 ); await waitForMetricsChange( (afterMetrics) => @@ -1528,7 +1528,7 @@ describe("NTT Global Accountant Tests", () => { transport: NodeHttpTransport(), }, 1000, - 60 + 180 ); await waitForMetricsChange( (afterMetrics) => diff --git a/wormchain/contracts/tools/deploy_wormchain.ts b/wormchain/contracts/tools/deploy_wormchain.ts index ec42d643be..877ca7e628 100644 --- a/wormchain/contracts/tools/deploy_wormchain.ts +++ b/wormchain/contracts/tools/deploy_wormchain.ts @@ -156,15 +156,10 @@ async function main() { } }); - console.log("store code msg: ", msg); - const result = await client.signAndBroadcast(signer, [msg], { ...ZERO_FEE, gas: "10000000", }); - - console.log("store code result: ", result); - const codeId = Number( JSON.parse(result.rawLog)[0] .events.find(({ type }) => type === "store_code")