Changed and refactored block and transaction structures. Moved signature from transaction scope to block.

This commit is contained in:
Revertron
2021-03-02 18:11:17 +01:00
parent d5a19c92c3
commit 92ebefce91
11 changed files with 206 additions and 215 deletions
+3 -1
View File
@@ -2,7 +2,9 @@ pub mod transaction;
pub mod block;
pub mod blockchain;
pub mod filter;
pub mod constants;
pub use transaction::Transaction;
pub use block::Block;
pub use blockchain::Blockchain;
pub use blockchain::Blockchain;
pub use constants::*;