Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: v11 upgrade mainnet. #308

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion app/upgrades/v11.8.0/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ func CreateUpgradeHandler(args upgrades.UpgradeHandlerArgs) upgradetypes.Upgrade
return func(ctx sdk.Context, plan upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) {
ctx.Logger().Info("running upgrade handler")

newVM, err := args.ModuleManager.RunMigrations(ctx, args.Configurator, vm)
if err != nil {
panic(err)
}
// make sure this region runs only during CI and mainnet v11 upgrade
if chainID := ctx.ChainID(); chainID == "core-1" || chainID == "ictest-core-1" {
if err := runLiquidstakeUpgradeMigration(ctx, args.Keepers); err != nil {
Expand All @@ -30,7 +34,7 @@ func CreateUpgradeHandler(args upgrades.UpgradeHandlerArgs) upgradetypes.Upgrade
// TODO: more migrations
}

return args.ModuleManager.RunMigrations(ctx, args.Configurator, vm)
return newVM, nil
}
}

Expand Down
Loading