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 d4b0c86 commit 2d5ab6aCopy full SHA for 2d5ab6a
batcher/aligned-batcher/src/lib.rs
@@ -1052,7 +1052,6 @@ impl Batcher {
1052
1053
info!("ME llega max_fee {}", max_fee);
1054
1055
-
1056
let new_entry = BatchQueueEntry::new(
1057
verification_data,
1058
verification_data_comm,
@@ -1066,10 +1065,8 @@ impl Batcher {
1066
1065
.batch_queue
1067
.push(new_entry, new_entry_priority);
1068
1069
1070
let batch_queue_len = batch_state_lock.batch_queue.len();
1071
1072
1073
// if max batch qty exceded, remove least priority proof
1074
if batch_queue_len > self.max_batch_proof_qty {
1075
if let Some(lowest_priority_entry) = batch_state_lock.batch_queue.pop_min() {
0 commit comments