Skip to content

Commit

Permalink
rollback to protobuf ids on Proof for backwards compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
p4u committed Oct 23, 2023
1 parent a2bf7ad commit cca1b9a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/vochain/vochain.proto
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@ message Census {
message Proof {
oneof payload {
// Proof used on EVM census based processes
ProofEthereumStorage ethereumStorage = 2;
ProofEthereumStorage ethereumStorage = 3;
// Proof used by oracles to update the census of EVM processes
ProofEthereumAccount ethereumAccount = 3;
ProofEthereumAccount ethereumAccount = 4;
// Proof Certification Authority
ProofCA ca = 4;
ProofCA ca = 5;
// Proof used for census using arbo
ProofArbo arbo = 5;
ProofArbo arbo = 6;
// zkSnark proof
ProofZkSNARK zkSnark = 6;
ProofZkSNARK zkSnark = 7;
// Proof used in Minime token based census
ProofMinime minimeStorage = 7;
ProofMinime minimeStorage = 8;
}
}

Expand Down

0 comments on commit cca1b9a

Please sign in to comment.