Add Merkle Tree implementation (#4749)

automerge
This commit is contained in:
Trent Nelson
2019-06-21 11:22:21 -06:00
committed by Grimes
parent a40c5cf185
commit 06c547094a
6 changed files with 277 additions and 0 deletions

2
merkle-tree/src/lib.rs Normal file
View File

@@ -0,0 +1,2 @@
pub mod merkle_tree;
pub use merkle_tree::MerkleTree;