diff --git a/fastcrypto-vdf/benches/vdf.rs b/fastcrypto-vdf/benches/vdf.rs index 46b0c9ecd6..03ac99ba20 100644 --- a/fastcrypto-vdf/benches/vdf.rs +++ b/fastcrypto-vdf/benches/vdf.rs @@ -9,6 +9,7 @@ use criterion::{BenchmarkGroup, BenchmarkId, Criterion}; use fastcrypto::groups::multiplier::windowed::WindowedScalarMultiplier; use fastcrypto_vdf::class_group::{Discriminant, QuadraticForm}; use fastcrypto_vdf::hash_prime::DefaultPrimalityCheck; +use fastcrypto_vdf::vdf::wesolowski::CHALLENGE_SIZE; use fastcrypto_vdf::vdf::wesolowski::{FastVerifier, StrongFiatShamir, StrongVDF}; use fastcrypto_vdf::vdf::VDF; use fastcrypto_vdf::Parameter; @@ -48,8 +49,8 @@ fn verify_single(parameters: VerificationInputs, c: &mut Benchma let vdf = StrongVDF::new(discriminant.clone(), parameters.iterations); let fast_verify: FastVerifier< QuadraticForm, - StrongFiatShamir, - WindowedScalarMultiplier, + StrongFiatShamir, + WindowedScalarMultiplier, > = FastVerifier::new(vdf, input_copy); c.bench_function(format!("{} fast", discriminant_size), move |b| { b.iter(|| fast_verify.verify(&result_copy, &proof_copy))