From 43eb708135c9c708eb0cf8c6cca62ce6b62ed819 Mon Sep 17 00:00:00 2001 From: Joey Yandle Date: Tue, 14 Nov 2023 15:46:23 -0500 Subject: [PATCH] turn off clippy too-many-args check --- src/state_machine/coordinator/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/state_machine/coordinator/mod.rs b/src/state_machine/coordinator/mod.rs index 327b0fd1..e8e8c504 100644 --- a/src/state_machine/coordinator/mod.rs +++ b/src/state_machine/coordinator/mod.rs @@ -113,6 +113,7 @@ impl Config { } } + #[allow(clippy::too_many_arguments)] /// Create a new config object with the passed timeouts pub fn with_timeouts( num_signers: u32,