diff --git a/x/evm/genesis.go b/x/evm/genesis.go index 6eedc34eab..86b0075ea2 100644 --- a/x/evm/genesis.go +++ b/x/evm/genesis.go @@ -18,13 +18,13 @@ package evm import ( "bytes" "fmt" - precompile_modules "github.com/ethereum/go-ethereum/precompile/modules" abci "github.com/cometbft/cometbft/abci/types" sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" + precompile_modules "github.com/ethereum/go-ethereum/precompile/modules" ethermint "github.com/evmos/ethermint/types" "github.com/evmos/ethermint/x/evm/keeper" "github.com/evmos/ethermint/x/evm/types" diff --git a/x/evm/types/params.go b/x/evm/types/params.go index 10bcf98cf9..d5940b8f5c 100644 --- a/x/evm/types/params.go +++ b/x/evm/types/params.go @@ -17,14 +17,14 @@ package types import ( "fmt" - precompile_modules "github.com/ethereum/go-ethereum/precompile/modules" "math/big" + sdk "github.com/cosmos/cosmos-sdk/types" "github.com/ethereum/go-ethereum/common" + "github.com/ethereum/go-ethereum/core/vm" "github.com/ethereum/go-ethereum/params" + precompile_modules "github.com/ethereum/go-ethereum/precompile/modules" - sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/ethereum/go-ethereum/core/vm" "github.com/evmos/ethermint/types" ) diff --git a/x/evm/types/params_test.go b/x/evm/types/params_test.go index 2469aa8ee0..f7fbdb16ce 100644 --- a/x/evm/types/params_test.go +++ b/x/evm/types/params_test.go @@ -1,12 +1,11 @@ package types import ( - "github.com/ethereum/go-ethereum/common" - precompile_modules "github.com/ethereum/go-ethereum/precompile/modules" "testing" + "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/params" - + precompile_modules "github.com/ethereum/go-ethereum/precompile/modules" "github.com/stretchr/testify/require" )