clippy fix

This commit is contained in:
daywalker90 2025-11-09 15:17:48 +01:00
parent ac2f4b1acd
commit 4cc965bf0b
No known key found for this signature in database

View file

@ -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()