4a6f4fd6e0
* upgrade geth and fix build * add support for * update EIPs * fix keeper tests * update traceTx function with latest geth changes * remove unnecessary comments * fix tests * update proto * add migrations * update module version * fix grpc test * fix lint * fix lint * update changelog * fix typo * remove unnecessary format logs * Update proto/ethermint/evm/v1/evm.proto Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com> * remove debug true on default * update comments * fixing ante tests * fixed cycle imports on migrate_test * fix wrong naming * update comment Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
30 lines
754 B
Go
30 lines
754 B
Go
package keeper
|
|
|
|
import (
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
v2 "github.com/evmos/ethermint/x/evm/migrations/v2"
|
|
v3 "github.com/evmos/ethermint/x/evm/migrations/v3"
|
|
)
|
|
|
|
// 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,
|
|
}
|
|
}
|
|
|
|
// Migrate1to2 migrates the store from consensus version v1 to v2
|
|
func (m Migrator) Migrate1to2(ctx sdk.Context) error {
|
|
return v2.MigrateStore(ctx, &m.keeper.paramSpace)
|
|
}
|
|
|
|
// Migrate2to3 migrates the store from consensus version v2 to v3
|
|
func (m Migrator) Migrate2to3(ctx sdk.Context) error {
|
|
return v3.MigrateStore(ctx, &m.keeper.paramSpace)
|
|
}
|