forked from cerc-io/laconicd-deprecated
20 lines
559 B
Go
20 lines
559 B
Go
|
package v2
|
||
|
|
||
|
import (
|
||
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||
|
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
|
||
|
"github.com/tharsis/ethermint/x/evm/types"
|
||
|
)
|
||
|
|
||
|
// MigrateStore add the default RejectUnprotected parameter.
|
||
|
func MigrateStore(ctx sdk.Context, paramstore *paramtypes.Subspace) error {
|
||
|
if !paramstore.HasKeyTable() {
|
||
|
ps := paramstore.WithKeyTable(types.ParamKeyTable())
|
||
|
paramstore = &ps
|
||
|
}
|
||
|
|
||
|
// add RejectUnprotected
|
||
|
paramstore.Set(ctx, types.ParamStoreKeyRejectUnprotectedTx, types.DefaultParams().RejectUnprotectedTx)
|
||
|
return nil
|
||
|
}
|