From f5d32c30cff28b072edc96a0c5008a4ba277d199 Mon Sep 17 00:00:00 2001 From: Noisy <125606576+donatik27@users.noreply.github.com> Date: Fri, 29 Nov 2024 19:41:51 +0100 Subject: [PATCH 1/2] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5be45039..cbda4b9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,7 +44,7 @@ and this project adheres to Rust's notion of ## [0.11.2] - 2022-05-04 ### Fixed -- Groth16 prover now correctly computes query densitites with respect to linear +- Groth16 prover now correctly computes query densities with respect to linear combinations that contain coefficients of zero. - Fixed an infinite recursion bug in the `Display` implementation for `SynthesisError`. From 1f292e598371d5c73cdb8e3dd3d4668c619f2f45 Mon Sep 17 00:00:00 2001 From: Noisy <125606576+donatik27@users.noreply.github.com> Date: Fri, 29 Nov 2024 19:46:17 +0100 Subject: [PATCH 2/2] Update lib.rs --- groth16/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/groth16/src/lib.rs b/groth16/src/lib.rs index 5114bf22..42e99d50 100644 --- a/groth16/src/lib.rs +++ b/groth16/src/lib.rs @@ -404,7 +404,7 @@ pub struct PreparedVerifyingKey { neg_gamma_g2: E::G2Prepared, /// -delta in G2 neg_delta_g2: E::G2Prepared, - /// Copy of IC from `VerifiyingKey`. + /// Copy of IC from `VerifyingKey`. ic: Vec, }