We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a336ca commit 5f8f2cfCopy full SHA for 5f8f2cf
crates/crypto/src/merkle_tree/traits.rs
@@ -5,7 +5,7 @@ use rayon::prelude::{IntoParallelRefIterator, ParallelIterator};
5
/// A backend for Merkle trees. This defines raw `Data` from which the Merkle
6
/// tree is built from. It also defines the `Node` type and the hash function
7
/// used to build parent nodes from children nodes.
8
-pub trait IsMerkleTreeBackend: Default {
+pub trait IsMerkleTreeBackend {
9
type Node: PartialEq + Eq + Clone + Sync + Send;
10
type Data: Sync + Send;
11
0 commit comments