Implemented P2P network protocol. Refactored project structure.

This commit is contained in:
Revertron
2021-02-05 22:24:28 +01:00
parent 562c004b0d
commit 9e7a1b8834
20 changed files with 524 additions and 101 deletions
+7
View File
@@ -0,0 +1,7 @@
pub mod transaction;
pub mod block;
pub mod blockchain;
pub use transaction::Transaction;
pub use block::Block;
pub use blockchain::Blockchain;