Skip to content

Commit

Permalink
add upgrade handler (#1654)
Browse files Browse the repository at this point in the history
Co-authored-by: Yaroms <[email protected]>
  • Loading branch information
Yaroms and Yaroms authored Aug 27, 2024
1 parent 0d1806d commit b3d32e1
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
1 change: 1 addition & 0 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ var Upgrades = []upgrades.Upgrade{
upgrades.Upgrade_2_2_0,
upgrades.Upgrade_2_4_0,
upgrades.Upgrade_2_5_0,
upgrades.Upgrade_3_0_0,
}

// this line is used by starport scaffolding # stargate/wasm/app/enabledProposals
Expand Down
6 changes: 6 additions & 0 deletions app/upgrades/empty_upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -282,3 +282,9 @@ var Upgrade_2_5_0 = Upgrade{
CreateUpgradeHandler: defaultUpgradeHandler,
StoreUpgrades: store.StoreUpgrades{},
}

var Upgrade_3_0_0 = Upgrade{
UpgradeName: "v3.0.0",
CreateUpgradeHandler: defaultUpgradeHandler,
StoreUpgrades: store.StoreUpgrades{},
}
6 changes: 5 additions & 1 deletion x/protocol/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -214,10 +214,14 @@ func (am AppModule) RegisterServices(cfg module.Configurator) {
// panic:ok: at start up, migration cannot proceed anyhow
panic(fmt.Errorf("%s: failed to register migration to v19: %w", types.ModuleName, err))
}
if err := cfg.RegisterMigration(types.ModuleName, 19, migrator.MigrateVersion); err != nil {
// panic:ok: at start up, migration cannot proceed anyhow
panic(fmt.Errorf("%s: failed to register migration to v20: %w", types.ModuleName, err))
}
}

// ConsensusVersion implements ConsensusVersion.
func (AppModule) ConsensusVersion() uint64 { return 19 }
func (AppModule) ConsensusVersion() uint64 { return 20 }

// RegisterInvariants registers the capability module's invariants.
func (am AppModule) RegisterInvariants(_ sdk.InvariantRegistry) {}
Expand Down
4 changes: 2 additions & 2 deletions x/protocol/types/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
var _ paramtypes.ParamSet = (*Params)(nil)

const (
TARGET_VERSION = "2.4.0"
MIN_VERSION = "2.2.2"
TARGET_VERSION = "3.0.0"
MIN_VERSION = "2.2.3"
)

var (
Expand Down

0 comments on commit b3d32e1

Please sign in to comment.