Skip to content

Commit

Permalink
remove unused argument
Browse files Browse the repository at this point in the history
  • Loading branch information
z2trillion committed Oct 10, 2024
1 parent f0b714e commit 3a12953
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion aggregator/src/aggregation/barycentric.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ impl BarycentricEvaluationConfig {
ctx: &mut Context<Fr>,
blob: &[U256; BLOB_WIDTH],
challenge_digest: U256,
_: U256,
) -> AssignedBarycentricEvaluationConfig {
// some constants for later use.
let one = self.scalar.load_constant(ctx, fe_to_biguint(&Fr::one()));
Expand Down
1 change: 0 additions & 1 deletion aggregator/src/aggregation/circuit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,6 @@ impl<const N_SNARKS: usize> Circuit<Fr> for BatchCircuit<N_SNARKS> {
self.batch_hash
.point_evaluation_assignments
.challenge_digest,
self.batch_hash.point_evaluation_assignments.evaluation,
);

ctx.print_stats(&["barycentric"]);
Expand Down
1 change: 0 additions & 1 deletion aggregator/src/tests/blob.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ impl Circuit<Fr> for BlobCircuit {
&mut ctx,
&point_eval.coefficients,
point_eval.challenge_digest,
point_eval.evaluation,
))
},
)?;
Expand Down

0 comments on commit 3a12953

Please sign in to comment.