Major refactoring. Changed mining algorithm to Blakeout. Changed keypair mining algorithm.

This commit is contained in:
Revertron
2021-03-10 22:21:50 +01:00
parent 5c2373b40d
commit 5d57473122
23 changed files with 824 additions and 713 deletions
+4 -2
View File
@@ -1,10 +1,12 @@
pub mod transaction;
pub mod block;
pub mod blockchain;
pub mod chain;
pub mod filter;
pub mod constants;
pub mod hash_utils;
pub mod enums;
pub use transaction::Transaction;
pub use block::Block;
pub use blockchain::Blockchain;
pub use chain::Chain;
pub use constants::*;