diff --git a/hashes/src/sha256t.rs b/hashes/src/sha256t.rs index cb3f4aaaa..6c62846c8 100644 --- a/hashes/src/sha256t.rs +++ b/hashes/src/sha256t.rs @@ -119,9 +119,6 @@ impl PartialEq for Hash { fn eq(&self, other: &Hash) -> bool { self.0 == other.0 } } impl Eq for Hash {} -impl Default for Hash { - fn default() -> Self { Hash([0; 32], PhantomData) } -} impl PartialOrd for Hash { fn partial_cmp(&self, other: &Hash) -> Option { Some(cmp::Ord::cmp(self, other))