Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Connor O'Hara authored and Connor O'Hara committed Feb 20, 2024
1 parent 305c568 commit 6457898
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions plonky2x/core/src/frontend/recursion/plonky2_proof.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ use crate::frontend::recursion::fri::proof::FriProofVariable;
use crate::frontend::recursion::hash::MerkleCapVariable;
use crate::prelude::Variable;
pub struct ProofWithPublicInputsVariable<const D: usize> {
proof: ProofVariable<D>,
public_inputs: Vec<Variable>,
pub proof: ProofVariable<D>,
pub public_inputs: Vec<Variable>,
}

pub struct ProofVariable<const D: usize> {
wires_cap: MerkleCapVariable,
plonk_zs_partial_products_cap: MerkleCapVariable,
quotient_polys_cap: MerkleCapVariable,
openings: OpeningSetVariable<D>,
opening_proof: FriProofVariable<D>,
pub wires_cap: MerkleCapVariable,
pub plonk_zs_partial_products_cap: MerkleCapVariable,
pub quotient_polys_cap: MerkleCapVariable,
pub openings: OpeningSetVariable<D>,
pub opening_proof: FriProofVariable<D>,
}

pub struct OpeningSetVariable<const D: usize> {
Expand Down

0 comments on commit 6457898

Please sign in to comment.