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

Allow chains that can't introspect their own ConsensusState support IBC #2419

Merged
merged 7 commits into from
Dec 27, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
extend 03-connection proto with extra data for state machines that ca…
…n't introspect their own consensus state
  • Loading branch information
seunlanlege committed Sep 28, 2022
commit fe4031f044401c963946285a062bf635a15ead2d
4 changes: 4 additions & 0 deletions proto/ibc/core/connection/v1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ message MsgConnectionOpenTry {
ibc.core.client.v1.Height consensus_height = 11
[(gogoproto.moretags) = "yaml:\"consensus_height\"", (gogoproto.nullable) = false];
string signer = 12;
// extra data for state machaines that can't introspect their own consensus state.
crodriguezvega marked this conversation as resolved.
Show resolved Hide resolved
bytes host_consensus_state_info = 13;
crodriguezvega marked this conversation as resolved.
Show resolved Hide resolved
}

// MsgConnectionOpenTryResponse defines the Msg/ConnectionOpenTry response type.
Expand Down Expand Up @@ -94,6 +96,8 @@ message MsgConnectionOpenAck {
ibc.core.client.v1.Height consensus_height = 9
[(gogoproto.moretags) = "yaml:\"consensus_height\"", (gogoproto.nullable) = false];
string signer = 10;
// extra data for state machaines that can't introspect their own consensus state.
bytes host_consensus_state_info = 11;
crodriguezvega marked this conversation as resolved.
Show resolved Hide resolved
}

// MsgConnectionOpenAckResponse defines the Msg/ConnectionOpenAck response type.
Expand Down