Skip to content

Commit

Permalink
Fix re-exports
Browse files Browse the repository at this point in the history
  • Loading branch information
davxy committed Jul 23, 2024
1 parent 41562a0 commit 613e153
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ring/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ pub mod ring_verifier;

pub type RingProof<F, CS> = Proof<F, CS, RingCommitments<F, <CS as PCS<F>>::C>, RingEvaluations<F>>;

// Crates that are required by the downstream dependencies.
pub mod prelude {
pub use fflonk;
pub use merlin;
}
/// Polynomial Commitment Schemes.
pub use fflonk::pcs;

/// Transcript for `RingProver` and `RingVerifier` construction.
pub use merlin::Transcript;

// Calling the method for a prime-order curve results in an infinite loop.
pub fn find_complement_point<Curve: SWCurveConfig>() -> Affine<Curve> {
Expand Down

0 comments on commit 613e153

Please sign in to comment.