Let ark-curve-constraint-tests work with latest arkworks-rs algebra (#112)

This commit is contained in:
Weikeng Chen
2022-08-21 19:58:41 -07:00
committed by GitHub
parent 435de9fc36
commit 6d94362894

View File

@@ -340,7 +340,7 @@ pub mod curves {
// Check scalar mul with edge cases
for scalar in scalars.iter() {
let native_result = a_native.mul(scalar);
let native_result = a_native.mul_bigint(scalar);
let native_result = native_result.into_affine();
let scalar_bits: Vec<bool> = BitIteratorLE::new(&scalar).collect();