From f3e8ca852e9003a6b9aaadb8c81c7021e996dced Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Wed, 14 Dec 2022 14:04:13 +1100 Subject: [PATCH] Fix Clippy --- beacon_node/http_api/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_node/http_api/src/lib.rs b/beacon_node/http_api/src/lib.rs index e573e6a5d..783b8b68f 100644 --- a/beacon_node/http_api/src/lib.rs +++ b/beacon_node/http_api/src/lib.rs @@ -1677,7 +1677,7 @@ pub fn serve( .and_then( |chain: Arc>, address_changes: Vec, - network_tx: UnboundedSender>, + #[allow(unused)] network_tx: UnboundedSender>, log: Logger| { blocking_json_task(move || { let mut failures = vec![];