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
Prev Previous commit
Next Next commit
update field name
  • Loading branch information
crodriguezvega authored Dec 21, 2022
commit 5eb10f03c883a1241b6c886dacced5a51b6fe547
8 changes: 4 additions & 4 deletions proto/ibc/core/connection/v1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +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.
bytes host_consensus_state_info = 13;
// optional proof data for host state machines that are unable to introspect their own consensus state
bytes host_consensus_state_proof = 13;
}

// MsgConnectionOpenTryResponse defines the Msg/ConnectionOpenTry response type.
Expand Down Expand Up @@ -96,8 +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;
// optional proof data for host state machines that are unable to introspect their own consensus state
bytes host_consensus_state_proof = 11;
}

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