Skip to content

Commit

Permalink
inner_product_proof: make InnerProductProof fields public
Browse files Browse the repository at this point in the history
  • Loading branch information
akirillo committed Aug 4, 2023
1 parent 36dffcc commit a349c7e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/inner_product_proof.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ use crate::transcript::TranscriptProtocol;

#[derive(Clone, Debug, PartialEq, Eq)]
pub struct InnerProductProof {
pub(crate) L_vec: Vec<StarkPoint>,
pub(crate) R_vec: Vec<StarkPoint>,
pub(crate) a: Scalar,
pub(crate) b: Scalar,
pub L_vec: Vec<StarkPoint>,
pub R_vec: Vec<StarkPoint>,
pub a: Scalar,
pub b: Scalar,
}

#[allow(clippy::too_many_arguments)]
Expand Down

0 comments on commit a349c7e

Please sign in to comment.