From 03aa4a17b2fa99fc94cc3d07f303ff3d4a6bc6e6 Mon Sep 17 00:00:00 2001 From: thesimplekid Date: Wed, 3 Jan 2024 13:58:13 +0000 Subject: [PATCH] chore: clippy --- crates/cashu-sdk/src/mint/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/cashu-sdk/src/mint/mod.rs b/crates/cashu-sdk/src/mint/mod.rs index 85da58de..bad66db6 100644 --- a/crates/cashu-sdk/src/mint/mod.rs +++ b/crates/cashu-sdk/src/mint/mod.rs @@ -276,7 +276,7 @@ impl Mint { for id in &output_keyset_ids { let keyset = self .localstore - .get_keyset(&id) + .get_keyset(id) .await? .ok_or(Error::UnknownKeySet)?;