diff --git a/testutil/network/util.go b/testutil/network/util.go index e788c1d23..dec6b8c9b 100644 --- a/testutil/network/util.go +++ b/testutil/network/util.go @@ -27,7 +27,6 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - inflationtypes "github.com/evmos/evmos/v14/x/inflation/types" "github.com/evmos/evmos/v14/server" evmtypes "github.com/evmos/evmos/v14/x/evm/types" @@ -212,12 +211,6 @@ func initGenFiles(cfg Config, genAccounts []authtypes.GenesisAccount, genBalance govGenState.Params.MinDeposit[0].Denom = cfg.BondDenom cfg.GenesisState[govtypes.ModuleName] = cfg.Codec.MustMarshalJSON(&govGenState) - var inflationGenState inflationtypes.GenesisState - cfg.Codec.MustUnmarshalJSON(cfg.GenesisState[inflationtypes.ModuleName], &inflationGenState) - - inflationGenState.Params.MintDenom = cfg.BondDenom - cfg.GenesisState[inflationtypes.ModuleName] = cfg.Codec.MustMarshalJSON(&inflationGenState) - var crisisGenState crisistypes.GenesisState cfg.Codec.MustUnmarshalJSON(cfg.GenesisState[crisistypes.ModuleName], &crisisGenState)