From d2ed4ef10933a3f29e6e087158fd6e6cfa0f21f8 Mon Sep 17 00:00:00 2001 From: abefernan <44572727+abefernan@users.noreply.github.com> Date: Mon, 19 Jun 2023 18:13:19 +0200 Subject: [PATCH] Increase gas limit for ibc MsgTransfer --- lib/txMsgHelpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/txMsgHelpers.ts b/lib/txMsgHelpers.ts index f25a199..0654314 100644 --- a/lib/txMsgHelpers.ts +++ b/lib/txMsgHelpers.ts @@ -19,7 +19,7 @@ const gasOfMsg = (msgType: MsgTypeUrl): number => { case MsgTypeUrls.CreateVestingAccount: return 100_000; case MsgTypeUrls.Transfer: - return 100_000; + return 180_000; default: throw new Error("Unknown msg type"); }