From 305c568b5023521c7599dd651b8c4590a4d62bc4 Mon Sep 17 00:00:00 2001 From: Connor O'Hara Date: Tue, 20 Feb 2024 15:36:31 +0100 Subject: [PATCH] comment --- plonky2x/core/src/frontend/recursion/plonky2_proof.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, }