diff --git a/app/app.go b/app/app.go index c53225e..fb26037 100644 --- a/app/app.go +++ b/app/app.go @@ -173,7 +173,7 @@ import ( const ( Bech32Prefix = "chihuahua" Name = "chihuahua" - UpgradeName = "v8.0.1" + UpgradeName = "v9.0.0" NodeDir = ".chihuahuad" ) @@ -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