From e5e011adda7399c94eea8d25f37de2c24cdfd281 Mon Sep 17 00:00:00 2001 From: Valentine Wallace Date: Tue, 26 Nov 2024 18:31:27 -0500 Subject: [PATCH] f fix docs --- lightning/src/ln/channelmanager.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lightning/src/ln/channelmanager.rs b/lightning/src/ln/channelmanager.rs index a415aee28d5..2330dcd4a52 100644 --- a/lightning/src/ln/channelmanager.rs +++ b/lightning/src/ln/channelmanager.rs @@ -9555,8 +9555,8 @@ where /// Create an offer for receiving async payments as an often-offline recipient. /// /// Because we may be offline when the payer attempts to request an invoice, you MUST: - /// 1. Provide at least 1 [`BlindedPath`] for onion messages terminating at an always-online node - /// that will serve the [`StaticInvoice`] created from this offer on our behalf. + /// 1. Provide at least 1 [`BlindedMessagePath`] terminating at an always-online node that will + /// serve the [`StaticInvoice`] created from this offer on our behalf. /// 2. Use [`Self::create_static_invoice_builder_for_async_receive_offer`] to create a /// [`StaticInvoice`] from this [`Offer`] plus the returned [`Nonce`], and provide the static /// invoice to the aforementioned always-online node.