Smash key-gen out of processor

Resolves some bad assumptions made regarding keys being unique or not.
This commit is contained in:
Luke Parker
2024-08-16 17:01:45 -04:00
parent f3b91bd44f
commit 2f29c91d30
9 changed files with 335 additions and 312 deletions

View File

@@ -6,7 +6,7 @@ pub use plan::*;
mod db;
pub(crate) use db::*;
mod key_gen;
use serai_processor_key_gen as key_gen;
pub mod networks;
pub(crate) mod multisigs;

View File

@@ -48,7 +48,7 @@ pub use db::*;
mod coordinator;
pub use coordinator::*;
mod key_gen;
use serai_processor_key_gen as key_gen;
use key_gen::{SessionDb, KeyConfirmed, KeyGen};
mod signer;