57ed355c98
* (refactor): Added new MsgUpdateParams tx and generated new proto files * (refactor): Refactor for migration of x/params * (fix): Refactor to use single Params store key for easier more readable code * (fix): removed unused * (fix): add validation * (fix): fix linter * remove line * Added changes from code review * Apply changes from code review * (fix): Made ParamKey back to a string * Added CHANGELOG entry * Apply suggestions from code review Co-authored-by: Tomas Guerra <54514587+GAtom22@users.noreply.github.com> * (fix): remove HTTP endpoint exposure * Apply suggestions from code review Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com> * fix: Apply changes from code review and run linter * Update x/feemarket/keeper/params.go Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com> * Update x/feemarket/types/msg.go Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com> * tests: added tests for msg_server and msg * tests: add failing test for migration * Update x/feemarket/keeper/params.go Co-authored-by: Tomas Guerra <54514587+GAtom22@users.noreply.github.com> Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com> Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
43 lines
997 B
Go
43 lines
997 B
Go
package keeper_test
|
|
|
|
import (
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
feemarketkeeper "github.com/evmos/ethermint/x/feemarket/keeper"
|
|
v4types "github.com/evmos/ethermint/x/feemarket/migrations/v4/types"
|
|
"github.com/evmos/ethermint/x/feemarket/types"
|
|
)
|
|
|
|
type mockSubspace struct {
|
|
ps v4types.Params
|
|
}
|
|
|
|
func newMockSubspace(ps v4types.Params) mockSubspace {
|
|
return mockSubspace{ps: ps}
|
|
}
|
|
|
|
func (ms mockSubspace) GetParamSetIfExists(_ sdk.Context, ps types.LegacyParams) {
|
|
*ps.(*v4types.Params) = ms.ps
|
|
}
|
|
|
|
func (suite *KeeperTestSuite) TestMigrations() {
|
|
legacySubspace := newMockSubspace(v4types.DefaultParams())
|
|
migrator := feemarketkeeper.NewMigrator(suite.app.FeeMarketKeeper, legacySubspace)
|
|
|
|
testCases := []struct {
|
|
name string
|
|
migrateFunc func(ctx sdk.Context) error
|
|
}{
|
|
{
|
|
"Run Migrate3to4",
|
|
migrator.Migrate3to4,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
suite.Run(tc.name, func() {
|
|
err := tc.migrateFunc(suite.ctx)
|
|
suite.Require().NoError(err)
|
|
})
|
|
}
|
|
}
|