@@ -2502,7 +2502,7 @@ where
2502
2502
/// [`get_event_or_persistence_needed_future`]: Self::get_event_or_persistence_needed_future
2503
2503
/// [`lightning-block-sync`]: https://docs.rs/lightning_block_sync/latest/lightning_block_sync
2504
2504
/// [`lightning-transaction-sync`]: https://docs.rs/lightning_transaction_sync/latest/lightning_transaction_sync
2505
- /// [`lightning-background-processor`]: https://docs.rs/lightning_background_processor /lightning_background_processor
2505
+ /// [`lightning-background-processor`]: https://docs.rs/lightning-background-processor/latest /lightning_background_processor
2506
2506
/// [`list_channels`]: Self::list_channels
2507
2507
/// [`list_usable_channels`]: Self::list_usable_channels
2508
2508
/// [`create_channel`]: Self::create_channel
@@ -4123,7 +4123,7 @@ where
4123
4123
)
4124
4124
};
4125
4125
let chan_by_id = peer_state.channel_by_id.iter();
4126
- return chan_by_id.map(|(_, chan)| ( chan) ).map(channel_to_details).collect();
4126
+ return chan_by_id.map(|(_, chan)| chan).map(channel_to_details).collect();
4127
4127
}
4128
4128
vec![]
4129
4129
}
@@ -4286,7 +4286,7 @@ where
4286
4286
///
4287
4287
/// The `shutdown_script` provided will be used as the `scriptPubKey` for the closing transaction.
4288
4288
/// Will fail if a shutdown script has already been set for this channel by
4289
- /// [' ChannelHandshakeConfig::commit_upfront_shutdown_pubkey`]. The given shutdown script must
4289
+ /// [` ChannelHandshakeConfig::commit_upfront_shutdown_pubkey`]. The given shutdown script must
4290
4290
/// also be compatible with our and the counterparty's features.
4291
4291
///
4292
4292
/// May generate a [`SendShutdown`] message event on success, which should be relayed.
@@ -4298,6 +4298,7 @@ where
4298
4298
///
4299
4299
/// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
4300
4300
/// [`NonAnchorChannelFee`]: crate::chain::chaininterface::ConfirmationTarget::NonAnchorChannelFee
4301
+ /// [`ChannelHandshakeConfig::commit_upfront_shutdown_pubkey`]: crate::util::config::ChannelHandshakeConfig::commit_upfront_shutdown_pubkey
4301
4302
/// [`SendShutdown`]: MessageSendEvent::SendShutdown
4302
4303
pub fn close_channel_with_feerate_and_script(
4303
4304
&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey,
0 commit comments