diff --git a/docs/migrations/v2-to-v3.md b/docs/migrations/v2-to-v3.md index 98987e78395..2a7be3dde22 100644 --- a/docs/migrations/v2-to-v3.md +++ b/docs/migrations/v2-to-v3.md @@ -68,7 +68,7 @@ For ICS27 it is also necessary to [manually add store upgrades](https://docs.cos ```go if upgradeInfo.Name == "v3" && !app.UpgradeKeeper.IsSkipHeight(upgradeInfo.Height) { storeUpgrades := store.StoreUpgrades{ - Added: []string{icatypes.ModuleName}, + Added: []string{icacontrollertypes.StoreKey, icahosttypes.StoreKey}, } app.SetStoreLoader(upgradetypes.UpgradeStoreLoader(upgradeInfo.Height, &storeUpgrades))