Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dconnolly committed Feb 22, 2021
1 parent 6e63eb1 commit a2315fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zebra-consensus/src/primitives/groth16.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ pub static JOINSPLIT_VERIFIER: Lazy<
> = Lazy::new(|| {
Fallback::new(
Batch::new(
Verifier::new(PARAMS.sprout.verifiying_key),
Verifier::new(PARAMS.sprout.verifying_key),
super::MAX_BATCH_SIZE,
super::MAX_BATCH_LATENCY,
),
Expand All @@ -119,7 +119,7 @@ pub static JOINSPLIT_VERIFIER: Lazy<
// function (which is possible because it doesn't capture any state).
tower::service_fn(
(|item: Item| {
ready(item.verify_single(prepare_verifying_key(PARAMS.sprout.verifiying_key)))
ready(item.verify_single(prepare_verifying_key(PARAMS.sprout.verifying_key)))
}) as fn(_) -> _,
),
)
Expand Down

0 comments on commit a2315fb

Please sign in to comment.