Skip to content

Commit

Permalink
Merge pull request #10 from MystenLabs/ml/fix-gas-budget
Browse files Browse the repository at this point in the history
Fix gas budget
  • Loading branch information
jnaulty committed Jul 6, 2023
2 parents 6520731 + 10e9de9 commit 0cf7eaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/airdrop/helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export const prepareMultisigTx = async (
if(!gasObjectId) throw new Error("No gas object supplied for a mainnet transaction");

// set the gas budget.
tx.setGasBudget(9_000_000);
tx.setGasBudget(9_000_000_000);

// set the sender to be the admin address from config.
tx.setSenderIfNotSet(config.adminAddress as string);
Expand Down

0 comments on commit 0cf7eaa

Please sign in to comment.