We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8724a08 commit f7ef881Copy full SHA for f7ef881
1 file changed
crates/l2/sequencer/l1_proof_verifier.rs
@@ -178,14 +178,15 @@ impl L1ProofVerifier {
178
}
179
180
let verification_data = self.verification_data(prover_type, public_inputs)?;
181
-
+ let commitment = H256(verification_data.commitment());
182
if let Some((merkle_root, merkle_path)) =
183
self.check_proof_aggregation(verification_data).await?
184
{
185
info!(
186
?batch_number,
187
?prover_type,
188
merkle_root = %format_args!("{merkle_root:#x}"),
189
+ commitment = %format_args!("{commitment:#x}"),
190
"Proof aggregated by Aligned"
191
);
192
aggregated_proofs_for_batch.insert(prover_type, merkle_path);
0 commit comments