From 2e179226000ff566aca005f275c3ae6cfe447988 Mon Sep 17 00:00:00 2001 From: brewmaster012 <88689859+brewmaster012@users.noreply.github.com> Date: Tue, 17 Oct 2023 15:23:07 -0700 Subject: [PATCH] adjust zetaclient minimum outbound gaslimit to be 100K --- zetaclient/evm_signer.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zetaclient/evm_signer.go b/zetaclient/evm_signer.go index 96c6dc728e..925354f27c 100644 --- a/zetaclient/evm_signer.go +++ b/zetaclient/evm_signer.go @@ -320,8 +320,8 @@ func (signer *EVMSigner) TryProcessOutTx(send *types.CrossChainTx, outTxMan *Out } gasLimit := send.GetCurrentOutTxParam().OutboundTxGasLimit - if gasLimit < 50_000 { - gasLimit = 50_000 + if gasLimit < 100_000 { + gasLimit = 100_000 logger.Warn().Msgf("gasLimit %d is too low; set to %d", send.GetCurrentOutTxParam().OutboundTxGasLimit, gasLimit) } if gasLimit > 1_000_000 {