Skip to content

Commit

Permalink
Increase gas values for Undelegate and BeginRedelegate
Browse files Browse the repository at this point in the history
400 was insufficient for a simple Undelegate with only one reward token
  • Loading branch information
webmaster128 committed Jan 16, 2025
1 parent 721ba1b commit 989ffb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/txMsgHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ const gasOfMsg = (msgType: MsgTypeUrl): number => {
// a lot of auto-claims. See https://github.com/cosmos/cosmos-multisig-ui/issues/177.
return 400_000;
case MsgTypeUrls.Undelegate:
return 400_000;
return 600_000;
case MsgTypeUrls.BeginRedelegate:
return 400_000;
return 600_000;
// Distribution
case MsgTypeUrls.FundCommunityPool:
return 100_000;
Expand Down

0 comments on commit 989ffb6

Please sign in to comment.