We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51596f8 commit a9ca644Copy full SHA for a9ca644
CHANGELOG.md
@@ -13,6 +13,8 @@
13
14
### Improvements
15
16
+- [\#98](https://github.com/arkworks-rs/poly-commit/pull/98) Improve KZG10 verification speed.
17
+
18
### Bug fixes
19
20
## v0.3.0
src/kzg10/mod.rs
@@ -293,7 +293,7 @@ where
293
}
294
let inner2 = vk.beta_h.into_projective() - &vk.h.mul(point);
295
296
- let pairing_prod_inputs:Vec<(E::G1Prepared, E::G2Prepared)> = vec![
+ let pairing_prod_inputs: Vec<(E::G1Prepared, E::G2Prepared)> = vec![
297
((-inner).into_affine().into(), vk.h.into()),
298
(proof.w.into(), inner2.into_affine().into()),
299
];
0 commit comments