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 c02e861 commit d4b0c86Copy full SHA for d4b0c86
batcher/aligned-batcher/src/lib.rs
@@ -1052,8 +1052,7 @@ impl Batcher {
1052
1053
info!("ME llega max_fee {}", max_fee);
1054
1055
- let batch_queue_len = batch_state_lock.batch_queue.len();
1056
-
+
1057
let new_entry = BatchQueueEntry::new(
1058
verification_data,
1059
verification_data_comm,
@@ -1067,6 +1066,10 @@ impl Batcher {
1067
1066
.batch_queue
1068
.push(new_entry, new_entry_priority);
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