We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86a2815 commit 1ab8c7eCopy full SHA for 1ab8c7e
aggregation-mode/src/backend/mod.rs
@@ -128,9 +128,18 @@ impl ProofAggregator {
128
}
129
};
130
131
+ info!("Sending blob transaction...");
132
let blob_tx_hash = self.send_blob_transaction(leaves).await?;
- 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)
138
.await?;
139
+ info!(
140
+ "Proof sent anv verified, tx hash {:?}",
141
+ receipt.transaction_hash
142
+ );
143
144
Ok(())
145
0 commit comments