Skip to content

Commit

Permalink
fix: update plan name for pisco
Browse files Browse the repository at this point in the history
  • Loading branch information
javiersuweijie committed Jun 30, 2023
1 parent 1095952 commit ae5e7cd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,7 @@ func (app *TerraApp) RegisterUpgradeHandlers(cfg module.Configurator) {
v2_3_0.CreateUpgradeHandler(app.mm, app.configurator, app.TokenFactoryKeeper),
)
app.UpgradeKeeper.SetUpgradeHandler(
terraappconfig.Upgrade2_4,
terraappconfig.Upgrade2_4_rc4,
v2_4.CreateUpgradeHandler(app.mm, app.configurator),
)
}
Expand Down
7 changes: 4 additions & 3 deletions app/config/const.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ const (
WasmMsgMigrateContract = "/cosmwasm.wasm.v1.MsgMigrateContract"

// UpgradeName gov proposal name
Upgrade2_2_0 = "2.2.0"
Upgrade2_3_0 = "2.3.0"
Upgrade2_4 = "v2.4"
Upgrade2_2_0 = "2.2.0"
Upgrade2_3_0 = "2.3.0"
Upgrade2_4 = "v2.4"
Upgrade2_4_rc4 = "2.4.0-rc4"
)

0 comments on commit ae5e7cd

Please sign in to comment.