Skip to content

Commit

Permalink
Merge pull request #132 from Victor118/main
Browse files Browse the repository at this point in the history
v9.0.0
  • Loading branch information
woof-chihuahua authored Jan 8, 2025
2 parents 9fced9f + f8382e8 commit 17c7358
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ import (
const (
Bech32Prefix = "chihuahua"
Name = "chihuahua"
UpgradeName = "v8.0.1"
UpgradeName = "v9.0.0"
NodeDir = ".chihuahuad"
)

Expand Down Expand Up @@ -1392,6 +1392,11 @@ func (app *App) RegisterUpgradeHandlers(cfg module.Configurator) {
return app.mm.RunMigrations(c, cfg, vm)
})

app.UpgradeKeeper.SetUpgradeHandler("v9.0.0", func(ctx context.Context, plan upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) {
return app.mm.RunMigrations(ctx, cfg, vm)

})

}

// SimulationManager implements the SimulationApp interface
Expand Down

0 comments on commit 17c7358

Please sign in to comment.