Rename `Payee` to `PaymentParameters`
[rust-lightning] / lightning / src / ln / features.rs
index dab841327802fc8ae3ee0c869395a7ce378c4148..0ccce88e9f5d71743530a441504ac7c18b1da6a2 100644 (file)
@@ -500,10 +500,10 @@ impl InvoiceFeatures {
        /// Getting a route for a keysend payment to a private node requires providing the payee's
        /// features (since they were not announced in a node announcement). However, keysend payments
        /// don't have an invoice to pull the payee's features from, so this method is provided for use in
-       /// [`Payee::for_keysend`], thus omitting the need for payers to manually construct an
+       /// [`PaymentParameters::for_keysend`], thus omitting the need for payers to manually construct an
        /// `InvoiceFeatures` for [`find_route`].
        ///
-       /// [`Payee::for_keysend`]: crate::routing::router::Payee::for_keysend
+       /// [`PaymentParameters::for_keysend`]: crate::routing::router::PaymentParameters::for_keysend
        /// [`find_route`]: crate::routing::router::find_route
        pub(crate) fn for_keysend() -> InvoiceFeatures {
                InvoiceFeatures::empty().set_variable_length_onion_optional()