From 63f40fc04d211931f591b748965d20ad23bf7a5f Mon Sep 17 00:00:00 2001 From: Noah Prince Date: Wed, 15 Jan 2025 13:01:12 -0800 Subject: [PATCH] Fix build --- tuktuk-sdk/src/tuktuk.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tuktuk-sdk/src/tuktuk.rs b/tuktuk-sdk/src/tuktuk.rs index 0e1f9f9..d7e46a7 100644 --- a/tuktuk-sdk/src/tuktuk.rs +++ b/tuktuk-sdk/src/tuktuk.rs @@ -112,6 +112,7 @@ pub mod cron { Ok(cron_job_keys) } + #[allow(clippy::too_many_arguments)] pub fn create_ix( payer: Pubkey, authority: Pubkey, @@ -607,11 +608,11 @@ pub mod task { .await? .ok_or_else(|| Error::AccountNotFound)?; - Ok(self::dequeue_ix( + self::dequeue_ix( task_queue_key, task_queue.queue_authority, task.rent_refund, index, - )?) + ) } }