38 lines
1.2 KiB
Go
38 lines
1.2 KiB
Go
|
package v011
|
||
|
|
||
|
import (
|
||
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||
|
|
||
|
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
|
||
|
v010types "github.com/tharsis/ethermint/x/feemarket/migrations/v010/types"
|
||
|
"github.com/tharsis/ethermint/x/feemarket/types"
|
||
|
)
|
||
|
|
||
|
// MigrateStore adds the MinGasPrice param with a value of 0
|
||
|
func MigrateStore(ctx sdk.Context, paramstore *paramtypes.Subspace) error {
|
||
|
if !paramstore.HasKeyTable() {
|
||
|
ps := paramstore.WithKeyTable(types.ParamKeyTable())
|
||
|
paramstore = &ps
|
||
|
}
|
||
|
|
||
|
paramstore.Set(ctx, types.ParamStoreKeyMinGasPrice, sdk.ZeroDec())
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// MigrateJSON accepts exported v0.10 x/feemarket genesis state and migrates it to
|
||
|
// v0.11 x/feemarket genesis state. The migration includes:
|
||
|
// - add MinGasPrice param
|
||
|
func MigrateJSON(oldState v010types.GenesisState) types.GenesisState {
|
||
|
return types.GenesisState{
|
||
|
Params: types.Params{
|
||
|
NoBaseFee: oldState.Params.NoBaseFee,
|
||
|
BaseFeeChangeDenominator: oldState.Params.BaseFeeChangeDenominator,
|
||
|
ElasticityMultiplier: oldState.Params.ElasticityMultiplier,
|
||
|
EnableHeight: oldState.Params.EnableHeight,
|
||
|
BaseFee: oldState.Params.BaseFee,
|
||
|
MinGasPrice: sdk.ZeroDec(),
|
||
|
},
|
||
|
BlockGas: oldState.BlockGas,
|
||
|
}
|
||
|
}
|