Skip to content

Commit f1ceccb

Browse files
comments added back
1 parent 33eaf73 commit f1ceccb

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

fri/src/proof.rs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ where
4040
{
4141
}
4242

43+
/// For each commit phase commitment, this contains openings of a commit phase codeword at the
44+
/// queried location, along with an opening proof.
4345
#[derive(Serialize, Deserialize, Clone)]
4446
#[serde(bound = "")]
4547
pub struct QueryProof<F: Field, M: Mmcs<F>>
@@ -56,13 +58,13 @@ unsafe impl<F: Field + Send + Sync, M: Mmcs<F>> Send for QueryProof<F, M> where
5658
unsafe impl<F: Field + Send + Sync, M: Mmcs<F>> Sync for QueryProof<F, M> where M::Proof: Send + Sync
5759
{}
5860

61+
// The opening of the commit phase codeword at the sibling location.
62+
// This may change to Vec<FC::Challenge> if the library is generalized to support other FRI
63+
// folding arities besides 2, meaning that there can be multiple siblings.
5964
#[derive(Serialize, Deserialize, Clone)]
6065
// #[serde(bound(serialize = "F: Serialize"))]
6166
#[serde(bound = "")]
6267
pub struct CommitPhaseProofStep<F: Field, M: Mmcs<F>>
63-
// The opening of the commit phase codeword at the sibling location.
64-
// This may change to Vec<FC::Challenge> if the library is generalized to support other FRI
65-
// folding arities besides 2, meaning that there can be multiple siblings.
6668
where
6769
F: Send + Sync,
6870
M::Proof: Send + Sync,

0 commit comments

Comments
 (0)