Skip to content

Commit 6372e22

Browse files
committed
fix test
1 parent ebf4765 commit 6372e22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

evmd/ante/ante_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ func (suite *AnteTestSuite) TestAnteHandler() {
356356
"success - DeliverTx EIP712 signed Cosmos Tx with DelegateMsg",
357357
func() sdk.Tx {
358358
from := acc.GetAddress()
359-
gas := uint64(200000)
359+
gas := uint64(300000)
360360
coinAmount := sdk.NewCoin(evmtypes.DefaultEVMDenom, sdkmath.NewInt(100*int64(gas)))
361361
amount := sdk.NewCoins(coinAmount)
362362
txBuilder := suite.CreateTestEIP712TxBuilderMsgDelegate(from, privKey, "ethermint_9000-1", gas, amount)
@@ -369,7 +369,7 @@ func (suite *AnteTestSuite) TestAnteHandler() {
369369
from := acc.GetAddress()
370370
coinAmount := sdk.NewCoin(evmtypes.DefaultEVMDenom, sdkmath.NewInt(20))
371371
amount := sdk.NewCoins(coinAmount)
372-
gas := uint64(200000)
372+
gas := uint64(300000)
373373
txBuilder := suite.CreateTestEIP712MsgCreateValidator(from, privKey, "ethermint_9000-1", gas, amount)
374374
return txBuilder.GetTx()
375375
}, false, false, true,
@@ -380,7 +380,7 @@ func (suite *AnteTestSuite) TestAnteHandler() {
380380
from := acc.GetAddress()
381381
coinAmount := sdk.NewCoin(evmtypes.DefaultEVMDenom, sdkmath.NewInt(20))
382382
amount := sdk.NewCoins(coinAmount)
383-
gas := uint64(200000)
383+
gas := uint64(300000)
384384
txBuilder := suite.CreateTestEIP712MsgCreateValidator2(from, privKey, "ethermint_9000-1", gas, amount)
385385
return txBuilder.GetTx()
386386
}, false, false, true,

0 commit comments

Comments
 (0)