Skip to content

Commit 1ab8c7e

Browse files
committed
chore: add more tracing logs
1 parent 86a2815 commit 1ab8c7e

File tree

1 file changed

+10
-1
lines changed
  • aggregation-mode/src/backend

1 file changed

+10
-1
lines changed

aggregation-mode/src/backend/mod.rs

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,18 @@ impl ProofAggregator {
128128
}
129129
};
130130

131+
info!("Sending blob transaction...");
131132
let blob_tx_hash = self.send_blob_transaction(leaves).await?;
132-
self.send_proof_to_verify_on_chain(&blob_tx_hash, output.proof)
133+
info!("Blob transaction sen, hash: {:?}", blob_tx_hash);
134+
135+
info!("Sending proof to ProofAggregationService contract...");
136+
let receipt = self
137+
.send_proof_to_verify_on_chain(&blob_tx_hash, output.proof)
133138
.await?;
139+
info!(
140+
"Proof sent anv verified, tx hash {:?}",
141+
receipt.transaction_hash
142+
);
134143

135144
Ok(())
136145
}

0 commit comments

Comments
 (0)