diff --git a/src/screens/staking/lib/staking_sdk/wallet_operations/cosmos.ts b/src/screens/staking/lib/staking_sdk/wallet_operations/cosmos.ts index fc4de235..1da82d97 100644 --- a/src/screens/staking/lib/staking_sdk/wallet_operations/cosmos.ts +++ b/src/screens/staking/lib/staking_sdk/wallet_operations/cosmos.ts @@ -103,7 +103,10 @@ const getCosmosError = (err: Error): CosmosError => { return CosmosError.Success; } - if (err?.message?.includes("out of gas in")) { + if ( + err?.message?.includes("out of gas in") || + err?.message?.includes("insufficient fee") + ) { return CosmosError.NotEnoughGas; }