Skip to content

Commit

Permalink
#[derive(Debug, Copy, Clone, PartialEq, Eq)] to MerkleTree
Browse files Browse the repository at this point in the history
  • Loading branch information
palinko91 authored and olivmath committed Oct 31, 2023
1 parent ce78bc7 commit 9699e91
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)]
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub struct MerkleTree {
pub leafs: Vec<Leaf>,
pub root: Root,
Expand Down

0 comments on commit 9699e91

Please sign in to comment.