@@ -493,7 +493,7 @@ func NewSimApp(
493493 // must be passed by reference here.
494494 app .mm = module .NewManager (
495495 genutil .NewAppModule (
496- app .AccountKeeper , app .StakingKeeper , app .BaseApp . DeliverTx ,
496+ app .AccountKeeper , app .StakingKeeper , app .DeliverTx ,
497497 txConfig ,
498498 ),
499499 auth .NewAppModule (appCodec , app .AccountKeeper , authsims .RandomGenesisAccounts , app .GetSubspace (authtypes .ModuleName )),
@@ -740,12 +740,12 @@ func (app *SimApp) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APICon
740740
741741// RegisterTxService implements the Application.RegisterTxService method.
742742func (app * SimApp ) RegisterTxService (clientCtx client.Context ) {
743- authtx .RegisterTxService (app .BaseApp . GRPCQueryRouter (), clientCtx , app . BaseApp .Simulate , app .interfaceRegistry )
743+ authtx .RegisterTxService (app .GRPCQueryRouter (), clientCtx , app .Simulate , app .interfaceRegistry )
744744}
745745
746746// RegisterTendermintService implements the Application.RegisterTendermintService method.
747747func (app * SimApp ) RegisterTendermintService (clientCtx client.Context ) {
748- tmservice .RegisterTendermintService (clientCtx , app .BaseApp . GRPCQueryRouter (), app .interfaceRegistry , app .Query )
748+ tmservice .RegisterTendermintService (clientCtx , app .GRPCQueryRouter (), app .interfaceRegistry , app .Query )
749749}
750750
751751func (app * SimApp ) RegisterNodeService (clientCtx client.Context ) {
0 commit comments