8e2c65295f
* imp(evm): rename RejectUnprotectedTx to AllowUnprotectedTxs * changelog
48 lines
1.4 KiB
Go
48 lines
1.4 KiB
Go
package v2_test
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/cosmos/cosmos-sdk/testutil"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
|
|
|
|
"github.com/evmos/ethermint/encoding"
|
|
|
|
"github.com/evmos/ethermint/app"
|
|
v2 "github.com/evmos/ethermint/x/evm/migrations/v2"
|
|
v2types "github.com/evmos/ethermint/x/evm/migrations/v2/types"
|
|
"github.com/evmos/ethermint/x/evm/types"
|
|
)
|
|
|
|
func TestMigrateStore(t *testing.T) {
|
|
encCfg := encoding.MakeConfig(app.ModuleBasics)
|
|
feemarketKey := sdk.NewKVStoreKey(types.StoreKey)
|
|
tFeeMarketKey := sdk.NewTransientStoreKey(fmt.Sprintf("%s_test", types.StoreKey))
|
|
ctx := testutil.DefaultContext(feemarketKey, tFeeMarketKey)
|
|
paramstore := paramtypes.NewSubspace(
|
|
encCfg.Marshaler, encCfg.Amino, feemarketKey, tFeeMarketKey, "evm",
|
|
).WithKeyTable(v2types.ParamKeyTable())
|
|
|
|
params := v2types.DefaultParams()
|
|
paramstore.SetParamSet(ctx, ¶ms)
|
|
|
|
require.Panics(t, func() {
|
|
var result bool
|
|
paramstore.Get(ctx, types.ParamStoreKeyAllowUnprotectedTxs, &result)
|
|
})
|
|
|
|
paramstore = paramtypes.NewSubspace(
|
|
encCfg.Marshaler, encCfg.Amino, feemarketKey, tFeeMarketKey, "evm",
|
|
).WithKeyTable(types.ParamKeyTable())
|
|
err := v2.MigrateStore(ctx, ¶mstore)
|
|
require.NoError(t, err)
|
|
|
|
var result bool
|
|
paramstore.Get(ctx, types.ParamStoreKeyAllowUnprotectedTxs, &result)
|
|
require.Equal(t, types.DefaultAllowUnprotectedTxs, result)
|
|
}
|