@@ -28,7 +28,6 @@ import (
2828 "github.com/cosmos/cosmos-sdk/x/group"
2929 groupmodule "github.com/cosmos/cosmos-sdk/x/group/module"
3030 "github.com/cosmos/cosmos-sdk/x/protocolpool"
31- "github.com/cosmos/gaia/v25/x/liquid"
3231 "github.com/cosmos/gogoproto/proto"
3332 icacontroller "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller"
3433 ibccallbacks "github.com/cosmos/ibc-go/v10/modules/apps/callbacks"
@@ -122,8 +121,6 @@ import (
122121 "github.com/cosmos/cosmos-sdk/x/staking"
123122 stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper"
124123 stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
125- liquidkeeper "github.com/cosmos/gaia/v25/x/liquid/keeper"
126- liquidtypes "github.com/cosmos/gaia/v25/x/liquid/types"
127124 ica "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts"
128125 icacontrollerkeeper "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/keeper"
129126 icacontrollertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types"
@@ -257,7 +254,6 @@ type App struct {
257254 SlashingKeeper slashingkeeper.Keeper
258255 MintKeeper mintkeeper.Keeper
259256 DistrKeeper distrkeeper.Keeper
260- LiquidKeeper * liquidkeeper.Keeper
261257 GovKeeper govkeeper.Keeper
262258 UpgradeKeeper * upgradekeeper.Keeper
263259 EvidenceKeeper evidencekeeper.Keeper
@@ -287,7 +283,7 @@ type App struct {
287283 sm * module.SimulationManager
288284}
289285
290- // New returns a reference to an initialized Gaia .
286+ // New returns a reference to an initialized App .
291287// NewSimApp returns a reference to an initialized SimApp.
292288func New (
293289 logger log.Logger , db dbm.DB , traceStore io.Writer , loadLatest bool ,
@@ -349,7 +345,6 @@ func New(
349345 icacontrollertypes .StoreKey ,
350346 paramstypes .StoreKey ,
351347 CapabilityStoreKey ,
352- liquidtypes .StoreKey ,
353348 )
354349 tkeys := storetypes .NewTransientStoreKeys (paramstypes .TStoreKey )
355350 memkeys := storetypes .NewMemoryStoreKeys (CapabilityMemStoreKey )
@@ -481,16 +476,6 @@ func New(
481476 authtypes .NewModuleAddress (govtypes .ModuleName ).String (),
482477 )
483478
484- app .LiquidKeeper = liquidkeeper .NewKeeper (
485- appCodec ,
486- runtime .NewKVStoreService (keys [liquidtypes .StoreKey ]),
487- app .AccountKeeper ,
488- app .BankKeeper ,
489- app .StakingKeeper ,
490- app .DistrKeeper ,
491- authtypes .NewModuleAddress (govtypes .ModuleName ).String (),
492- )
493-
494479 app .FeeGrantKeeper = feegrantkeeper .NewKeeper (
495480 appCodec ,
496481 runtime .NewKVStoreService (keys [feegrant .StoreKey ]),
@@ -503,7 +488,6 @@ func New(
503488 stakingtypes .NewMultiStakingHooks (
504489 app .DistrKeeper .Hooks (),
505490 app .SlashingKeeper .Hooks (),
506- app .LiquidKeeper .Hooks (),
507491 ),
508492 )
509493
@@ -583,7 +567,7 @@ func New(
583567
584568 app .GovKeeper = * govKeeper .SetHooks (
585569 govtypes .NewMultiGovHooks (
586- // register the governance hooks
570+ // register the governance hooks
587571 ),
588572 )
589573
@@ -613,7 +597,7 @@ func New(
613597
614598 app .EpochsKeeper .SetHooks (
615599 epochstypes .NewMultiEpochHooks (
616- // insert epoch hooks receivers here
600+ // insert epoch hooks receivers here
617601 ),
618602 )
619603
@@ -763,7 +747,6 @@ func New(
763747 transfer .NewAppModule (app .TransferKeeper ),
764748 ica .NewAppModule (& app .ICAControllerKeeper , & app .ICAHostKeeper ),
765749 ibctm .NewAppModule (tmLightClientModule ),
766- liquid .NewAppModule (appCodec , app .LiquidKeeper , app .AccountKeeper , app .BankKeeper , app .StakingKeeper ),
767750 )
768751
769752 // BasicModuleManager defines the module BasicManager is in charge of setting up basic,
@@ -804,7 +787,6 @@ func New(
804787 ibctransfertypes .ModuleName ,
805788 ibcexported .ModuleName ,
806789 icatypes .ModuleName ,
807- liquidtypes .ModuleName ,
808790 wasmtypes .ModuleName ,
809791 )
810792
@@ -857,7 +839,6 @@ func New(
857839 icatypes .ModuleName ,
858840 // wasm after ibc transfer
859841 wasmtypes .ModuleName ,
860- liquidtypes .ModuleName ,
861842 }
862843
863844 exportModuleOrder := []string {
@@ -886,7 +867,6 @@ func New(
886867 icatypes .ModuleName ,
887868 // wasm after ibc transfer
888869 wasmtypes .ModuleName ,
889- liquidtypes .ModuleName ,
890870 }
891871
892872 app .mm .SetOrderInitGenesis (genesisModuleOrder ... )
@@ -1066,15 +1046,15 @@ func (app *App) LegacyAmino() *codec.LegacyAmino {
10661046 return app .legacyAmino
10671047}
10681048
1069- // AppCodec returns Gaia's app codec.
1049+ // AppCodec returns app codec.
10701050//
10711051// NOTE: This is solely to be used for testing purposes as it may be desirable
10721052// for modules to register their own custom testing types.
10731053func (app * App ) AppCodec () codec.Codec {
10741054 return app .appCodec
10751055}
10761056
1077- // InterfaceRegistry returns Gaia's InterfaceRegistry
1057+ // InterfaceRegistry returns InterfaceRegistry
10781058func (app * App ) InterfaceRegistry () types.InterfaceRegistry {
10791059 return app .interfaceRegistry
10801060}
0 commit comments