Skip to content

Commit 0715cd3

Browse files
committed
Remove unnecessary drain
1 parent aaef672 commit 0715cd3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lightning/src/ln/channel.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3500,7 +3500,7 @@ impl<SP: Deref> ChannelContext<SP> where SP::Target: SignerProvider {
35003500
}
35013501
bitcoin_tx.txid
35023502
};
3503-
let mut htlcs_cloned: Vec<_> = commitment_stats.htlcs_included.iter().map(|htlc| (htlc.0.clone(), htlc.1.map(|h| h.clone()))).collect();
3503+
let htlcs_cloned: Vec<_> = commitment_stats.htlcs_included.iter().map(|htlc| (htlc.0.clone(), htlc.1.map(|h| h.clone()))).collect();
35043504

35053505
// If our counterparty updated the channel fee in this commitment transaction, check that
35063506
// they can actually afford the new fee now.
@@ -3553,7 +3553,7 @@ impl<SP: Deref> ChannelContext<SP> where SP::Target: SignerProvider {
35533553

35543554
let mut nondust_htlc_sources = Vec::with_capacity(htlcs_cloned.len());
35553555
let mut htlcs_and_sigs = Vec::with_capacity(htlcs_cloned.len());
3556-
for (idx, (htlc, mut source_opt)) in htlcs_cloned.drain(..).enumerate() {
3556+
for (idx, (htlc, mut source_opt)) in htlcs_cloned.into_iter().enumerate() {
35573557
if let Some(_) = htlc.transaction_output_index {
35583558
let htlc_tx = chan_utils::build_htlc_transaction(&commitment_txid, commitment_stats.feerate_per_kw,
35593559
funding.get_counterparty_selected_contest_delay().unwrap(), &htlc, &self.channel_type,

0 commit comments

Comments
 (0)