Skip to content

Commit

Permalink
Update tree.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
palinko91 authored and olivmath committed Oct 31, 2023
1 parent 9699e91 commit 9636a8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/merkletree/tree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use super::{node::Node, Leaf, Root};
/// # 🌳 Merkle Tree
/// - You can pass raw data
/// - They will hashed by `keccak-256`
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct MerkleTree {
pub leafs: Vec<Leaf>,
pub root: Root,
Expand Down

0 comments on commit 9636a8f

Please sign in to comment.