Skip to content

Commit

Permalink
Remove Debug Msgs, Increase Timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
joelsmith-2019 committed Oct 4, 2024
1 parent f042b5b commit d87a7ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
8 changes: 4 additions & 4 deletions wormchain/contracts/tools/__tests__/test_ntt_accountant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,7 @@ describe("NTT Global Accountant Tests", () => {
transport: NodeHttpTransport(),
},
1000,
60
180
);
await waitForMetricsChange(
(afterMetrics) =>
Expand Down Expand Up @@ -1164,7 +1164,7 @@ describe("NTT Global Accountant Tests", () => {
transport: NodeHttpTransport(),
},
1000,
60
180
);
await waitForMetricsChange(
(afterMetrics) =>
Expand Down Expand Up @@ -1240,7 +1240,7 @@ describe("NTT Global Accountant Tests", () => {
transport: NodeHttpTransport(),
},
1000,
60
180
);
await waitForMetricsChange(
(afterMetrics) =>
Expand Down Expand Up @@ -1528,7 +1528,7 @@ describe("NTT Global Accountant Tests", () => {
transport: NodeHttpTransport(),
},
1000,
60
180
);
await waitForMetricsChange(
(afterMetrics) =>
Expand Down
5 changes: 0 additions & 5 deletions wormchain/contracts/tools/deploy_wormchain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit d87a7ed

Please sign in to comment.