From 2e78d617520271ea845c589e9d2cb167fcd547d5 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Tue, 7 Mar 2023 04:39:15 -0500 Subject: [PATCH] Fix last commit --- crypto/dalek-ff-group/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crypto/dalek-ff-group/src/lib.rs b/crypto/dalek-ff-group/src/lib.rs index 22492e79..ebc4824b 100644 --- a/crypto/dalek-ff-group/src/lib.rs +++ b/crypto/dalek-ff-group/src/lib.rs @@ -426,8 +426,7 @@ macro_rules! dalek_group { // While it is expensive as a key, due to the field operations required, there's frequently // use cases for public key -> value lookups #[allow(unknown_lints)] - #[allow(clippy::derived_hash_with_manual_eq)] - #[allow(clippy::derived_hash_xor_eq)] + #[allow(clippy::derived_hash_with_manual_eq, clippy::derived_hash_xor_eq)] impl Hash for $Point { fn hash(&self, state: &mut H) { self.to_bytes().hash(state);