Reorganize FROST's handling of curves

This commit is contained in:
Luke Parker
2022-06-24 19:47:19 -04:00
parent 6775fb471e
commit 60254a0171
18 changed files with 165 additions and 154 deletions

View File

@@ -3,9 +3,8 @@ use std::{marker::Send, sync::Arc, collections::HashMap};
use async_trait::async_trait;
use thiserror::Error;
use frost::{Curve, FrostError, MultisigKeys, sign::PreprocessMachine};
use transcript::RecommendedTranscript;
use frost::{curve::Curve, FrostError, MultisigKeys, sign::PreprocessMachine};
mod coins;
mod wallet;