Skip to content

Commit

Permalink
Fix Store Contract Fee
Browse files Browse the repository at this point in the history
  • Loading branch information
joelsmith-2019 committed Oct 2, 2024
1 parent 83e5db4 commit 20dbcc2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions wormchain/contracts/tools/deploy_wormchain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,10 @@ async function main() {

console.log("store code msg: ", msg);

const result = await client.signAndBroadcast(signer, [msg], ZERO_FEE);
const result = await client.signAndBroadcast(signer, [msg], {
...ZERO_FEE,
gas: "10000000",
});

console.log("store code result: ", result);

Expand Down Expand Up @@ -410,7 +413,7 @@ async function main() {
}
}),
client.core.msgCreateAllowlistEntryRequest({
value: {
value: {
signer: signer,
address: "wormhole18s5lynnmx37hq4wlrw9gdn68sg2uxp5rwf5k3u",
name: "nttAccountantTest",
Expand Down

0 comments on commit 20dbcc2

Please sign in to comment.