Replace FROST's ff/group usage with just group

This commit is contained in:
Luke Parker
2022-06-19 06:36:47 -04:00
parent 5da1b4fcf8
commit 382ff75455
10 changed files with 10 additions and 15 deletions

View File

@@ -1,7 +1,6 @@
use rand_core::{RngCore, CryptoRng};
use ff::Field;
use group::Group;
use group::{ff::Field, Group};
use crate::{Curve, MultisigKeys, tests::key_gen};

View File

@@ -2,7 +2,7 @@ use std::{sync::Arc, collections::HashMap};
use rand_core::{RngCore, CryptoRng};
use ff::Field;
use group::ff::Field;
use crate::{
Curve,

View File

@@ -2,7 +2,7 @@ use std::{marker::PhantomData, sync::Arc, collections::HashMap};
use rand_core::{RngCore, CryptoRng};
use ff::Field;
use group::ff::Field;
use crate::{
Curve, MultisigKeys, schnorr::{self, SchnorrSignature}, algorithm::{Hram, Schnorr},