feat: merkle mountain range

This commit is contained in:
Augusto F. Hack
2023-02-18 02:24:49 +01:00
parent ae3f14e0ff
commit 32d37f1591
8 changed files with 883 additions and 6 deletions

View File

@@ -5,6 +5,8 @@ use super::{
};
use core::fmt;
// REEXPORTS
// ================================================================================================
mod index;
pub use index::NodeIndex;
@@ -20,6 +22,9 @@ pub use path_set::MerklePathSet;
mod simple_smt;
pub use simple_smt::SimpleSmt;
mod mmr;
pub use mmr::{Mmr, MmrPeaks};
// ERRORS
// ================================================================================================