Line | Count | Source |
1 | mod hash; | |
2 | mod merkle_tree; | |
3 | mod primitive; | |
4 | ||
5 | pub(crate) use hash::zero_sum; | |
6 | ||
7 | pub use merkle_tree::{ | |
8 | MerkleTree, | |
9 | MerkleTreeError, | |
10 | MerkleTreeKey, | |
11 | }; | |
12 | pub use primitive::Primitive; | |
13 | pub mod in_memory; | |
14 | pub mod proof; | |
15 | ||
16 | use crate::common::Bytes32; | |
17 | ||
18 | 102 | pub const fn empty_sum() -> &'static Bytes32 { |
19 | 102 | zero_sum() |
20 | 102 | } |