diff --git a/src/plonk/proof.rs b/src/plonk/proof.rs index 5a0abfd7..29cac3cc 100644 --- a/src/plonk/proof.rs +++ b/src/plonk/proof.rs @@ -221,8 +221,11 @@ pub(crate) struct ProofChallenges, const D: usize> pub fri_pow_response: F, + // Indices at which the oracle is queried in FRI. pub fri_query_indices: Vec, + // Coset element that can be inferred in the FRI reduction step. + // Is typically set to None iff the challenges are computed from a non-compressed proof. pub fri_query_inferred_elements: Option>, }