From: Matt Corallo Date: Fri, 20 Nov 2020 19:06:17 +0000 (-0500) Subject: Drop unused variable and loop in channel_monitor_updated X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=6d99c89959aece4f32bfb8e891720fdfeeb249ee;p=rust-lightning Drop unused variable and loop in channel_monitor_updated --- diff --git a/lightning/src/ln/channelmanager.rs b/lightning/src/ln/channelmanager.rs index 4b10340f4..fc48b2fbb 100644 --- a/lightning/src/ln/channelmanager.rs +++ b/lightning/src/ln/channelmanager.rs @@ -2262,7 +2262,6 @@ impl ChannelMana pub fn channel_monitor_updated(&self, funding_txo: &OutPoint, highest_applied_update_id: u64) { let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier); - let mut close_results = Vec::new(); let mut htlc_forwards = Vec::new(); let mut htlc_failures = Vec::new(); let mut pending_events = Vec::new(); @@ -2339,10 +2338,6 @@ impl ChannelMana self.fail_htlc_backwards_internal(self.channel_state.lock().unwrap(), failure.0, &failure.1, failure.2); } self.forward_htlcs(&mut htlc_forwards[..]); - - for res in close_results.drain(..) { - self.finish_force_close_channel(res); - } } fn internal_open_channel(&self, counterparty_node_id: &PublicKey, their_features: InitFeatures, msg: &msgs::OpenChannel) -> Result<(), MsgHandleErrInternal> {