Skip to content

Commit

Permalink
Fix upgrade name for token factory (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipsu522 committed Aug 17, 2022
1 parent 5dd3cbe commit 9764e4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ func (app *App) SetStoreUpgradeHandlers() {
app.SetStoreLoader(upgradetypes.UpgradeStoreLoader(upgradeInfo.Height, &storeUpgrades))
}

if upgradeInfo.Name == "1.2.0beta" && !app.UpgradeKeeper.IsSkipHeight(upgradeInfo.Height) {
if upgradeInfo.Name == "1.1.1beta" && !app.UpgradeKeeper.IsSkipHeight(upgradeInfo.Height) {
storeUpgrades := storetypes.StoreUpgrades{
Added: []string{tokenfactorytypes.StoreKey},
}
Expand Down

0 comments on commit 9764e4d

Please sign in to comment.