Made a full refactoring of synchronization primitives between settings, keystore, blockchain and miner.

This commit is contained in:
Revertron
2020-04-18 21:31:40 +02:00
parent 3eaf63ba79
commit 01f37cc238
13 changed files with 775 additions and 211 deletions
+6 -2
View File
@@ -8,5 +8,9 @@ pub use crate::transaction::Transaction;
pub mod utils;
pub use crate::utils::*;
pub mod keys;
pub use crate::keys::Signature;
pub use crate::keys::Key;
pub use crate::keys::Keystore;
pub use crate::keys::Key;
pub mod miner;
pub mod context;
pub use crate::context::Context;
pub use crate::context::Settings;