-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
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
ibc: protobuf v1 #7432
ibc: protobuf v1 #7432
Conversation
Codecov Report
@@ Coverage Diff @@
## master #7432 +/- ##
==========================================
- Coverage 55.17% 55.07% -0.11%
==========================================
Files 435 588 +153
Lines 28783 36760 +7977
==========================================
+ Hits 15881 20245 +4364
- Misses 11302 14417 +3115
- Partials 1600 2098 +498 |
we need to update these too right? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm for now, yeah would be good to update the interfaces too to cosmos.*
@colin-axner @amaurymartiny updated the codec too 👍 |
@@ -11,11 +11,11 @@ import ( | |||
// Any. | |||
func RegisterInterfaces(registry codectypes.InterfaceRegistry) { | |||
registry.RegisterInterface( | |||
"cosmos_sdk.ibc.v1.connection.ConnectionI", | |||
"ibc.core.connection.v1.ConnectionI", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure if we should rename this to just Connection
instead of ConnectionI
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd be fine renaming. exported.Connection
should imply it is an interface
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
though ideally we would do this with all interfaces since it seems the channel has the same format
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice!
could we wait to merge 🙏 I don't want conflicts stacking up on my handshake pr. The connection handshake changes should be r4r |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK
@@ -9,19 +9,19 @@ import ( | |||
// RegisterInterfaces registers the commitment interfaces to protobuf Any. | |||
func RegisterInterfaces(registry codectypes.InterfaceRegistry) { | |||
registry.RegisterInterface( | |||
"cosmos.ibc.commitment.Root", | |||
"ibc.core.commitment.v1.Root", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😨
Ah sorry, I didn't check the automerge label. Should we revert this? @fedekunze |
closes #7338