Skip to content

Commit

Permalink
more cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
z-tech committed Jul 18, 2024
1 parent da4fdcb commit 6caa96e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
pub mod crypto;
pub mod direct;
pub mod domain;
pub mod fri;
pub mod ldt;
pub mod poly_utils;
pub mod statement;
Expand Down
5 changes: 2 additions & 3 deletions src/statement/mod.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
use ark_crypto_primitives::{merkle_tree::Config as MerkleConfig, sponge::CryptographicSponge};
use ark_ff::FftField;
use ark_crypto_primitives::merkle_tree::Config as MerkleConfig;

pub mod single;

pub trait Statement<F: FftField, M: MerkleConfig, S: CryptographicSponge> {
pub trait Statement<M: MerkleConfig> {
type Argument;
fn new(argument: Self::Argument) -> Self;
fn commitment_digest(&self) -> M::InnerDigest;
Expand Down

0 comments on commit 6caa96e

Please sign in to comment.