From 989ffb629d9c14db08ae7247478018cd7fd2e248 Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Thu, 16 Jan 2025 13:23:41 +0100 Subject: [PATCH] Increase gas values for Undelegate and BeginRedelegate 400 was insufficient for a simple Undelegate with only one reward token --- lib/txMsgHelpers.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/txMsgHelpers.ts b/lib/txMsgHelpers.ts index 8055fb4..5ae9146 100644 --- a/lib/txMsgHelpers.ts +++ b/lib/txMsgHelpers.ts @@ -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;