Test the blockchain

This commit is contained in:
Luke Parker
2023-04-12 11:13:48 -04:00
parent ff5c240fcc
commit 7c7f17aac6
8 changed files with 301 additions and 36 deletions

View File

@@ -1,7 +1,10 @@
mod transaction;
pub use transaction::*;
#[cfg(test)]
mod merkle;
#[cfg(test)]
mod block;
#[cfg(test)]
pub use block::*;
mod blockchain;