Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
corverroos committed Feb 28, 2023
1 parent 4b8044e commit b71b193
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions core/corepb/v1/consensus.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions core/corepb/v1/consensus.proto
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ message QBFTMsg {
int64 prepared_round = 6;
reserved 7 ;
bytes signature = 8;
google.protobuf.Any value = 9 [deprecated = true]; // Prefer value_hash and ConsensusMsg.values.
google.protobuf.Any prepared_value = 10 [deprecated = true]; // Prefer prepared_value_hash and ConsensusMsg.values.
google.protobuf.Any value = 9 [deprecated = true]; // Prefer value_hash and ConsensusMsg.values. Remove in v0.15.
google.protobuf.Any prepared_value = 10 [deprecated = true]; // Prefer prepared_value_hash and ConsensusMsg.values. Remove in v0.15.
bytes value_hash = 11;
bytes prepared_value_hash = 12;
}

message ConsensusMsg {
QBFTMsg msg = 1;
repeated QBFTMsg justification = 2;
repeated google.protobuf.Any values = 3;
QBFTMsg msg = 1; // msg is the message that we send
repeated QBFTMsg justification = 2; // justification is the justifications from others for the message
repeated google.protobuf.Any values = 3; // values of the hashes in the messages
}

message SniffedConsensusMsg {
Expand Down

0 comments on commit b71b193

Please sign in to comment.