From: Leonardo Lima Date: Tue, 23 Sep 2025 00:21:25 +0000 (+1000) Subject: fix(electrum): clippy warnings X-Git-Url: http://internal-gitweb-vhost/script/%22https:/database/scripts/struct.TxIndexOutOfRangeError.html?a=commitdiff_plain;h=62da6dc96a37959bc2407b8d60072c4705c40f67;p=bdk fix(electrum): clippy warnings --- diff --git a/crates/electrum/tests/test_electrum.rs b/crates/electrum/tests/test_electrum.rs index 7fcf5d80..d374e1f2 100644 --- a/crates/electrum/tests/test_electrum.rs +++ b/crates/electrum/tests/test_electrum.rs @@ -71,7 +71,7 @@ where if let Some(chain_update) = update.chain_update.clone() { let _ = chain .apply_update(chain_update) - .map_err(|err| anyhow::anyhow!("LocalChain update error: {:?}", err))?; + .map_err(|err| anyhow::anyhow!("LocalChain update error: {err:?}"))?; } let _ = graph.apply_update(update.tx_update.clone());