From 1df5909a2ad78de10c0f5024b7c828d62e5ed9ed Mon Sep 17 00:00:00 2001 From: thesimplekid Date: Fri, 29 Dec 2023 09:04:29 +0000 Subject: [PATCH] chore: clippy --- crates/cashu-sdk/src/mint.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/cashu-sdk/src/mint.rs b/crates/cashu-sdk/src/mint.rs index e7eac397..fad6dd62 100644 --- a/crates/cashu-sdk/src/mint.rs +++ b/crates/cashu-sdk/src/mint.rs @@ -240,7 +240,7 @@ impl Mint { let required_total = quote.amount + quote.fee_reserve; - if proofs_total < required_total.into() { + if proofs_total < required_total { debug!( "Insufficient Proofs: Got: {}, Required: {}", proofs_total, required_total