Skip to content

Commit f23246f

Browse files
committed
chore: include total proofs to aggregate in agg-mode
1 parent 5607821 commit f23246f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • aggregation_mode/src/backend

aggregation_mode/src/backend/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,9 @@ impl ProofAggregator {
103103
warn!("No proofs collected, skipping aggregation...");
104104
return Ok(());
105105
}
106+
info!("Total proofs to aggregate {}", proofs.len());
106107

107-
info!("Proofs fetched, constructing merkle root...");
108+
info!("Constructing merkle root...");
108109
let (merkle_tree, leaves) = compute_proofs_merkle_root(&proofs)
109110
.ok_or(AggregatedProofSubmissionError::BuildingMerkleRoot)?;
110111
let merkle_root = merkle_tree.root;

0 commit comments

Comments
 (0)