Skip to content

Commit

Permalink
chore: add allow clippy too many arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
taturosati committed Sep 4, 2024
1 parent e224ec2 commit 1b8c51e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions batcher/aligned-sdk/src/sdk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 1b8c51e

Please sign in to comment.