diff --git a/plonky2x/core/src/frontend/recursion/plonky2_proof.rs b/plonky2x/core/src/frontend/recursion/plonky2_proof.rs index bc0eced0..4229aa41 100644 --- a/plonky2x/core/src/frontend/recursion/plonky2_proof.rs +++ b/plonky2x/core/src/frontend/recursion/plonky2_proof.rs @@ -3,7 +3,7 @@ use crate::frontend::recursion::fri::proof::FriProofVariable; use crate::frontend::recursion::hash::MerkleCapVariable; use crate::prelude::Variable; pub struct ProofWithPublicInputsVariable { - proof: ProofVariable, // Add missing generic argument + proof: ProofVariable, public_inputs: Vec, }