From fe458acea099a0524f8dd41e87b978bda7112ef4 Mon Sep 17 00:00:00 2001 From: ackintosh Date: Thu, 28 Nov 2024 06:11:14 +0900 Subject: [PATCH] Fix unused variable error --- beacon_node/lighthouse_network/src/rpc/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_node/lighthouse_network/src/rpc/mod.rs b/beacon_node/lighthouse_network/src/rpc/mod.rs index 4b5b6885800..8b585338003 100644 --- a/beacon_node/lighthouse_network/src/rpc/mod.rs +++ b/beacon_node/lighthouse_network/src/rpc/mod.rs @@ -549,7 +549,7 @@ where .response_received(&peer_id, response.protocol()); } } - RPCReceived::EndOfStream(id, response_termination) => { + RPCReceived::EndOfStream(_id, response_termination) => { self.outbound_request_limiter .response_received(&peer_id, response_termination.protocol()); }