From c3e4f944d5d99a924a79b720ad81d1de852ceed7 Mon Sep 17 00:00:00 2001 From: mfahampshire Date: Mon, 2 Feb 2026 09:55:38 +0000 Subject: [PATCH] Fix mut clippy error for gateway probe --- nym-gateway-probe/src/common/probe_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nym-gateway-probe/src/common/probe_tests.rs b/nym-gateway-probe/src/common/probe_tests.rs index b96564c020..3cc7e237a9 100644 --- a/nym-gateway-probe/src/common/probe_tests.rs +++ b/nym-gateway-probe/src/common/probe_tests.rs @@ -532,7 +532,7 @@ pub async fn do_ping_exit( } async fn send_icmp_pings( - mixnet_client: &MixnetClient, + mixnet_client: &mut MixnetClient, our_ips: IpPair, exit_router_address: Recipient, ) -> anyhow::Result<()> {