We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We support the GRPC query handler but there is also a message handler implementation in other modules like:
// RegisterServices registers module services. func (am AppModule) RegisterServices(cfg module.Configurator) { types.RegisterMsgServer(cfg.MsgServer(), keeper.NewMsgServerImpl(am.keeper)) querier := keeper.Querier{Keeper: am.keeper} types.RegisterQueryServer(cfg.QueryServer(), querier) }
The text was updated successfully, but these errors were encountered:
Yeah, that was a new technique that started with rc2 or so.. I think this was defined in ADR 31 or 29?
Sorry, something went wrong.
alpe
Successfully merging a pull request may close this issue.
We support the GRPC query handler but there is also a message handler implementation in other modules like:
The text was updated successfully, but these errors were encountered: