Increase gas limit for ibc MsgTransfer

This commit is contained in:
abefernan
2023-06-19 18:13:19 +02:00
parent 346f24ecde
commit d2ed4ef109
+1 -1
View File
@@ -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");
}