diff --git a/src/ui/popup/pages/send/index.tsx b/src/ui/popup/pages/send/index.tsx index 4ca06693b4..827d7b5907 100644 --- a/src/ui/popup/pages/send/index.tsx +++ b/src/ui/popup/pages/send/index.tsx @@ -247,7 +247,7 @@ export const SendPage: FunctionComponent = observer( ChainInfo | undefined >(undefined); - const [gasForSendMsg, setGasForSendMsg] = useState(100000); + const [gasForSendMsg, setGasForSendMsg] = useState(200000); // If chain is GoZ hub, and it tries to send via IBC, increase gas limit. useEffect(() => { if ( @@ -256,7 +256,7 @@ export const SendPage: FunctionComponent = observer( ) { setGasForSendMsg(200000); } else { - setGasForSendMsg(100000); + setGasForSendMsg(200000); } }, [chainStore.chainInfo.chainId, counterpartyChainInfo]);