Skip to content

Commit

Permalink
chore: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanpwang committed Aug 14, 2024
1 parent 0376493 commit 4a3c508
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion snark-verifier-sdk/src/halo2/aggregation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ impl VerifierUniversality {

#[allow(clippy::type_complexity)]
/// Core function used in `synthesize` to aggregate multiple `snarks`.
///
///
/// Returns the assigned instances of previous snarks and the new final pair that needs to be verified in a pairing check.
/// For each previous snark, we concatenate all instances into a single vector. We return a vector of vectors,
/// one vector per snark, for convenience.
Expand Down Expand Up @@ -361,6 +361,7 @@ pub enum AssignedTranscriptObject {
/// ## Notes
/// - This function does _not_ expose any public instances.
/// - `svk` is the generator of the KZG trusted setup, usually gotten via `params.get_g()[0]`
///
/// (avoids having to pass `params` into function just to get generator)
///
/// ## Universality
Expand Down
1 change: 1 addition & 0 deletions snark-verifier/examples/evm-verifier-with-accumulator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@ mod aggregation {
pub lookup_bits: usize,
}

#[allow(dead_code)]
#[derive(Clone, Debug)]
pub struct AggregationCircuit {
pub inner: BaseCircuitBuilder<Fr>,
Expand Down

0 comments on commit 4a3c508

Please sign in to comment.