Skip to content

Commit

Permalink
CNS-upgrade-v3.0.1 (#1656)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yaroms authored Aug 27, 2024
1 parent b3d32e1 commit 21fb8a7
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 @@ -201,6 +201,7 @@ var Upgrades = []upgrades.Upgrade{
upgrades.Upgrade_2_4_0,
upgrades.Upgrade_2_5_0,
upgrades.Upgrade_3_0_0,
upgrades.Upgrade_3_0_1,
}

// 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 @@ -288,3 +288,9 @@ var Upgrade_3_0_0 = Upgrade{
CreateUpgradeHandler: defaultUpgradeHandler,
StoreUpgrades: store.StoreUpgrades{},
}

var Upgrade_3_0_1 = Upgrade{
UpgradeName: "v3.0.1",
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 @@ -218,10 +218,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 v20: %w", types.ModuleName, err))
}
if err := cfg.RegisterMigration(types.ModuleName, 20, migrator.MigrateVersion); err != nil {
// panic:ok: at start up, migration cannot proceed anyhow
panic(fmt.Errorf("%s: failed to register migration to v21: %w", types.ModuleName, err))
}
}

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

// 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 = "3.0.0"
MIN_VERSION = "2.2.3"
TARGET_VERSION = "3.0.1"
MIN_VERSION = "2.2.2"
)

var (
Expand Down

0 comments on commit 21fb8a7

Please sign in to comment.