@@ -2710,7 +2710,7 @@ where
2710
2710
}
2711
2711
2712
2712
let (monitor_update_option, mut failed_htlcs, unbroadcasted_batch_funding_txid) = shutdown_res;
2713
- log_debug!(self.logger, "Finishing force- closure of channel with {} HTLCs to fail", failed_htlcs.len());
2713
+ log_debug!(self.logger, "Finishing closure of channel with {} HTLCs to fail", failed_htlcs.len());
2714
2714
for htlc_source in failed_htlcs.drain(..) {
2715
2715
let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
2716
2716
let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
@@ -3849,7 +3849,7 @@ where
3849
3849
/// Return values are identical to [`Self::funding_transaction_generated`], respective to
3850
3850
/// each individual channel and transaction output.
3851
3851
///
3852
- /// Do NOT broadcast the funding transaction yourself. This batch funding transcaction
3852
+ /// Do NOT broadcast the funding transaction yourself. This batch funding transaction
3853
3853
/// will only be broadcast when we have safely received and persisted the counterparty's
3854
3854
/// signature for each channel.
3855
3855
///
@@ -3903,7 +3903,7 @@ where
3903
3903
btree_map::Entry::Vacant(vacant) => Some(vacant.insert(Vec::new())),
3904
3904
}
3905
3905
});
3906
- for &(temporary_channel_id, counterparty_node_id) in temporary_channels.iter() {
3906
+ for &(temporary_channel_id, counterparty_node_id) in temporary_channels {
3907
3907
result = result.and_then(|_| self.funding_transaction_generated_intern(
3908
3908
temporary_channel_id,
3909
3909
counterparty_node_id,
0 commit comments