Skip to content

Commit a07fd08

Browse files
committed
fix: remove set_aggregated_proof_as_missed
chore: update abi.json
1 parent 6c163cf commit a07fd08

File tree

2 files changed

+1
-21
lines changed

2 files changed

+1
-21
lines changed

aggregation_mode/abi/AlignedProofAggregationService.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

aggregation_mode/src/backend/mod.rs

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)