Skip to content

Commit

Permalink
refactor: reformat ErrorCode enum entries
Browse files Browse the repository at this point in the history
Unified the indentation style for all enum entries in ErrorCode. This improves code readability and consistency within the proto file.
  • Loading branch information
tzdybal committed Oct 6, 2024
1 parent 16df3d4 commit 0240d62
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions proto/da/da.proto
Original file line number Diff line number Diff line change
Expand Up @@ -132,15 +132,15 @@ message ValidateResponse {
}

enum ErrorCode {
Unknown = 0;
BlobNotFound = 32001;
BlobSizeOverLimit = 32002;
TxTimedOut = 32003;
TxAlreadyInMempool = 32004;
TxIncorrectAccountSequence = 32005;
TxTooLarge = 32006;
ContextDeadline = 32007;
FutureHeight = 32008;
Unknown = 0;
BlobNotFound = 32001;
BlobSizeOverLimit = 32002;
TxTimedOut = 32003;
TxAlreadyInMempool = 32004;
TxIncorrectAccountSequence = 32005;
TxTooLarge = 32006;
ContextDeadline = 32007;
FutureHeight = 32008;
}

message ErrorDetails {
Expand Down

0 comments on commit 0240d62

Please sign in to comment.