Merge pull request #195 from 0xPolygonMiden/hacka-partial-mmr2

mmr: added partial mmr
This commit is contained in:
Augusto Hack
2023-10-19 20:30:24 +02:00
committed by GitHub
13 changed files with 1130 additions and 136 deletions

View File

@@ -31,7 +31,7 @@ mod tiered_smt;
pub use tiered_smt::{TieredSmt, TieredSmtProof, TieredSmtProofError};
mod mmr;
pub use mmr::{Mmr, MmrPeaks, MmrProof};
pub use mmr::{InOrderIndex, Mmr, MmrError, MmrPeaks, MmrProof, PartialMmr};
mod store;
pub use store::{DefaultMerkleStore, MerkleStore, RecordingMerkleStore, StoreNode};