From 1b8c51eb9ef514220abbccd817a24afa7ae1a890 Mon Sep 17 00:00:00 2001 From: taturosati Date: Wed, 4 Sep 2024 12:31:23 -0300 Subject: [PATCH] chore: add allow clippy too many arguments --- batcher/aligned-sdk/src/sdk.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/batcher/aligned-sdk/src/sdk.rs b/batcher/aligned-sdk/src/sdk.rs index 74dc8e1cb..e3d8fbc21 100644 --- a/batcher/aligned-sdk/src/sdk.rs +++ b/batcher/aligned-sdk/src/sdk.rs @@ -62,6 +62,7 @@ use futures_util::{ /// * `InsufficientBalance` if the sender balance is insufficient or unlocked /// * `ProofQueueFlushed` if there is an error in the batcher and the proof queue is flushed. /// * `GenericError` if the error doesn't match any of the previous ones. +#[allow(clippy::too_many_arguments)] // TODO: Refactor this function, use NoncedVerificationData pub async fn submit_multiple_and_wait_verification( batcher_url: &str, eth_rpc_url: &str, @@ -227,6 +228,7 @@ async fn _submit_multiple( /// * `InsufficientBalance` if the sender balance is insufficient or unlocked /// * `ProofQueueFlushed` if there is an error in the batcher and the proof queue is flushed. /// * `GenericError` if the error doesn't match any of the previous ones. +#[allow(clippy::too_many_arguments)] // TODO: Refactor this function, use NoncedVerificationData pub async fn submit_and_wait_verification( batcher_url: &str, eth_rpc_url: &str,