Skip to content

Commit

Permalink
Reduce min proofs to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
MauroToscano authored Nov 30, 2024
1 parent 971320e commit a847c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion batcher/aligned-batcher/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1124,7 +1124,7 @@ impl Batcher {
let current_batch_len = batch_state_lock.batch_queue.len();
let last_uploaded_batch_block_lock = self.last_uploaded_batch_block.lock().await;

if current_batch_len < 2 {
if current_batch_len < 1 {
info!(
"Current batch has {} proofs. Waiting for more proofs...",
current_batch_len
Expand Down

0 comments on commit a847c5f

Please sign in to comment.