Skip to content

Commit

Permalink
fix: setup handler version (#468)
Browse files Browse the repository at this point in the history
* fix: setup handler version

* ci: update setup upgrade version
  • Loading branch information
cosmic-vagabond authored Apr 26, 2024
1 parent a4aecf0 commit cc23b05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/setup_handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func setUpgradeHandler(app *ElysApp) {
func(ctx sdk.Context, plan upgradetypes.Plan, vm m.VersionMap) (m.VersionMap, error) {
app.Logger().Info("Running upgrade handler for " + version.Version)

if version.Version == "v0.29.32" {
if version.Version == "v0.31.0" {
app.Logger().Info("Deleting proposals with ID <= 185")
store := ctx.KVStore(app.keys[govtypes.StoreKey])
for i := uint64(1); i <= 185; i++ {
Expand Down

0 comments on commit cc23b05

Please sign in to comment.