Skip to content

Commit f16467c

Browse files
committed
delete all evmappoptions from tests
1 parent 5bd1add commit f16467c

File tree

4 files changed

+0
-7
lines changed

4 files changed

+0
-7
lines changed

ante/evm/fee_checker_test.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ func TestSDKTxFeeChecker(t *testing.T) {
5959
// london hardfork enableness
6060
chainID := uint64(config.EighteenDecimalsChainID)
6161
encodingConfig := encoding.MakeConfig(chainID)
62-
err := config.EvmAppOptions(chainID)
63-
require.NoError(t, err)
6462

6563
evmDenom := evmtypes.GetEVMCoinDenom()
6664
minGasPrices := sdk.NewDecCoins(sdk.NewDecCoin(evmDenom, math.NewInt(10)))

ante/evm/mono_decorator_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ func toMsgSlice(msgs []*evmsdktypes.MsgEthereumTx) []sdk.Msg {
145145

146146
func TestMonoDecorator(t *testing.T) {
147147
chainID := uint64(config.EighteenDecimalsChainID)
148-
require.NoError(t, config.EvmAppOptions(chainID))
149148
cfg := encoding.MakeConfig(chainID)
150149

151150
testCases := []struct {

x/precisebank/keeper/keeper_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ func newMockedTestData(t *testing.T) testData {
4444
cfg := evmosencoding.MakeConfig(chainID)
4545
cdc := cfg.Codec
4646
k := keeper.NewKeeper(cdc, storeKey, bk, ak)
47-
err := evmconfig.EvmAppOptions(chainID)
4847
if err != nil {
4948
return testData{}
5049
}

x/vm/types/msg_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import (
1313
"github.com/ethereum/go-ethereum/crypto"
1414
"github.com/stretchr/testify/suite"
1515

16-
evmconfig "github.com/cosmos/evm/config"
1716
"github.com/cosmos/evm/encoding"
1817
testconstants "github.com/cosmos/evm/testutil/constants"
1918
utiltx "github.com/cosmos/evm/testutil/tx"
@@ -56,8 +55,6 @@ func (suite *MsgsTestSuite) SetupTest() {
5655

5756
configurator := types.NewEVMConfigurator()
5857
configurator.ResetTestConfig()
59-
err := evmconfig.EvmAppOptions(9001)
60-
suite.Require().NoError(err)
6158
}
6259

6360
func (suite *MsgsTestSuite) TestMsgEthereumTx_Constructor() {

0 commit comments

Comments
 (0)