remove no longer required #[allow(clippy::mutable_key_type)] (#6210)

* remove no longer required clippy::mutable_key_type lint
This commit is contained in:
João Oliveira
2024-08-01 01:26:26 +01:00
committed by GitHub
parent c7ded10870
commit d9f8b13e36
3 changed files with 0 additions and 6 deletions

View File

@@ -1,9 +1,7 @@
/// This crate provides the network server for Lighthouse.
pub mod error;
#[allow(clippy::mutable_key_type)] // PeerId in hashmaps are no longer permitted by clippy
pub mod service;
#[allow(clippy::mutable_key_type)] // PeerId in hashmaps are no longer permitted by clippy
mod metrics;
mod nat;
mod network_beacon_processor;
@@ -11,7 +9,6 @@ mod persisted_dht;
mod router;
mod status;
mod subnet_service;
#[allow(clippy::mutable_key_type)] // PeerId in hashmaps are no longer permitted by clippy
mod sync;
pub use lighthouse_network::NetworkConfig;