@@ -2502,7 +2502,7 @@ where
25022502/// [`get_event_or_persistence_needed_future`]: Self::get_event_or_persistence_needed_future
25032503/// [`lightning-block-sync`]: https://docs.rs/lightning_block_sync/latest/lightning_block_sync
25042504/// [`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
25062506/// [`list_channels`]: Self::list_channels
25072507/// [`list_usable_channels`]: Self::list_usable_channels
25082508/// [`create_channel`]: Self::create_channel
@@ -4123,7 +4123,7 @@ where
41234123 )
41244124 };
41254125 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();
41274127 }
41284128 vec![]
41294129 }
@@ -4286,7 +4286,7 @@ where
42864286 ///
42874287 /// The `shutdown_script` provided will be used as the `scriptPubKey` for the closing transaction.
42884288 /// 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
42904290 /// also be compatible with our and the counterparty's features.
42914291 ///
42924292 /// May generate a [`SendShutdown`] message event on success, which should be relayed.
@@ -4298,6 +4298,7 @@ where
42984298 ///
42994299 /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
43004300 /// [`NonAnchorChannelFee`]: crate::chain::chaininterface::ConfirmationTarget::NonAnchorChannelFee
4301+ /// [`ChannelHandshakeConfig::commit_upfront_shutdown_pubkey`]: crate::util::config::ChannelHandshakeConfig::commit_upfront_shutdown_pubkey
43014302 /// [`SendShutdown`]: MessageSendEvent::SendShutdown
43024303 pub fn close_channel_with_feerate_and_script(
43034304 &self, channel_id: &ChannelId, counterparty_node_id: &PublicKey,
0 commit comments