Remove leftover protobuf definitions.

This commit is contained in:
Marc Brinkmann 2018-09-25 10:11:57 +02:00 committed by Andreas Fackler
parent 5033213692
commit f9030c7498
1 changed files with 0 additions and 55 deletions

View File

@ -1,55 +0,0 @@
syntax = "proto3";
message MessageProto {
oneof payload {
BroadcastProto broadcast = 1;
AgreementProto agreement = 2;
}
}
message BroadcastProto {
oneof payload {
ValueProto value = 1;
EchoProto echo = 2;
ReadyProto ready = 3;
}
}
message ValueProto {
ProofProto proof = 1;
}
message EchoProto {
ProofProto proof = 1;
}
message ReadyProto {
bytes root_hash = 1;
}
message ProofProto {
bytes root_hash = 1;
LemmaProto lemma = 2;
bytes value = 3;
}
message LemmaProto {
bytes node_hash = 1;
LemmaProto sub_lemma = 2;
oneof sibling_hash {
bytes left_sibling_hash = 3;
bytes right_sibling_hash = 4;
}
}
message AgreementProto {
uint32 epoch = 1;
oneof payload {
bool bval = 2;
bool aux = 3;
uint32 conf = 4;
bool term = 5;
bytes coin = 6;
}
}