From 83e5db4a72fd46294a0f29e1c4f005fc0f3a5d62 Mon Sep 17 00:00:00 2001 From: Joel Smith Date: Wed, 2 Oct 2024 11:31:22 -0500 Subject: [PATCH] Update Fee --- wormchain/contracts/tools/deploy_wormchain.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/wormchain/contracts/tools/deploy_wormchain.ts b/wormchain/contracts/tools/deploy_wormchain.ts index c9eb4fd574..b05c7347fe 100644 --- a/wormchain/contracts/tools/deploy_wormchain.ts +++ b/wormchain/contracts/tools/deploy_wormchain.ts @@ -157,10 +157,7 @@ async function main() { console.log("store code msg: ", msg); - const result = await client.signAndBroadcast(signer, [msg], { - ...ZERO_FEE, - gas: "10000000", - }); + const result = await client.signAndBroadcast(signer, [msg], ZERO_FEE); console.log("store code result: ", result);