From 6426e59c63074fa48a6508ef6687199b46143d44 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 20 Feb 2025 13:47:51 +1100 Subject: [PATCH] Remove unused trait import This import is not needed. Interesting that the linter does not catch it. --- hashes/src/hash160/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hashes/src/hash160/mod.rs b/hashes/src/hash160/mod.rs index bf03d1d1f..3c457c1aa 100644 --- a/hashes/src/hash160/mod.rs +++ b/hashes/src/hash160/mod.rs @@ -132,7 +132,7 @@ mod tests { mod benches { use test::Bencher; - use crate::{hash160, GeneralHash as _, Hash as _, HashEngine}; + use crate::{hash160, Hash as _, HashEngine}; #[bench] pub fn hash160_10(bh: &mut Bencher) {