Skip to content

Commit a847c5f

Browse files
authored
Reduce min proofs to 1
1 parent 971320e commit a847c5f

File tree

1 file changed

+1
-1
lines changed
  • batcher/aligned-batcher/src

1 file changed

+1
-1
lines changed

batcher/aligned-batcher/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1124,7 +1124,7 @@ impl Batcher {
11241124
let current_batch_len = batch_state_lock.batch_queue.len();
11251125
let last_uploaded_batch_block_lock = self.last_uploaded_batch_block.lock().await;
11261126

1127-
if current_batch_len < 2 {
1127+
if current_batch_len < 1 {
11281128
info!(
11291129
"Current batch has {} proofs. Waiting for more proofs...",
11301130
current_batch_len

0 commit comments

Comments
 (0)