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-06-19 09:43:41 +00:00
|
|
|
v010 "github.com/evmos/ethermint/x/feemarket/migrations/v010"
|
|
|
|
v011 "github.com/evmos/ethermint/x/feemarket/migrations/v011"
|
2022-03-30 17:10:54 +00:00
|
|
|
)
|
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
|
|
|
}
|
2022-05-31 16:28:46 +00:00
|
|
|
|
|
|
|
// Migrate2to3 migrates the store from consensus version v2 to v3
|
|
|
|
func (m Migrator) Migrate2to3(ctx sdk.Context) error {
|
|
|
|
return v011.MigrateStore(ctx, &m.keeper.paramSpace)
|
|
|
|
}
|