Skip to content

Commit

Permalink
BFT-457: Reserve name
Browse files Browse the repository at this point in the history
  • Loading branch information
aakoshh committed Jun 11, 2024
1 parent f3026ef commit dfb35ac
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions node/libs/roles/src/proto/attester.proto
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,14 @@ message Signed {
}

message PublicKey {
reserved 1; // bn254
reserved 1;
reserved "bn254";
optional bytes secp256k1 = 2; // required
}

message Signature {
reserved 1; // bn254
reserved 1;
reserved "bn254";
optional bytes secp256k1 = 2; // required
}

Expand All @@ -43,7 +45,8 @@ message WeightedAttester {
}

message AggregateSignature {
reserved 1; // bn254
reserved 1;
reserved "bn254";
// This is the aggregate signature itself encoded as bytes, which is why it's not `repeated`,
// even though for secp256k1 it's just a list of signatures.
optional bytes secp256k1 = 2; // required
Expand Down

0 comments on commit dfb35ac

Please sign in to comment.