update snarkos master

This commit is contained in:
collin 2020-06-15 19:32:37 -07:00
parent 17e241ae41
commit 0168902a7d
3 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ use leo_types::InputValue;
use snarkos_curves::edwards_bls12::Fq;
use snarkos_gadgets::curves::edwards_bls12::FqGadget;
use snarkos_models::{
curves::{Field, PrimeField},
curves::{One, PrimeField, Zero},
gadgets::{
curves::field::FieldGadget,
r1cs::{ConstraintSystem, TestConstraintSystem},

View File

@ -12,7 +12,7 @@ use leo_types::InputValue;
use snarkos_curves::edwards_bls12::{EdwardsAffine, Fq};
use snarkos_gadgets::curves::edwards_bls12::EdwardsBlsGadget;
use snarkos_models::{
curves::Group,
curves::Zero,
gadgets::{r1cs::TestConstraintSystem, utilities::alloc::AllocGadget},
};
use std::str::FromStr;

View File

@ -1,7 +1,7 @@
use crate::InputValue;
use leo_inputs::{types::IntegerType, InputParserError};
use snarkos_models::curves::{Field, PairingEngine};
use snarkos_models::curves::{One, PairingEngine, Zero};
use std::str::FromStr;
pub struct InputFields<E: PairingEngine>(pub Vec<E::Fr>);