@@ -2700,7 +2700,7 @@ where
2700
2700
}
2701
2701
2702
2702
let (monitor_update_option, mut failed_htlcs, unbroadcasted_batch_funding_txid) = shutdown_res;
2703
- log_debug!(self.logger, "Finishing force- closure of channel with {} HTLCs to fail", failed_htlcs.len());
2703
+ log_debug!(self.logger, "Finishing closure of channel with {} HTLCs to fail", failed_htlcs.len());
2704
2704
for htlc_source in failed_htlcs.drain(..) {
2705
2705
let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
2706
2706
let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
@@ -3839,7 +3839,7 @@ where
3839
3839
/// Return values are identical to [`Self::funding_transaction_generated`], respective to
3840
3840
/// each individual channel and transaction output.
3841
3841
///
3842
- /// Do NOT broadcast the funding transaction yourself. This batch funding transcaction
3842
+ /// Do NOT broadcast the funding transaction yourself. This batch funding transaction
3843
3843
/// will only be broadcast when we have safely received and persisted the counterparty's
3844
3844
/// signature for each channel.
3845
3845
///
@@ -3893,7 +3893,7 @@ where
3893
3893
btree_map::Entry::Vacant(vacant) => Some(vacant.insert(Vec::new())),
3894
3894
}
3895
3895
});
3896
- for &(temporary_channel_id, counterparty_node_id) in temporary_channels.iter() {
3896
+ for &(temporary_channel_id, counterparty_node_id) in temporary_channels {
3897
3897
result = result.and_then(|_| self.funding_transaction_generated_intern(
3898
3898
temporary_channel_id,
3899
3899
counterparty_node_id,
0 commit comments