1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00

fix typo, fix integration tests

This commit is contained in:
schaeff 2020-12-01 10:24:13 +00:00
parent 45ff5741d5
commit d51de0e941
2 changed files with 3 additions and 2 deletions

View file

@ -214,7 +214,8 @@ mod integration {
#[cfg(feature = "libsnark")]
let backends = map! {
"bellman" => ["g16"],
"libsnark" => ["gm17", "pghr13"]
"libsnark" => ["pghr13"],
"ark" => ["gm17"]
};
#[cfg(not(feature = "libsnark"))]

View file

@ -5,5 +5,5 @@ prime_field!(
#[cfg(feature = "bellman")]
use bellman_ce::pairing::bls12_381::{Bls12, Fq2};
#[cfg(feature = "ark")]
#[cfg(feature = "bellman")]
bellman_extensions!(Bls12, Fq2);