From 4cc965bf0bdcc44de5f76cd373f04af1ac6febff Mon Sep 17 00:00:00 2001 From: daywalker90 <8257956+daywalker90@users.noreply.github.com> Date: Sun, 9 Nov 2025 15:17:48 +0100 Subject: [PATCH] clippy fix --- src/tasks.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tasks.rs b/src/tasks.rs index e225dc9..2437e4a 100644 --- a/src/tasks.rs +++ b/src/tasks.rs @@ -44,7 +44,7 @@ pub async fn budget_task( log::info!("Stopping budget task for {label}"); break; } - _ = time::sleep(Duration::from_secs(next_reset)) => { + () = time::sleep(Duration::from_secs(next_reset)) => { log::info!("Refreshing budget for {label}"); *nwc_store.budget_msat .as_mut()