Skip to content

Commit

Permalink
reexport (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
plafer authored and bobbinth committed Feb 14, 2024
1 parent e55b3ed commit a9475b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/merkle/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ mod path;
pub use path::{MerklePath, RootPath, ValuePath};

mod smt;
pub use smt::{LeafIndex, SimpleSmt, Smt, SmtLeaf, SMT_DEPTH, SMT_MAX_DEPTH, SMT_MIN_DEPTH};
pub use smt::{
LeafIndex, SimpleSmt, Smt, SmtLeaf, SmtLeafError, SmtProof, SmtProofError, SMT_DEPTH,
SMT_MAX_DEPTH, SMT_MIN_DEPTH,
};

mod tiered_smt;
pub use tiered_smt::{TieredSmt, TieredSmtProof, TieredSmtProofError};
Expand Down
2 changes: 1 addition & 1 deletion src/merkle/smt/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use crate::{
use super::{EmptySubtreeRoots, MerkleError, MerklePath, NodeIndex, Vec};

mod full;
pub use full::{Smt, SmtLeaf, SmtLeafError, SMT_DEPTH};
pub use full::{Smt, SmtLeaf, SmtLeafError, SmtProof, SmtProofError, SMT_DEPTH};

mod simple;
pub use simple::SimpleSmt;
Expand Down

0 comments on commit a9475b2

Please sign in to comment.