Skip to content

Commit

Permalink
fix(simapp): use correct store keys for upgrade (cosmos#19987)
Browse files Browse the repository at this point in the history
  • Loading branch information
alpe committed Apr 9, 2024
1 parent 9e9cc52 commit a5d4c40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions simapp/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ func (app SimApp) RegisterUpgradeHandlers() {
if upgradeInfo.Name == UpgradeName && !app.UpgradeKeeper.IsSkipHeight(upgradeInfo.Height) {
storeUpgrades := storetypes.StoreUpgrades{
Added: []string{
accounts.ModuleName,
protocolpooltypes.ModuleName,
accounts.StoreKey,
protocolpooltypes.StoreKey,
},
Deleted: []string{
crisistypes.ModuleName, // The SDK discontinued the crisis module in v0.51.0
crisistypes.StoreKey, // The SDK discontinued the crisis module in v0.51.0
},
}

Expand Down

0 comments on commit a5d4c40

Please sign in to comment.