mmr: publicly export MmrDelta

This commit is contained in:
Augusto F. Hack 2023-10-27 20:29:08 +02:00 committed by Bobbin Threadbare
parent 9d52958f64
commit 5f2d170435

View file

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