From: Jeffrey Czyz Date: Fri, 8 Dec 2023 21:02:22 +0000 (-0600) Subject: Fix create_one_hop_blinded_payment_path docs X-Git-Tag: v0.0.119~3^2~9 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=c558ccd6a92fa9034929769f55e65bf9c1336abd;p=rust-lightning Fix create_one_hop_blinded_payment_path docs --- diff --git a/lightning/src/ln/channelmanager.rs b/lightning/src/ln/channelmanager.rs index 9536a936..9017f3ff 100644 --- a/lightning/src/ln/channelmanager.rs +++ b/lightning/src/ln/channelmanager.rs @@ -7867,8 +7867,8 @@ where BlindedPath::one_hop_for_message(self.get_our_node_id(), entropy_source, secp_ctx).unwrap() } - /// Creates a one-hop blinded path with [`ChannelManager::get_our_node_id`] as the introduction - /// node. + /// Creates a one-hop blinded payment path with [`ChannelManager::get_our_node_id`] as the + /// introduction node. fn create_one_hop_blinded_payment_path( &self, payment_secret: PaymentSecret ) -> (BlindedPayInfo, BlindedPath) {