From: 志宇 Date: Thu, 10 Jul 2025 03:04:24 +0000 (+0000) Subject: chore(esplora): Allow `dead_code` for helper methods X-Git-Tag: bitcoind_rpc-0.21.0~12^2 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/database/scripts/tree-name.html?a=commitdiff_plain;h=f4e158a3e415d0131a560156cf8f6bb21c98f6f7;p=bdk chore(esplora): Allow `dead_code` for helper methods This suppresses warnings in CI. --- diff --git a/crates/esplora/src/lib.rs b/crates/esplora/src/lib.rs index a4d4b9a5..a88c266a 100644 --- a/crates/esplora/src/lib.rs +++ b/crates/esplora/src/lib.rs @@ -36,6 +36,7 @@ mod async_ext; #[cfg(feature = "async")] pub use async_ext::*; +#[allow(dead_code)] fn insert_anchor_or_seen_at_from_status( update: &mut TxUpdate, start_time: u64, @@ -61,6 +62,7 @@ fn insert_anchor_or_seen_at_from_status( /// Inserts floating txouts into `tx_graph` using [`Vin`](esplora_client::api::Vin)s returned by /// Esplora. +#[allow(dead_code)] fn insert_prevouts( update: &mut TxUpdate, esplora_inputs: impl IntoIterator,