Skip to content

Commit

Permalink
Increase gas limit for set stake (#2918)
Browse files Browse the repository at this point in the history
  • Loading branch information
NZT48 authored Feb 2, 2024
1 parent 2039e20 commit 11112a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/set-stake.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ async function setStake(
// TODO: Add ABI instead of hard-coded function definition
tx = await stakingContract['addStake(uint72,uint96)'](identityId, stakeWei, {
gasPrice: gasPrice ? gasPrice * 100 : undefined,
gasLimit: 500_000,
gasLimit: 3_000_000,
});
await provider.waitForTransaction(
tx.hash,
Expand Down

0 comments on commit 11112a4

Please sign in to comment.