@@ -602,19 +602,19 @@ impl Bolt11Payment {
602602 /// Returns a payable invoice that can be used to request a payment of the amount
603603 /// given for the given payment hash.
604604 ///
605- /// If [`Config::manually_claim_unknown_bolt11_payments `] is enabled, a
605+ /// If [`Config::manually_handle_unknown_bolt11_payments `] is enabled, a
606606 /// [`PaymentClaimable`] event will be emitted once the inbound payment arrives. Otherwise, the
607607 /// inbound payment will be failed back when it arrives.
608608 ///
609609 /// **Warning:** it is the user's responsibility to never reuse the same payment hash. Reusing a
610610 /// payment hash is unsafe and can lead to loss of funds.
611611 ///
612- /// **Note:** if manual claiming is enabled, users *MUST* handle this event and claim the
612+ /// **Note:** if manual handling is enabled, users *MUST* handle this event and claim the
613613 /// payment manually via [`claim_for_hash`] as soon as they have obtained access to the
614614 /// preimage of the given payment hash. If they're unable to obtain the preimage, they *MUST*
615615 /// immediately fail the payment via [`fail_for_hash`].
616616 ///
617- /// [`Config::manually_claim_unknown_bolt11_payments `]: crate::config::Config::manually_claim_unknown_bolt11_payments
617+ /// [`Config::manually_handle_unknown_bolt11_payments `]: crate::config::Config::manually_handle_unknown_bolt11_payments
618618 /// [`PaymentClaimable`]: crate::Event::PaymentClaimable
619619 /// [`claim_for_hash`]: Self::claim_for_hash
620620 /// [`fail_for_hash`]: Self::fail_for_hash
@@ -643,19 +643,19 @@ impl Bolt11Payment {
643643 /// Returns a payable invoice that can be used to request a payment for the given payment hash
644644 /// and the amount to be determined by the user, also known as a "zero-amount" invoice.
645645 ///
646- /// If [`Config::manually_claim_unknown_bolt11_payments `] is enabled, a
646+ /// If [`Config::manually_handle_unknown_bolt11_payments `] is enabled, a
647647 /// [`PaymentClaimable`] event will be emitted once the inbound payment arrives. Otherwise, the
648648 /// inbound payment will be failed back when it arrives.
649649 ///
650650 /// **Warning:** it is the user's responsibility to never reuse the same payment hash. Reusing a
651651 /// payment hash is unsafe and can lead to loss of funds.
652652 ///
653- /// **Note:** if manual claiming is enabled, users *MUST* handle this event and claim the
653+ /// **Note:** if manual handling is enabled, users *MUST* handle this event and claim the
654654 /// payment manually via [`claim_for_hash`] as soon as they have obtained access to the
655655 /// preimage of the given payment hash. If they're unable to obtain the preimage, they *MUST*
656656 /// immediately fail the payment via [`fail_for_hash`].
657657 ///
658- /// [`Config::manually_claim_unknown_bolt11_payments `]: crate::config::Config::manually_claim_unknown_bolt11_payments
658+ /// [`Config::manually_handle_unknown_bolt11_payments `]: crate::config::Config::manually_handle_unknown_bolt11_payments
659659 /// [`PaymentClaimable`]: crate::Event::PaymentClaimable
660660 /// [`claim_for_hash`]: Self::claim_for_hash
661661 /// [`fail_for_hash`]: Self::fail_for_hash
@@ -702,7 +702,7 @@ impl Bolt11Payment {
702702 /// If set, `max_total_lsp_fee_limit_msat` will limit how much fee we allow the LSP to take for opening the
703703 /// channel to us. We'll use its cheapest offer otherwise.
704704 ///
705- /// If [`Config::manually_claim_unknown_bolt11_payments `] is enabled, a
705+ /// If [`Config::manually_handle_unknown_bolt11_payments `] is enabled, a
706706 /// [`PaymentClaimable`] event will be emitted once the inbound payment arrives. Otherwise, the
707707 /// inbound payment will be failed back when it arrives. The check that
708708 /// [`counterparty_skimmed_fee_msat`] is within the limits is performed *before* emitting the
@@ -711,13 +711,13 @@ impl Bolt11Payment {
711711 /// **Warning:** it is the user's responsibility to never reuse the same payment hash. Reusing a
712712 /// payment hash is unsafe and can lead to loss of funds.
713713 ///
714- /// **Note:** if manual claiming is enabled, users *MUST* handle this event and claim the
714+ /// **Note:** if manual handling is enabled, users *MUST* handle this event and claim the
715715 /// payment manually via [`claim_for_hash`] as soon as they have obtained access to the
716716 /// preimage of the given payment hash. If they're unable to obtain the preimage, they *MUST*
717717 /// immediately fail the payment via [`fail_for_hash`].
718718 ///
719719 /// [LSPS2]: https://github.com/BitcoinAndLightningLayerSpecs/lsp/blob/main/LSPS2/README.md
720- /// [`Config::manually_claim_unknown_bolt11_payments `]: crate::config::Config::manually_claim_unknown_bolt11_payments
720+ /// [`Config::manually_handle_unknown_bolt11_payments `]: crate::config::Config::manually_handle_unknown_bolt11_payments
721721 /// [`PaymentClaimable`]: crate::Event::PaymentClaimable
722722 /// [`claim_for_hash`]: Self::claim_for_hash
723723 /// [`fail_for_hash`]: Self::fail_for_hash
@@ -775,7 +775,7 @@ impl Bolt11Payment {
775775 /// parts-per-million millisatoshis, we allow the LSP to take for opening the channel to us.
776776 /// We'll use its cheapest offer otherwise.
777777 ///
778- /// If [`Config::manually_claim_unknown_bolt11_payments `] is enabled, a
778+ /// If [`Config::manually_handle_unknown_bolt11_payments `] is enabled, a
779779 /// [`PaymentClaimable`] event will be emitted once the inbound payment arrives. Otherwise, the
780780 /// inbound payment will be failed back when it arrives. The check that
781781 /// [`counterparty_skimmed_fee_msat`] is within the limits is performed *before* emitting the
@@ -784,13 +784,13 @@ impl Bolt11Payment {
784784 /// **Warning:** it is the user's responsibility to never reuse the same payment hash. Reusing a
785785 /// payment hash is unsafe and can lead to loss of funds.
786786 ///
787- /// **Note:** if manual claiming is enabled, users *MUST* handle this event and claim the
787+ /// **Note:** if manual handling is enabled, users *MUST* handle this event and claim the
788788 /// payment manually via [`claim_for_hash`] as soon as they have obtained access to the
789789 /// preimage of the given payment hash. If they're unable to obtain the preimage, they *MUST*
790790 /// immediately fail the payment via [`fail_for_hash`].
791791 ///
792792 /// [LSPS2]: https://github.com/BitcoinAndLightningLayerSpecs/lsp/blob/main/LSPS2/README.md
793- /// [`Config::manually_claim_unknown_bolt11_payments `]: crate::config::Config::manually_claim_unknown_bolt11_payments
793+ /// [`Config::manually_handle_unknown_bolt11_payments `]: crate::config::Config::manually_handle_unknown_bolt11_payments
794794 /// [`PaymentClaimable`]: crate::Event::PaymentClaimable
795795 /// [`claim_for_hash`]: Self::claim_for_hash
796796 /// [`fail_for_hash`]: Self::fail_for_hash
0 commit comments