We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8af1ee9 commit 1c82c83Copy full SHA for 1c82c83
api/src/signer/mod.rs
@@ -556,6 +556,7 @@ impl Signer {
556
.await
557
.map_err(|e| SignerError::FetchNonceError(Box::new(e)))?;
558
559
+ #[allow(clippy::significant_drop_tightening)]
560
let nonce = {
561
let mut nonce_cache = self.nonce_cache.lock().await;
562
let nonce = nonce_cache.entry((account_id, public_key)).or_default();
0 commit comments