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

@@ -12,6 +12,9 @@ pub use provided::*;
mod block;
pub use block::*;
mod blockchain;
pub use blockchain::*;
#[cfg(any(test, feature = "tests"))]
pub mod tests;