Skip to content

Commit

Permalink
style: clearer docstring for blobStatus_DISPERSING in disperser.proto
Browse files Browse the repository at this point in the history
  • Loading branch information
samlaf committed Oct 28, 2024
1 parent 2185cd3 commit 1588266
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions api/grpc/disperser/disperser.pb.go

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

5 changes: 3 additions & 2 deletions api/proto/disperser/disperser.proto
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,9 @@ enum BlobStatus {
// INSUFFICIENT_SIGNATURES means that the confirmation threshold for the blob was not met
// for at least one quorum.
INSUFFICIENT_SIGNATURES = 5;
// DISPERSING means that the blob is currently being dispersed to DA Nodes,
// and the batcher is gathering their signatures.
// The DISPERSING state is comprised of two separate phases:
// - Dispersing to DA nodes and collecting signature
// - Submitting the transaction on chain and waiting for tx receipt
DISPERSING = 6;
}

Expand Down
5 changes: 3 additions & 2 deletions disperser/disperser.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ const (
// INSUFFICIENT_SIGNATURES means that the confirmation threshold for the blob was not met
// for at least one quorum.
InsufficientSignatures
// DISPERSING means that the blob is currently being dispersed to DA Nodes,
// and the batcher is gathering their signatures.
// The DISPERSING state is comprised of two separate phases:
// - Dispersing to DA nodes and collecting signature
// - Submitting the transaction on chain and waiting for tx receipt
Dispersing
)

Expand Down

0 comments on commit 1588266

Please sign in to comment.