@@ -447,7 +447,7 @@ func NewWasmApp(
447447 authtypes .NewModuleAddress (govtypes .ModuleName ).String (),
448448 app .AccountKeeper .AddressCodec (),
449449 )
450- app .BaseApp . SetCircuitBreaker (& app .CircuitKeeper )
450+ app .SetCircuitBreaker (& app .CircuitKeeper )
451451
452452 app .AuthzKeeper = authzkeeper .NewKeeper (
453453 runtime .NewKVStoreService (keys [authzkeeper .StoreKey ]),
@@ -904,7 +904,7 @@ func NewWasmApp(
904904 if err := app .LoadLatestVersion (); err != nil {
905905 panic (fmt .Errorf ("error loading last version: %w" , err ))
906906 }
907- ctx := app .BaseApp . NewUncachedContext (true , tmproto.Header {})
907+ ctx := app .NewUncachedContext (true , tmproto.Header {})
908908
909909 // Initialize pinned codes in wasmvm as they are not persisted there
910910 if err := app .WasmKeeper .InitializePinnedCodes (ctx ); err != nil {
@@ -1099,15 +1099,15 @@ func (app *WasmApp) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APICo
10991099
11001100// RegisterTxService implements the Application.RegisterTxService method.
11011101func (app * WasmApp ) RegisterTxService (clientCtx client.Context ) {
1102- authtx .RegisterTxService (app .BaseApp . GRPCQueryRouter (), clientCtx , app . BaseApp .Simulate , app .interfaceRegistry )
1102+ authtx .RegisterTxService (app .GRPCQueryRouter (), clientCtx , app .Simulate , app .interfaceRegistry )
11031103}
11041104
11051105// RegisterTendermintService implements the Application.RegisterTendermintService method.
11061106func (app * WasmApp ) RegisterTendermintService (clientCtx client.Context ) {
11071107 cmtApp := server .NewCometABCIWrapper (app )
11081108 cmtservice .RegisterTendermintService (
11091109 clientCtx ,
1110- app .BaseApp . GRPCQueryRouter (),
1110+ app .GRPCQueryRouter (),
11111111 app .interfaceRegistry ,
11121112 cmtApp .Query ,
11131113 )
0 commit comments