Skip to content

Commit

Permalink
skip-store-upgrades flag
Browse files Browse the repository at this point in the history
  • Loading branch information
codehans committed Apr 11, 2024
1 parent f767125 commit 21462c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func (app App) RegisterUpgradeHandlers() {
panic(err)
}

if upgradeInfo.Name == UpgradeName && !app.UpgradeKeeper.IsSkipHeight(upgradeInfo.Height) {
if upgradeInfo.Name == UpgradeName && !app.UpgradeKeeper.IsSkipHeight(upgradeInfo.Height) && upgradeInfo.Info != "skip-store-upgrades" {
storeUpgrades := storetypes.StoreUpgrades{
Added: []string{
ibcwasmtypes.ModuleName,
Expand Down

0 comments on commit 21462c1

Please sign in to comment.