We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8654bd commit d500e2cCopy full SHA for d500e2c
batcher/aligned-batcher/src/types/errors.rs
@@ -58,7 +58,6 @@ pub enum BatcherError {
58
WsSinkEmpty,
59
AddressNotFoundInUserStates(Address),
60
QueueRemoveError(String),
61
- BatchQueueIsFull,
62
}
63
64
impl From<tungstenite::Error> for BatcherError {
@@ -140,9 +139,6 @@ impl fmt::Debug for BatcherError {
140
139
BatcherError::QueueRemoveError(e) => {
141
write!(f, "Error while removing entry from queue: {}", e)
142
143
- BatcherError::BatchQueueIsFull => {
144
- write!(f, "Error adding proof, queue is full")
145
- }
146
147
148
0 commit comments