[Bug] [Documentation]: I'm adding a KYC feature into auth module #17429
Replies: 2 comments 4 replies
-
I am also encountering the same issue while attempting to add new functionality to the bank module panic: type_url /cosmos.bank.v1beta1.HelloRequest has not been registered yet. Before calling RegisterService, you must register all interfaces by calling the RegisterInterfacesmethod on module.BasicManager. Each module should callmsgservice.RegisterMsgServiceDescinside itsRegisterInterfacesmethod with the_Msg_serviceDesc generated by proto-gen |
Beta Was this translation helpful? Give feedback.
0 replies
-
Shouldn't this be an issue? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What happened?
I was adding a functionality in Auth module for KYC but was getting the error to register(as below) the interfaces in the new version of Cosmos
0.47
, but it is working fine in older vesion0.46
panic: type_url /cosmos.auth.v1beta1.KycRequest has not been registered yet. Before calling RegisterService, you must register all interfaces by calling the
RegisterInterfacesmethod on module.BasicManager. Each module should call
msgservice.RegisterMsgServiceDescinside its
RegisterInterfacesmethod with the
_Msg_serviceDescgenerated by proto-gen
Cosmos SDK Version
0.47 (main branch)
How to reproduce?
proto
file of authtx.proto
../simd
command to run blockchain it will give the above error.Beta Was this translation helpful? Give feedback.
All reactions