2021-11-29 15:46:20 +00:00
|
|
|
package keeper
|
|
|
|
|
2022-03-21 07:27:22 +00:00
|
|
|
import (
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
|
2022-03-30 17:10:54 +00:00
|
|
|
v010 "github.com/tharsis/ethermint/x/feemarket/migrations/v010"
|
|
|
|
)
|
2022-03-21 07:27:22 +00:00
|
|
|
|
2021-11-29 15:46:20 +00:00
|
|
|
// Migrator is a struct for handling in-place store migrations.
|
|
|
|
type Migrator struct {
|
|
|
|
keeper Keeper
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewMigrator returns a new Migrator.
|
|
|
|
func NewMigrator(keeper Keeper) Migrator {
|
|
|
|
return Migrator{
|
|
|
|
keeper: keeper,
|
|
|
|
}
|
|
|
|
}
|
2022-03-21 07:27:22 +00:00
|
|
|
|
2022-03-30 17:10:54 +00:00
|
|
|
// Migrate1to2 migrates the store from consensus version v1 to v2
|
2022-03-21 07:27:22 +00:00
|
|
|
func (m Migrator) Migrate1to2(ctx sdk.Context) error {
|
2022-03-30 17:10:54 +00:00
|
|
|
return v010.MigrateStore(ctx, &m.keeper.paramSpace, m.keeper.storeKey)
|
2022-03-21 07:27:22 +00:00
|
|
|
}
|