Skip to content

Commit

Permalink
fix chainID typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Max committed Feb 27, 2024
1 parent 827dd52 commit daa7b2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/upgrades/v11.7.0/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func CreateUpgradeHandler(args upgrades.UpgradeHandlerArgs) upgradetypes.Upgrade
ctx.Logger().Info("running upgrade handler")

// make sure this region runs only during CI and testnet v11.7.0 upgrade
if chainID := ctx.ChainID(); chainID == "test-core-1" || chainID == "ictest-core-1" {
if chainID := ctx.ChainID(); chainID == "test-core-2" || chainID == "ictest-core-1" {
if err := runLiquidstakeUpgradeMigration(ctx, args.Keepers); err != nil {
panic(err)
}
Expand Down

0 comments on commit daa7b2e

Please sign in to comment.