Skip to content

Commit

Permalink
BlobHeader order (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
csdtowards authored Oct 8, 2024
1 parent f8db250 commit b3b4a03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/proto/disperser/disperser.proto
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ message BlobInfo {

message BlobHeader {
// The data merkle root
bytes storage_root = 4;
bytes storage_root = 1;
// Signers epoch
uint64 epoch = 5;
uint64 epoch = 2;
// Signers quorum id
uint64 quorum_id = 6;
uint64 quorum_id = 3;
}

0 comments on commit b3b4a03

Please sign in to comment.