Skip to content

Commit 98fd060

Browse files
committed
Build fix
1 parent 8257bec commit 98fd060

File tree

4 files changed

+106
-102
lines changed

4 files changed

+106
-102
lines changed

spartan_parallel/src/dense_mlpoly.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ use core::ops::Index;
99
use rayon::{iter::ParallelIterator, slice::ParallelSliceMut};
1010
use serde::{Deserialize, Serialize};
1111
use std::cmp::min;
12-
use rayon::prelude::*;
1312

1413
#[derive(Debug, Clone)]
1514
pub struct DensePolynomial<E: ExtensionField> {
@@ -383,8 +382,8 @@ impl<E: ExtensionField> PolyEvalProof<E> {
383382

384383
pub fn verify(
385384
&self,
386-
transcript: &mut Transcript<E>,
387-
r: &[E], // point at which the polynomial is evaluated
385+
_transcript: &mut Transcript<E>,
386+
_r: &[E], // point at which the polynomial is evaluated
388387
) -> Result<(), ProofVerifyError> {
389388
// TODO: Alternative evaluation proof scheme
390389
Ok(())

0 commit comments

Comments
 (0)