Skip to content

Commit

Permalink
extend 03-connection proto with extra data for state machines that ca…
Browse files Browse the repository at this point in the history
…n't introspect their own consensus state
  • Loading branch information
seunlanlege committed Sep 28, 2022
1 parent 06e91f4 commit fe4031f
Showing 1 changed file with 4 additions and 0 deletions.
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.
bytes host_consensus_state_info = 13;
}

// 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;
}

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

0 comments on commit fe4031f

Please sign in to comment.