Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Recursion Circuit: snark-verifier-ce #1401

Draft
wants to merge 7 commits into
base: feat/migrate_compression
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ members = [
"aggregator",
"prover",
"compression",
"recursion",
]
resolver = "2"

Expand Down
3 changes: 0 additions & 3 deletions aggregator/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ mod aggregation;
mod batch;
/// blob struct and constants
mod blob;
/// Config to recursive aggregate multiple aggregations
mod recursion;
// This module implements `Chunk` related data types.
// A chunk is a list of blocks.
mod chunk;
Expand All @@ -31,7 +29,6 @@ pub use chunk::ChunkInfo;
pub use constants::MAX_AGG_SNARKS;
pub(crate) use constants::*;
pub use param::*;
pub use recursion::*;

mod mock_chunk;
pub use mock_chunk::MockChunkCircuit;
Loading
Loading