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 b137020 commit d0a4be6Copy full SHA for d0a4be6
aggregation_mode/src/aggregators/risc0_aggregator.rs
@@ -79,6 +79,10 @@ pub(crate) fn aggregate_proofs(
79
.map_err(|e| ProofAggregationError::Risc0Proving(e.to_string()))?
80
.receipt;
81
82
+ receipt
83
+ .verify(RISC0_AGGREGATOR_PROGRAM_ID)
84
+ .map_err(|e| ProofAggregationError::Risc0Proving(e.to_string()))?;
85
+
86
let output = Risc0ProofReceiptAndImageId {
87
image_id: RISC0_AGGREGATOR_PROGRAM_ID_BYTES,
88
receipt,
0 commit comments