File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -81,11 +81,6 @@ impl ProofAggregator {
8181 }
8282 Err ( err) => {
8383 error ! ( "Error while aggregating and submitting proofs: {:?}" , err) ;
84- info ! ( "About to set aggregated proof as missed" ) ;
85- if let Err ( err) = self . set_aggregated_proof_as_missed ( ) . await {
86- error ! ( "Error while marking proof as failed: {:?}" , err) ;
87- } ;
88- info ! ( "Proofs set as missed" ) ;
8984 }
9085 }
9186 }
@@ -219,19 +214,4 @@ impl ProofAggregator {
219214
220215 Ok ( ( blob, blob_versioned_hash) )
221216 }
222-
223- async fn set_aggregated_proof_as_missed (
224- & self ,
225- ) -> Result < TransactionReceipt , AggregatedProofSubmissionError > {
226- let res = self
227- . proof_aggregation_service
228- . markCurrentAggregatedProofAsMissed ( )
229- . send ( )
230- . await
231- . map_err ( AggregatedProofSubmissionError :: SendVerifyAggregatedProofTransaction ) ?;
232-
233- res. get_receipt ( )
234- . await
235- . map_err ( AggregatedProofSubmissionError :: ReceiptError )
236- }
237217}
You can’t perform that action at this time.
0 commit comments