From: Jeffrey Czyz Date: Fri, 7 Aug 2020 22:13:57 +0000 (-0700) Subject: Replace WatchEvent usage with get_outputs_to_watch X-Git-Tag: v0.0.12~21^2~4 X-Git-Url: http://git.bitcoin.ninja/?a=commitdiff_plain;h=71230c995c81a6eb09f51239fc9908c854cd90d0;p=rust-lightning Replace WatchEvent usage with get_outputs_to_watch Outputs to watch are tracked by ChannelMonitor as of 73dce207dd0ea6c3ac57af3ebb8b87ee03e82c9e. Instead of determining new outputs to watch independently using ChainWatchedUtil, do so by comparing against outputs already tracked. Thus, ChainWatchedUtil and WatchEvent are no longer needed. --- diff --git a/lightning/src/chain/chaininterface.rs b/lightning/src/chain/chaininterface.rs index a63e0bf10..91e604838 100644 --- a/lightning/src/chain/chaininterface.rs +++ b/lightning/src/chain/chaininterface.rs @@ -14,10 +14,6 @@ //! disconnections, transaction broadcasting, and feerate information requests. use bitcoin::blockdata::transaction::Transaction; -use bitcoin::blockdata::script::Script; -use bitcoin::hash_types::Txid; - -use std::collections::HashSet; /// An interface to send a transaction to the Bitcoin network. pub trait BroadcasterInterface: Sync + Send { @@ -55,91 +51,3 @@ pub trait FeeEstimator: Sync + Send { /// Minimum relay fee as required by bitcoin network mempool policy. pub const MIN_RELAY_FEE_SAT_PER_1000_WEIGHT: u64 = 4000; - -/// Utility for tracking registered txn/outpoints and checking for matches -#[cfg_attr(test, derive(PartialEq))] -pub struct ChainWatchedUtil { - watch_all: bool, - - // We are more conservative in matching during testing to ensure everything matches *exactly*, - // even though during normal runtime we take more optimized match approaches... - #[cfg(test)] - watched_txn: HashSet<(Txid, Script)>, - #[cfg(not(test))] - watched_txn: HashSet