5f7ee9bfad
* update dep * make proto-all * avoid duplicate register proto type in evm * set KeyTable * update from version to v.19.x which support submit-proposal * test AvailableExtraEIPs * keep grpc query compatible with version before migrate * fix duplicate register & migrate in feemarket * update nix * support typed event for bloom & txLog * partial revert typed ethereumTx * Revert "partial revert typed ethereumTx" This reverts commit 314bb288f385b79f6fff6badff79cd790b74a27e. * Revert "support typed event for bloom & txLog" This reverts commit 287d3aec30a951a7cece40a0c310858997850a3d. Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com> Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>
52 lines
1.3 KiB
Go
52 lines
1.3 KiB
Go
package v4_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/cosmos/cosmos-sdk/testutil"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/evmos/ethermint/app"
|
|
"github.com/evmos/ethermint/encoding"
|
|
v4 "github.com/evmos/ethermint/x/feemarket/migrations/v4"
|
|
"github.com/evmos/ethermint/x/feemarket/types"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
type mockSubspace struct {
|
|
ps types.Params
|
|
}
|
|
|
|
func newMockSubspaceEmpty() mockSubspace {
|
|
return mockSubspace{}
|
|
}
|
|
|
|
func newMockSubspace(ps types.Params) mockSubspace {
|
|
return mockSubspace{ps: ps}
|
|
}
|
|
|
|
func (ms mockSubspace) GetParamSetIfExists(ctx sdk.Context, ps types.LegacyParams) {
|
|
*ps.(*types.Params) = ms.ps
|
|
}
|
|
|
|
func TestMigrate(t *testing.T) {
|
|
encCfg := encoding.MakeConfig(app.ModuleBasics)
|
|
cdc := encCfg.Codec
|
|
|
|
storeKey := sdk.NewKVStoreKey(types.ModuleName)
|
|
tKey := sdk.NewTransientStoreKey("transient_test")
|
|
ctx := testutil.DefaultContext(storeKey, tKey)
|
|
kvStore := ctx.KVStore(storeKey)
|
|
|
|
legacySubspaceEmpty := newMockSubspaceEmpty()
|
|
require.Error(t, v4.MigrateStore(ctx, storeKey, legacySubspaceEmpty, cdc))
|
|
|
|
legacySubspace := newMockSubspace(types.DefaultParams())
|
|
require.NoError(t, v4.MigrateStore(ctx, storeKey, legacySubspace, cdc))
|
|
|
|
paramsBz := kvStore.Get(types.ParamsKey)
|
|
var params types.Params
|
|
cdc.MustUnmarshal(paramsBz, ¶ms)
|
|
|
|
require.Equal(t, params, legacySubspace.ps)
|
|
}
|