From 79915cc346c7d37ba1045327a29b7e6dccbf606a Mon Sep 17 00:00:00 2001 From: frisitano Date: Fri, 14 Apr 2023 13:25:19 +0100 Subject: [PATCH] feat: re-export MmrProof --- src/merkle/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/merkle/mod.rs b/src/merkle/mod.rs index 4d36577..aca3dde 100644 --- a/src/merkle/mod.rs +++ b/src/merkle/mod.rs @@ -27,7 +27,7 @@ mod simple_smt; pub use simple_smt::SimpleSmt; mod mmr; -pub use mmr::{Mmr, MmrPeaks}; +pub use mmr::{Mmr, MmrPeaks, MmrProof}; mod store; pub use store::MerkleStore;