Fix clippy, update old dependencies

This commit is contained in:
Luke Parker
2025-08-25 09:17:29 -04:00
parent c24b694fb2
commit 9dddfd91c8
93 changed files with 637 additions and 663 deletions

View File

@@ -146,7 +146,7 @@ pub(crate) fn ack_message(from: Service, to: Service, id: u64, sig: SchnorrSigna
// It's the second if we acknowledge messages before saving them as acknowledged
// TODO: Check only a proper message is being acked
log::info!("Acknowledging From: {:?} To: {:?} ID: {}", from, to, id);
log::info!("Acknowledging From: {from:?} To: {to:?} ID: {id}");
QUEUES.read().unwrap()[&(from, to)].write().unwrap().ack_message(id)
}