Fix outdated PendingOutboundPayment::Abandoned docs
[rust-lightning] / lightning / src / offers / invoice.rs
index 99a97368d92408f735db7509012bb44adc01a680..f423677fbc9dae50568a0d7b3569d0e261db16ab 100644 (file)
@@ -338,8 +338,10 @@ struct InvoiceFields {
 
 impl Invoice {
        /// Paths to the recipient originating from publicly reachable nodes, including information
-       /// needed for routing payments across them. Blinded paths provide recipient privacy by
-       /// obfuscating its node id.
+       /// needed for routing payments across them.
+       ///
+       /// Blinded paths provide recipient privacy by obfuscating its node id. Note, however, that this
+       /// privacy is lost if a public node id is used for [`Invoice::signing_pubkey`].
        pub fn payment_paths(&self) -> &[(BlindedPath, BlindedPayInfo)] {
                &self.contents.fields().payment_paths[..]
        }