Skip to content

Commit

Permalink
update: lib with new versions fucntions
Browse files Browse the repository at this point in the history
  • Loading branch information
olivmath committed Feb 6, 2024
1 parent d8569bd commit 6028966
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
use node::Node;

pub mod merkle_proof;
pub mod merkle_proof_check;
pub mod merkle_root;
pub mod merkletree;
pub mod node;
pub mod tree;
pub mod merkle_proof_mixed;
pub mod utils;


pub type Proof = Vec<Node>;
pub type Hash = [u8; 32];
pub type Leaf = [u8; 32];
Expand Down

0 comments on commit 6028966

Please sign in to comment.