Skip to content
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

Ensure IBC Proto Registration #7210

Merged
merged 14 commits into from
Sep 1, 2020
Prev Previous commit
Next Next commit
Merge branch 'master' into jack/ibc-proto
  • Loading branch information
jackzampolin authored Sep 1, 2020
commit 1c4f3317a55f6bd19f5f9b3a15f2b06272369cf2
10 changes: 10 additions & 0 deletions x/ibc/02-client/types/codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@ func RegisterInterfaces(registry codectypes.InterfaceRegistry) {
registry.RegisterImplementations(
(*exported.Height)(nil),
&Height{},
)
registry.RegisterInterface(
"cosmos_sdk.ibc.v1.client.Misbehaviour",
(*exported.Misbehaviour)(nil),
)
registry.RegisterImplementations(
(*sdk.Msg)(nil),
&MsgCreateClient{},
&MsgUpdateClient{},
&MsgSubmitMisbehaviour{},
)
}

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.