diff --git a/plonky2x/core/src/frontend/recursion/plonky2_proof.rs b/plonky2x/core/src/frontend/recursion/plonky2_proof.rs index 4229aa41..86d721a5 100644 --- a/plonky2x/core/src/frontend/recursion/plonky2_proof.rs +++ b/plonky2x/core/src/frontend/recursion/plonky2_proof.rs @@ -3,16 +3,16 @@ use crate::frontend::recursion::fri::proof::FriProofVariable; use crate::frontend::recursion::hash::MerkleCapVariable; use crate::prelude::Variable; pub struct ProofWithPublicInputsVariable { - proof: ProofVariable, - public_inputs: Vec, + pub proof: ProofVariable, + pub public_inputs: Vec, } pub struct ProofVariable { - wires_cap: MerkleCapVariable, - plonk_zs_partial_products_cap: MerkleCapVariable, - quotient_polys_cap: MerkleCapVariable, - openings: OpeningSetVariable, - opening_proof: FriProofVariable, + pub wires_cap: MerkleCapVariable, + pub plonk_zs_partial_products_cap: MerkleCapVariable, + pub quotient_polys_cap: MerkleCapVariable, + pub openings: OpeningSetVariable, + pub opening_proof: FriProofVariable, } pub struct OpeningSetVariable {