@@ -18,6 +18,7 @@ import (
1818 ibckeeper "github.com/cosmos/ibc-go/v10/modules/core/keeper"
1919 ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint"
2020 ibctesting "github.com/cosmos/ibc-go/v10/testing"
21+
2122 // Removed - types package no longer exists in v10
2223 "github.com/spf13/cast"
2324
@@ -77,6 +78,7 @@ import (
7778 govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper"
7879 govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
7980 govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1"
81+
8082 // IBC v10: Capability module removed
8183 // capabilitykeeper removed
8284 // capabilitytypes removed
@@ -357,7 +359,6 @@ func New(
357359 authtypes .NewModuleAddress (govtypes .ModuleName ).String (),
358360 )
359361
360-
361362 // get skipUpgradeHeights from the app options
362363 skipUpgradeHeights := map [int64 ]bool {}
363364 for _ , h := range cast .ToIntSlice (appOpts .Get (server .FlagUnsafeSkipUpgrades )) {
@@ -452,7 +453,6 @@ func New(
452453
453454 app .EvidenceKeeper = * evidenceKeeper
454455
455-
456456 // NOTE: Any module instantiated in the module manager that is later modified
457457 // must be passed by reference here.
458458 app .MM = module .NewManager (
@@ -553,7 +553,6 @@ func New(
553553 // initialize stores
554554 app .MountKVStores (keys )
555555 app .MountTransientStores (tkeys )
556- app .MountMemoryStores (memKeys )
557556
558557 anteHandler , err := NewAnteHandler (
559558 HandlerOptions {
0 commit comments