1 //! Convenient utilities to create an invoice.
3 use crate::{CreationError, Currency, Invoice, InvoiceBuilder, SignOrCreationError};
5 use crate::{prelude::*, Description, InvoiceDescription, Sha256};
7 use bitcoin_hashes::Hash;
9 use lightning::chain::chaininterface::{BroadcasterInterface, FeeEstimator};
10 use lightning::chain::keysinterface::{Recipient, NodeSigner, SignerProvider, EntropySource};
11 use lightning::ln::{PaymentHash, PaymentSecret};
12 use lightning::ln::channelmanager::{ChannelDetails, ChannelManager, MIN_FINAL_CLTV_EXPIRY_DELTA};
13 use lightning::ln::channelmanager::{PhantomRouteHints, MIN_CLTV_EXPIRY_DELTA};
14 use lightning::ln::inbound_payment::{create, create_from_hash, ExpandedKey};
15 use lightning::routing::gossip::RoutingFees;
16 use lightning::routing::router::{RouteHint, RouteHintHop, Router};
17 use lightning::util::logger::Logger;
18 use secp256k1::PublicKey;
20 use core::time::Duration;
22 /// Utility to create an invoice that can be paid to one of multiple nodes, or a "phantom invoice."
23 /// See [`PhantomKeysManager`] for more information on phantom node payments.
25 /// `phantom_route_hints` parameter:
26 /// * Contains channel info for all nodes participating in the phantom invoice
27 /// * Entries are retrieved from a call to [`ChannelManager::get_phantom_route_hints`] on each
28 /// participating node
29 /// * It is fine to cache `phantom_route_hints` and reuse it across invoices, as long as the data is
30 /// updated when a channel becomes disabled or closes
31 /// * Note that if too many channels are included in [`PhantomRouteHints::channels`], the invoice
32 /// may be too long for QR code scanning. To fix this, `PhantomRouteHints::channels` may be pared
35 /// `payment_hash` can be specified if you have a specific need for a custom payment hash (see the difference
36 /// between [`ChannelManager::create_inbound_payment`] and [`ChannelManager::create_inbound_payment_for_hash`]).
37 /// If `None` is provided for `payment_hash`, then one will be created.
39 /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
40 /// in excess of the current time.
42 /// `duration_since_epoch` is the current time since epoch in seconds.
44 /// You can specify a custom `min_final_cltv_expiry_delta`, or let LDK default it to
45 /// [`MIN_FINAL_CLTV_EXPIRY_DELTA`]. The provided expiry must be at least [`MIN_FINAL_CLTV_EXPIRY_DELTA`] - 3.
46 /// Note that LDK will add a buffer of 3 blocks to the delta to allow for up to a few new block
47 /// confirmations during routing.
49 /// Note that the provided `keys_manager`'s `NodeSigner` implementation must support phantom
50 /// invoices in its `sign_invoice` implementation ([`PhantomKeysManager`] satisfies this
53 /// [`PhantomKeysManager`]: lightning::chain::keysinterface::PhantomKeysManager
54 /// [`ChannelManager::get_phantom_route_hints`]: lightning::ln::channelmanager::ChannelManager::get_phantom_route_hints
55 /// [`ChannelManager::create_inbound_payment`]: lightning::ln::channelmanager::ChannelManager::create_inbound_payment
56 /// [`ChannelManager::create_inbound_payment_for_hash`]: lightning::ln::channelmanager::ChannelManager::create_inbound_payment_for_hash
57 /// [`PhantomRouteHints::channels`]: lightning::ln::channelmanager::PhantomRouteHints::channels
58 /// [`MIN_FINAL_CLTV_EXPIRY_DETLA`]: lightning::ln::channelmanager::MIN_FINAL_CLTV_EXPIRY_DELTA
60 /// This can be used in a `no_std` environment, where [`std::time::SystemTime`] is not
61 /// available and the current time is supplied by the caller.
62 pub fn create_phantom_invoice<ES: Deref, NS: Deref, L: Deref>(
63 amt_msat: Option<u64>, payment_hash: Option<PaymentHash>, description: String,
64 invoice_expiry_delta_secs: u32, phantom_route_hints: Vec<PhantomRouteHints>, entropy_source: ES,
65 node_signer: NS, logger: L, network: Currency, min_final_cltv_expiry_delta: Option<u16>, duration_since_epoch: Duration,
66 ) -> Result<Invoice, SignOrCreationError<()>>
68 ES::Target: EntropySource,
69 NS::Target: NodeSigner,
72 let description = Description::new(description).map_err(SignOrCreationError::CreationError)?;
73 let description = InvoiceDescription::Direct(&description,);
74 _create_phantom_invoice::<ES, NS, L>(
75 amt_msat, payment_hash, description, invoice_expiry_delta_secs, phantom_route_hints,
76 entropy_source, node_signer, logger, network, min_final_cltv_expiry_delta, duration_since_epoch,
80 /// Utility to create an invoice that can be paid to one of multiple nodes, or a "phantom invoice."
81 /// See [`PhantomKeysManager`] for more information on phantom node payments.
83 /// `phantom_route_hints` parameter:
84 /// * Contains channel info for all nodes participating in the phantom invoice
85 /// * Entries are retrieved from a call to [`ChannelManager::get_phantom_route_hints`] on each
86 /// participating node
87 /// * It is fine to cache `phantom_route_hints` and reuse it across invoices, as long as the data is
88 /// updated when a channel becomes disabled or closes
89 /// * Note that if too many channels are included in [`PhantomRouteHints::channels`], the invoice
90 /// may be too long for QR code scanning. To fix this, `PhantomRouteHints::channels` may be pared
93 /// `description_hash` is a SHA-256 hash of the description text
95 /// `payment_hash` can be specified if you have a specific need for a custom payment hash (see the difference
96 /// between [`ChannelManager::create_inbound_payment`] and [`ChannelManager::create_inbound_payment_for_hash`]).
97 /// If `None` is provided for `payment_hash`, then one will be created.
99 /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
100 /// in excess of the current time.
102 /// `duration_since_epoch` is the current time since epoch in seconds.
104 /// Note that the provided `keys_manager`'s `NodeSigner` implementation must support phantom
105 /// invoices in its `sign_invoice` implementation ([`PhantomKeysManager`] satisfies this
108 /// [`PhantomKeysManager`]: lightning::chain::keysinterface::PhantomKeysManager
109 /// [`ChannelManager::get_phantom_route_hints`]: lightning::ln::channelmanager::ChannelManager::get_phantom_route_hints
110 /// [`ChannelManager::create_inbound_payment`]: lightning::ln::channelmanager::ChannelManager::create_inbound_payment
111 /// [`ChannelManager::create_inbound_payment_for_hash`]: lightning::ln::channelmanager::ChannelManager::create_inbound_payment_for_hash
112 /// [`PhantomRouteHints::channels`]: lightning::ln::channelmanager::PhantomRouteHints::channels
114 /// This can be used in a `no_std` environment, where [`std::time::SystemTime`] is not
115 /// available and the current time is supplied by the caller.
116 pub fn create_phantom_invoice_with_description_hash<ES: Deref, NS: Deref, L: Deref>(
117 amt_msat: Option<u64>, payment_hash: Option<PaymentHash>, invoice_expiry_delta_secs: u32,
118 description_hash: Sha256, phantom_route_hints: Vec<PhantomRouteHints>, entropy_source: ES,
119 node_signer: NS, logger: L, network: Currency, min_final_cltv_expiry_delta: Option<u16>, duration_since_epoch: Duration,
120 ) -> Result<Invoice, SignOrCreationError<()>>
122 ES::Target: EntropySource,
123 NS::Target: NodeSigner,
126 _create_phantom_invoice::<ES, NS, L>(
127 amt_msat, payment_hash, InvoiceDescription::Hash(&description_hash),
128 invoice_expiry_delta_secs, phantom_route_hints, entropy_source, node_signer, logger, network,
129 min_final_cltv_expiry_delta, duration_since_epoch,
133 fn _create_phantom_invoice<ES: Deref, NS: Deref, L: Deref>(
134 amt_msat: Option<u64>, payment_hash: Option<PaymentHash>, description: InvoiceDescription,
135 invoice_expiry_delta_secs: u32, phantom_route_hints: Vec<PhantomRouteHints>, entropy_source: ES,
136 node_signer: NS, logger: L, network: Currency, min_final_cltv_expiry_delta: Option<u16>, duration_since_epoch: Duration,
137 ) -> Result<Invoice, SignOrCreationError<()>>
139 ES::Target: EntropySource,
140 NS::Target: NodeSigner,
144 if phantom_route_hints.len() == 0 {
145 return Err(SignOrCreationError::CreationError(
146 CreationError::MissingRouteHints,
150 if min_final_cltv_expiry_delta.is_some() && min_final_cltv_expiry_delta.unwrap().saturating_add(3) < MIN_FINAL_CLTV_EXPIRY_DELTA {
151 return Err(SignOrCreationError::CreationError(CreationError::MinFinalCltvExpiryDeltaTooShort));
154 let invoice = match description {
155 InvoiceDescription::Direct(description) => {
156 InvoiceBuilder::new(network).description(description.0.clone())
158 InvoiceDescription::Hash(hash) => InvoiceBuilder::new(network).description_hash(hash.0),
161 // If we ever see performance here being too slow then we should probably take this ExpandedKey as a parameter instead.
162 let keys = ExpandedKey::new(&node_signer.get_inbound_payment_key_material());
163 let (payment_hash, payment_secret) = if let Some(payment_hash) = payment_hash {
164 let payment_secret = create_from_hash(
168 invoice_expiry_delta_secs,
171 min_final_cltv_expiry_delta,
173 .map_err(|_| SignOrCreationError::CreationError(CreationError::InvalidAmount))?;
174 (payment_hash, payment_secret)
179 invoice_expiry_delta_secs,
183 min_final_cltv_expiry_delta,
185 .map_err(|_| SignOrCreationError::CreationError(CreationError::InvalidAmount))?
188 log_trace!(logger, "Creating phantom invoice from {} participating nodes with payment hash {}",
189 phantom_route_hints.len(), log_bytes!(payment_hash.0));
191 let mut invoice = invoice
192 .duration_since_epoch(duration_since_epoch)
193 .payment_hash(Hash::from_slice(&payment_hash.0).unwrap())
194 .payment_secret(payment_secret)
195 .min_final_cltv_expiry_delta(
196 // Add a buffer of 3 to the delta if present, otherwise use LDK's minimum.
197 min_final_cltv_expiry_delta.map(|x| x.saturating_add(3)).unwrap_or(MIN_FINAL_CLTV_EXPIRY_DELTA).into())
198 .expiry_time(Duration::from_secs(invoice_expiry_delta_secs.into()));
199 if let Some(amt) = amt_msat {
200 invoice = invoice.amount_milli_satoshis(amt);
203 for PhantomRouteHints { channels, phantom_scid, real_node_pubkey } in phantom_route_hints {
204 log_trace!(logger, "Generating phantom route hints for node {}",
205 log_pubkey!(real_node_pubkey));
206 let mut route_hints = filter_channels(channels, amt_msat, &logger);
208 // If we have any public channel, the route hints from `filter_channels` will be empty.
209 // In that case we create a RouteHint on which we will push a single hop with the phantom
210 // route into the invoice, and let the sender find the path to the `real_node_pubkey`
211 // node by looking at our public channels.
212 if route_hints.is_empty() {
213 route_hints.push(RouteHint(vec![]))
215 for mut route_hint in route_hints {
216 route_hint.0.push(RouteHintHop {
217 src_node_id: real_node_pubkey,
218 short_channel_id: phantom_scid,
221 proportional_millionths: 0,
223 cltv_expiry_delta: MIN_CLTV_EXPIRY_DELTA,
224 htlc_minimum_msat: None,
225 htlc_maximum_msat: None,});
226 invoice = invoice.private_route(route_hint.clone());
230 let raw_invoice = match invoice.build_raw() {
232 Err(e) => return Err(SignOrCreationError::CreationError(e))
234 let hrp_str = raw_invoice.hrp.to_string();
235 let hrp_bytes = hrp_str.as_bytes();
236 let data_without_signature = raw_invoice.data.to_base32();
237 let signed_raw_invoice = raw_invoice.sign(|_| node_signer.sign_invoice(hrp_bytes, &data_without_signature, Recipient::PhantomNode));
238 match signed_raw_invoice {
239 Ok(inv) => Ok(Invoice::from_signed(inv).unwrap()),
240 Err(e) => Err(SignOrCreationError::SignError(e))
244 #[cfg(feature = "std")]
245 /// Utility to construct an invoice. Generally, unless you want to do something like a custom
246 /// cltv_expiry, this is what you should be using to create an invoice. The reason being, this
247 /// method stores the invoice's payment secret and preimage in `ChannelManager`, so (a) the user
248 /// doesn't have to store preimage/payment secret information and (b) `ChannelManager` can verify
249 /// that the payment secret is valid when the invoice is paid.
251 /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
252 /// in excess of the current time.
254 /// You can specify a custom `min_final_cltv_expiry_delta`, or let LDK default it to
255 /// [`MIN_FINAL_CLTV_EXPIRY_DELTA`]. The provided expiry must be at least [`MIN_FINAL_CLTV_EXPIRY_DELTA`].
256 /// Note that LDK will add a buffer of 3 blocks to the delta to allow for up to a few new block
257 /// confirmations during routing.
259 /// [`MIN_FINAL_CLTV_EXPIRY_DETLA`]: lightning::ln::channelmanager::MIN_FINAL_CLTV_EXPIRY_DELTA
260 pub fn create_invoice_from_channelmanager<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>(
261 channelmanager: &ChannelManager<M, T, ES, NS, SP, F, R, L>, node_signer: NS, logger: L,
262 network: Currency, amt_msat: Option<u64>, description: String, invoice_expiry_delta_secs: u32,
263 min_final_cltv_expiry_delta: Option<u16>,
264 ) -> Result<Invoice, SignOrCreationError<()>>
266 M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
267 T::Target: BroadcasterInterface,
268 ES::Target: EntropySource,
269 NS::Target: NodeSigner,
270 SP::Target: SignerProvider,
271 F::Target: FeeEstimator,
275 use std::time::SystemTime;
276 let duration = SystemTime::now().duration_since(SystemTime::UNIX_EPOCH)
277 .expect("for the foreseeable future this shouldn't happen");
278 create_invoice_from_channelmanager_and_duration_since_epoch(
279 channelmanager, node_signer, logger, network, amt_msat,
280 description, duration, invoice_expiry_delta_secs, min_final_cltv_expiry_delta,
284 #[cfg(feature = "std")]
285 /// Utility to construct an invoice. Generally, unless you want to do something like a custom
286 /// cltv_expiry, this is what you should be using to create an invoice. The reason being, this
287 /// method stores the invoice's payment secret and preimage in `ChannelManager`, so (a) the user
288 /// doesn't have to store preimage/payment secret information and (b) `ChannelManager` can verify
289 /// that the payment secret is valid when the invoice is paid.
290 /// Use this variant if you want to pass the `description_hash` to the invoice.
292 /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
293 /// in excess of the current time.
295 /// You can specify a custom `min_final_cltv_expiry_delta`, or let LDK default it to
296 /// [`MIN_FINAL_CLTV_EXPIRY_DELTA`]. The provided expiry must be at least [`MIN_FINAL_CLTV_EXPIRY_DELTA`].
297 /// Note that LDK will add a buffer of 3 blocks to the delta to allow for up to a few new block
298 /// confirmations during routing.
300 /// [`MIN_FINAL_CLTV_EXPIRY_DETLA`]: lightning::ln::channelmanager::MIN_FINAL_CLTV_EXPIRY_DELTA
301 pub fn create_invoice_from_channelmanager_with_description_hash<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>(
302 channelmanager: &ChannelManager<M, T, ES, NS, SP, F, R, L>, node_signer: NS, logger: L,
303 network: Currency, amt_msat: Option<u64>, description_hash: Sha256,
304 invoice_expiry_delta_secs: u32, min_final_cltv_expiry_delta: Option<u16>,
305 ) -> Result<Invoice, SignOrCreationError<()>>
307 M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
308 T::Target: BroadcasterInterface,
309 ES::Target: EntropySource,
310 NS::Target: NodeSigner,
311 SP::Target: SignerProvider,
312 F::Target: FeeEstimator,
316 use std::time::SystemTime;
318 let duration = SystemTime::now()
319 .duration_since(SystemTime::UNIX_EPOCH)
320 .expect("for the foreseeable future this shouldn't happen");
322 create_invoice_from_channelmanager_with_description_hash_and_duration_since_epoch(
323 channelmanager, node_signer, logger, network, amt_msat,
324 description_hash, duration, invoice_expiry_delta_secs, min_final_cltv_expiry_delta,
328 /// See [`create_invoice_from_channelmanager_with_description_hash`]
329 /// This version can be used in a `no_std` environment, where [`std::time::SystemTime`] is not
330 /// available and the current time is supplied by the caller.
331 pub fn create_invoice_from_channelmanager_with_description_hash_and_duration_since_epoch<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>(
332 channelmanager: &ChannelManager<M, T, ES, NS, SP, F, R, L>, node_signer: NS, logger: L,
333 network: Currency, amt_msat: Option<u64>, description_hash: Sha256,
334 duration_since_epoch: Duration, invoice_expiry_delta_secs: u32, min_final_cltv_expiry_delta: Option<u16>,
335 ) -> Result<Invoice, SignOrCreationError<()>>
337 M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
338 T::Target: BroadcasterInterface,
339 ES::Target: EntropySource,
340 NS::Target: NodeSigner,
341 SP::Target: SignerProvider,
342 F::Target: FeeEstimator,
346 _create_invoice_from_channelmanager_and_duration_since_epoch(
347 channelmanager, node_signer, logger, network, amt_msat,
348 InvoiceDescription::Hash(&description_hash),
349 duration_since_epoch, invoice_expiry_delta_secs, min_final_cltv_expiry_delta,
353 /// See [`create_invoice_from_channelmanager`]
354 /// This version can be used in a `no_std` environment, where [`std::time::SystemTime`] is not
355 /// available and the current time is supplied by the caller.
356 pub fn create_invoice_from_channelmanager_and_duration_since_epoch<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>(
357 channelmanager: &ChannelManager<M, T, ES, NS, SP, F, R, L>, node_signer: NS, logger: L,
358 network: Currency, amt_msat: Option<u64>, description: String, duration_since_epoch: Duration,
359 invoice_expiry_delta_secs: u32, min_final_cltv_expiry_delta: Option<u16>,
360 ) -> Result<Invoice, SignOrCreationError<()>>
362 M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
363 T::Target: BroadcasterInterface,
364 ES::Target: EntropySource,
365 NS::Target: NodeSigner,
366 SP::Target: SignerProvider,
367 F::Target: FeeEstimator,
371 _create_invoice_from_channelmanager_and_duration_since_epoch(
372 channelmanager, node_signer, logger, network, amt_msat,
373 InvoiceDescription::Direct(
374 &Description::new(description).map_err(SignOrCreationError::CreationError)?,
376 duration_since_epoch, invoice_expiry_delta_secs, min_final_cltv_expiry_delta,
380 fn _create_invoice_from_channelmanager_and_duration_since_epoch<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>(
381 channelmanager: &ChannelManager<M, T, ES, NS, SP, F, R, L>, node_signer: NS, logger: L,
382 network: Currency, amt_msat: Option<u64>, description: InvoiceDescription,
383 duration_since_epoch: Duration, invoice_expiry_delta_secs: u32, min_final_cltv_expiry_delta: Option<u16>,
384 ) -> Result<Invoice, SignOrCreationError<()>>
386 M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
387 T::Target: BroadcasterInterface,
388 ES::Target: EntropySource,
389 NS::Target: NodeSigner,
390 SP::Target: SignerProvider,
391 F::Target: FeeEstimator,
395 if min_final_cltv_expiry_delta.is_some() && min_final_cltv_expiry_delta.unwrap().saturating_add(3) < MIN_FINAL_CLTV_EXPIRY_DELTA {
396 return Err(SignOrCreationError::CreationError(CreationError::MinFinalCltvExpiryDeltaTooShort));
399 // `create_inbound_payment` only returns an error if the amount is greater than the total bitcoin
401 let (payment_hash, payment_secret) = channelmanager
402 .create_inbound_payment(amt_msat, invoice_expiry_delta_secs, min_final_cltv_expiry_delta)
403 .map_err(|()| SignOrCreationError::CreationError(CreationError::InvalidAmount))?;
404 _create_invoice_from_channelmanager_and_duration_since_epoch_with_payment_hash(
405 channelmanager, node_signer, logger, network, amt_msat, description, duration_since_epoch,
406 invoice_expiry_delta_secs, payment_hash, payment_secret, min_final_cltv_expiry_delta)
409 /// See [`create_invoice_from_channelmanager_and_duration_since_epoch`]
410 /// This version allows for providing a custom [`PaymentHash`] for the invoice.
411 /// This may be useful if you're building an on-chain swap or involving another protocol where
412 /// the payment hash is also involved outside the scope of lightning.
413 pub fn create_invoice_from_channelmanager_and_duration_since_epoch_with_payment_hash<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>(
414 channelmanager: &ChannelManager<M, T, ES, NS, SP, F, R, L>, node_signer: NS, logger: L,
415 network: Currency, amt_msat: Option<u64>, description: String, duration_since_epoch: Duration,
416 invoice_expiry_delta_secs: u32, payment_hash: PaymentHash, min_final_cltv_expiry_delta: Option<u16>,
417 ) -> Result<Invoice, SignOrCreationError<()>>
419 M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
420 T::Target: BroadcasterInterface,
421 ES::Target: EntropySource,
422 NS::Target: NodeSigner,
423 SP::Target: SignerProvider,
424 F::Target: FeeEstimator,
428 let payment_secret = channelmanager
429 .create_inbound_payment_for_hash(payment_hash, amt_msat, invoice_expiry_delta_secs,
430 min_final_cltv_expiry_delta)
431 .map_err(|()| SignOrCreationError::CreationError(CreationError::InvalidAmount))?;
432 _create_invoice_from_channelmanager_and_duration_since_epoch_with_payment_hash(
433 channelmanager, node_signer, logger, network, amt_msat,
434 InvoiceDescription::Direct(
435 &Description::new(description).map_err(SignOrCreationError::CreationError)?,
437 duration_since_epoch, invoice_expiry_delta_secs, payment_hash, payment_secret,
438 min_final_cltv_expiry_delta,
442 fn _create_invoice_from_channelmanager_and_duration_since_epoch_with_payment_hash<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>(
443 channelmanager: &ChannelManager<M, T, ES, NS, SP, F, R, L>, node_signer: NS, logger: L,
444 network: Currency, amt_msat: Option<u64>, description: InvoiceDescription, duration_since_epoch: Duration,
445 invoice_expiry_delta_secs: u32, payment_hash: PaymentHash, payment_secret: PaymentSecret,
446 min_final_cltv_expiry_delta: Option<u16>,
447 ) -> Result<Invoice, SignOrCreationError<()>>
449 M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
450 T::Target: BroadcasterInterface,
451 ES::Target: EntropySource,
452 NS::Target: NodeSigner,
453 SP::Target: SignerProvider,
454 F::Target: FeeEstimator,
458 let our_node_pubkey = channelmanager.get_our_node_id();
459 let channels = channelmanager.list_channels();
461 if min_final_cltv_expiry_delta.is_some() && min_final_cltv_expiry_delta.unwrap().saturating_add(3) < MIN_FINAL_CLTV_EXPIRY_DELTA {
462 return Err(SignOrCreationError::CreationError(CreationError::MinFinalCltvExpiryDeltaTooShort));
465 log_trace!(logger, "Creating invoice with payment hash {}", log_bytes!(payment_hash.0));
467 let invoice = match description {
468 InvoiceDescription::Direct(description) => {
469 InvoiceBuilder::new(network).description(description.0.clone())
471 InvoiceDescription::Hash(hash) => InvoiceBuilder::new(network).description_hash(hash.0),
474 let mut invoice = invoice
475 .duration_since_epoch(duration_since_epoch)
476 .payee_pub_key(our_node_pubkey)
477 .payment_hash(Hash::from_slice(&payment_hash.0).unwrap())
478 .payment_secret(payment_secret)
480 .min_final_cltv_expiry_delta(
481 // Add a buffer of 3 to the delta if present, otherwise use LDK's minimum.
482 min_final_cltv_expiry_delta.map(|x| x.saturating_add(3)).unwrap_or(MIN_FINAL_CLTV_EXPIRY_DELTA).into())
483 .expiry_time(Duration::from_secs(invoice_expiry_delta_secs.into()));
484 if let Some(amt) = amt_msat {
485 invoice = invoice.amount_milli_satoshis(amt);
488 let route_hints = filter_channels(channels, amt_msat, &logger);
489 for hint in route_hints {
490 invoice = invoice.private_route(hint);
493 let raw_invoice = match invoice.build_raw() {
495 Err(e) => return Err(SignOrCreationError::CreationError(e))
497 let hrp_str = raw_invoice.hrp.to_string();
498 let hrp_bytes = hrp_str.as_bytes();
499 let data_without_signature = raw_invoice.data.to_base32();
500 let signed_raw_invoice = raw_invoice.sign(|_| node_signer.sign_invoice(hrp_bytes, &data_without_signature, Recipient::Node));
501 match signed_raw_invoice {
502 Ok(inv) => Ok(Invoice::from_signed(inv).unwrap()),
503 Err(e) => Err(SignOrCreationError::SignError(e))
507 /// Filters the `channels` for an invoice, and returns the corresponding `RouteHint`s to include
510 /// The filtering is based on the following criteria:
511 /// * Only one channel per counterparty node
512 /// * Always select the channel with the highest inbound capacity per counterparty node
513 /// * Prefer channels with capacity at least `min_inbound_capacity_msat` and where the channel
514 /// `is_usable` (i.e. the peer is connected).
515 /// * If any public channel exists, the returned `RouteHint`s will be empty, and the sender will
516 /// need to find the path by looking at the public channels instead
517 fn filter_channels<L: Deref>(
518 channels: Vec<ChannelDetails>, min_inbound_capacity_msat: Option<u64>, logger: &L
519 ) -> Vec<RouteHint> where L::Target: Logger {
520 let mut filtered_channels: HashMap<PublicKey, ChannelDetails> = HashMap::new();
521 let min_inbound_capacity = min_inbound_capacity_msat.unwrap_or(0);
522 let mut min_capacity_channel_exists = false;
523 let mut online_channel_exists = false;
524 let mut online_min_capacity_channel_exists = false;
526 log_trace!(logger, "Considering {} channels for invoice route hints", channels.len());
527 for channel in channels.into_iter().filter(|chan| chan.is_channel_ready) {
528 if channel.get_inbound_payment_scid().is_none() || channel.counterparty.forwarding_info.is_none() {
529 log_trace!(logger, "Ignoring channel {} for invoice route hints", log_bytes!(channel.channel_id));
533 if channel.is_public {
534 // If any public channel exists, return no hints and let the sender
535 // look at the public channels instead.
536 log_trace!(logger, "Not including channels in invoice route hints on account of public channel {}",
537 log_bytes!(channel.channel_id));
541 if channel.inbound_capacity_msat >= min_inbound_capacity {
542 if !min_capacity_channel_exists {
543 log_trace!(logger, "Channel with enough inbound capacity exists for invoice route hints");
544 min_capacity_channel_exists = true;
547 if channel.is_usable {
548 online_min_capacity_channel_exists = true;
552 if channel.is_usable {
553 if !online_channel_exists {
554 log_trace!(logger, "Channel with connected peer exists for invoice route hints");
555 online_channel_exists = true;
559 match filtered_channels.entry(channel.counterparty.node_id) {
560 hash_map::Entry::Occupied(mut entry) => {
561 let current_max_capacity = entry.get().inbound_capacity_msat;
562 if channel.inbound_capacity_msat < current_max_capacity {
564 "Preferring counterparty {} channel {} ({} msats) over {} ({} msats) for invoice route hints",
565 log_pubkey!(channel.counterparty.node_id),
566 log_bytes!(entry.get().channel_id), current_max_capacity,
567 log_bytes!(channel.channel_id), channel.inbound_capacity_msat);
571 "Preferring counterparty {} channel {} ({} msats) over {} ({} msats) for invoice route hints",
572 log_pubkey!(channel.counterparty.node_id),
573 log_bytes!(channel.channel_id), channel.inbound_capacity_msat,
574 log_bytes!(entry.get().channel_id), current_max_capacity);
575 entry.insert(channel);
577 hash_map::Entry::Vacant(entry) => {
578 entry.insert(channel);
583 let route_hint_from_channel = |channel: ChannelDetails| {
584 let forwarding_info = channel.counterparty.forwarding_info.as_ref().unwrap();
585 RouteHint(vec![RouteHintHop {
586 src_node_id: channel.counterparty.node_id,
587 short_channel_id: channel.get_inbound_payment_scid().unwrap(),
589 base_msat: forwarding_info.fee_base_msat,
590 proportional_millionths: forwarding_info.fee_proportional_millionths,
592 cltv_expiry_delta: forwarding_info.cltv_expiry_delta,
593 htlc_minimum_msat: channel.inbound_htlc_minimum_msat,
594 htlc_maximum_msat: channel.inbound_htlc_maximum_msat,}])
596 // If all channels are private, prefer to return route hints which have a higher capacity than
597 // the payment value and where we're currently connected to the channel counterparty.
598 // Even if we cannot satisfy both goals, always ensure we include *some* hints, preferring
599 // those which meet at least one criteria.
602 .map(|(_, channel)| channel)
604 let has_enough_capacity = channel.inbound_capacity_msat >= min_inbound_capacity;
605 let include_channel = if online_min_capacity_channel_exists {
606 has_enough_capacity && channel.is_usable
607 } else if min_capacity_channel_exists && online_channel_exists {
608 // If there are some online channels and some min_capacity channels, but no
609 // online-and-min_capacity channels, just include the min capacity ones and ignore
612 } else if min_capacity_channel_exists {
614 } else if online_channel_exists {
619 log_trace!(logger, "Including channel {} in invoice route hints",
620 log_bytes!(channel.channel_id));
621 } else if !has_enough_capacity {
622 log_trace!(logger, "Ignoring channel {} without enough capacity for invoice route hints",
623 log_bytes!(channel.channel_id));
625 debug_assert!(!channel.is_usable);
626 log_trace!(logger, "Ignoring channel {} with disconnected peer",
627 log_bytes!(channel.channel_id));
632 .map(route_hint_from_channel)
633 .collect::<Vec<RouteHint>>()
638 use core::time::Duration;
639 use crate::{Currency, Description, InvoiceDescription, SignOrCreationError, CreationError};
640 use bitcoin_hashes::{Hash, sha256};
641 use bitcoin_hashes::sha256::Hash as Sha256;
642 use lightning::chain::keysinterface::{EntropySource, PhantomKeysManager};
643 use lightning::ln::{PaymentPreimage, PaymentHash};
644 use lightning::ln::channelmanager::{PhantomRouteHints, MIN_FINAL_CLTV_EXPIRY_DELTA, PaymentId};
645 use lightning::ln::functional_test_utils::*;
646 use lightning::ln::msgs::ChannelMessageHandler;
647 use lightning::routing::router::{PaymentParameters, RouteParameters, find_route};
648 use lightning::util::events::{MessageSendEvent, MessageSendEventsProvider, Event};
649 use lightning::util::test_utils;
650 use lightning::util::config::UserConfig;
651 use crate::utils::create_invoice_from_channelmanager_and_duration_since_epoch;
652 use std::collections::HashSet;
655 fn test_from_channelmanager() {
656 let chanmon_cfgs = create_chanmon_cfgs(2);
657 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
658 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
659 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
660 create_unannounced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001);
661 let non_default_invoice_expiry_secs = 4200;
662 let invoice = create_invoice_from_channelmanager_and_duration_since_epoch(
663 &nodes[1].node, nodes[1].keys_manager, nodes[1].logger, Currency::BitcoinTestnet,
664 Some(10_000), "test".to_string(), Duration::from_secs(1234567),
665 non_default_invoice_expiry_secs, None).unwrap();
666 assert_eq!(invoice.amount_pico_btc(), Some(100_000));
667 // If no `min_final_cltv_expiry_delta` is specified, then it should be `MIN_FINAL_CLTV_EXPIRY_DELTA`.
668 assert_eq!(invoice.min_final_cltv_expiry_delta(), MIN_FINAL_CLTV_EXPIRY_DELTA as u64);
669 assert_eq!(invoice.description(), InvoiceDescription::Direct(&Description("test".to_string())));
670 assert_eq!(invoice.expiry_time(), Duration::from_secs(non_default_invoice_expiry_secs.into()));
672 // Invoice SCIDs should always use inbound SCID aliases over the real channel ID, if one is
674 let chan = &nodes[1].node.list_usable_channels()[0];
675 assert_eq!(invoice.route_hints().len(), 1);
676 assert_eq!(invoice.route_hints()[0].0.len(), 1);
677 assert_eq!(invoice.route_hints()[0].0[0].short_channel_id, chan.inbound_scid_alias.unwrap());
679 assert_eq!(invoice.route_hints()[0].0[0].htlc_minimum_msat, chan.inbound_htlc_minimum_msat);
680 assert_eq!(invoice.route_hints()[0].0[0].htlc_maximum_msat, chan.inbound_htlc_maximum_msat);
682 let payment_params = PaymentParameters::from_node_id(invoice.recover_payee_pub_key(),
683 invoice.min_final_cltv_expiry_delta() as u32)
684 .with_features(invoice.features().unwrap().clone())
685 .with_route_hints(invoice.route_hints());
686 let route_params = RouteParameters {
688 final_value_msat: invoice.amount_milli_satoshis().unwrap(),
689 final_cltv_expiry_delta: invoice.min_final_cltv_expiry_delta() as u32,
691 let first_hops = nodes[0].node.list_usable_channels();
692 let network_graph = &node_cfgs[0].network_graph;
693 let logger = test_utils::TestLogger::new();
694 let scorer = test_utils::TestScorer::new();
695 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
696 let route = find_route(
697 &nodes[0].node.get_our_node_id(), &route_params, &network_graph,
698 Some(&first_hops.iter().collect::<Vec<_>>()), &logger, &scorer, &random_seed_bytes
701 let payment_event = {
702 let mut payment_hash = PaymentHash([0; 32]);
703 payment_hash.0.copy_from_slice(&invoice.payment_hash().as_ref()[0..32]);
704 nodes[0].node.send_payment(&route, payment_hash, &Some(invoice.payment_secret().clone()), PaymentId(payment_hash.0)).unwrap();
705 let mut added_monitors = nodes[0].chain_monitor.added_monitors.lock().unwrap();
706 assert_eq!(added_monitors.len(), 1);
707 added_monitors.clear();
709 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
710 assert_eq!(events.len(), 1);
711 SendEvent::from_event(events.remove(0))
714 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
715 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &payment_event.commitment_msg);
716 let mut added_monitors = nodes[1].chain_monitor.added_monitors.lock().unwrap();
717 assert_eq!(added_monitors.len(), 1);
718 added_monitors.clear();
719 let events = nodes[1].node.get_and_clear_pending_msg_events();
720 assert_eq!(events.len(), 2);
723 fn do_create_invoice_min_final_cltv_delta(with_custom_delta: bool) {
724 let chanmon_cfgs = create_chanmon_cfgs(2);
725 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
726 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
727 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
728 let custom_min_final_cltv_expiry_delta = Some(50);
730 let invoice = crate::utils::create_invoice_from_channelmanager_and_duration_since_epoch(
731 &nodes[1].node, nodes[1].keys_manager, nodes[1].logger, Currency::BitcoinTestnet,
732 Some(10_000), "".into(), Duration::from_secs(1234567), 3600,
733 if with_custom_delta { custom_min_final_cltv_expiry_delta } else { None },
735 assert_eq!(invoice.min_final_cltv_expiry_delta(), if with_custom_delta {
736 custom_min_final_cltv_expiry_delta.unwrap() + 3 /* Buffer */} else { MIN_FINAL_CLTV_EXPIRY_DELTA } as u64);
740 fn test_create_invoice_custom_min_final_cltv_delta() {
741 do_create_invoice_min_final_cltv_delta(true);
742 do_create_invoice_min_final_cltv_delta(false);
746 fn create_invoice_min_final_cltv_delta_equals_htlc_fail_buffer() {
747 let chanmon_cfgs = create_chanmon_cfgs(2);
748 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
749 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
750 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
751 let custom_min_final_cltv_expiry_delta = Some(21);
753 let invoice = crate::utils::create_invoice_from_channelmanager_and_duration_since_epoch(
754 &nodes[1].node, nodes[1].keys_manager, nodes[1].logger, Currency::BitcoinTestnet,
755 Some(10_000), "".into(), Duration::from_secs(1234567), 3600,
756 custom_min_final_cltv_expiry_delta,
758 assert_eq!(invoice.min_final_cltv_expiry_delta(), MIN_FINAL_CLTV_EXPIRY_DELTA as u64);
762 fn test_create_invoice_with_description_hash() {
763 let chanmon_cfgs = create_chanmon_cfgs(2);
764 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
765 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
766 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
767 let description_hash = crate::Sha256(Hash::hash("Testing description_hash".as_bytes()));
768 let invoice = crate::utils::create_invoice_from_channelmanager_with_description_hash_and_duration_since_epoch(
769 &nodes[1].node, nodes[1].keys_manager, nodes[1].logger, Currency::BitcoinTestnet,
770 Some(10_000), description_hash, Duration::from_secs(1234567), 3600, None,
772 assert_eq!(invoice.amount_pico_btc(), Some(100_000));
773 assert_eq!(invoice.min_final_cltv_expiry_delta(), MIN_FINAL_CLTV_EXPIRY_DELTA as u64);
774 assert_eq!(invoice.description(), InvoiceDescription::Hash(&crate::Sha256(Sha256::hash("Testing description_hash".as_bytes()))));
778 fn test_create_invoice_from_channelmanager_and_duration_since_epoch_with_payment_hash() {
779 let chanmon_cfgs = create_chanmon_cfgs(2);
780 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
781 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
782 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
783 let payment_hash = PaymentHash([0; 32]);
784 let invoice = crate::utils::create_invoice_from_channelmanager_and_duration_since_epoch_with_payment_hash(
785 &nodes[1].node, nodes[1].keys_manager, nodes[1].logger, Currency::BitcoinTestnet,
786 Some(10_000), "test".to_string(), Duration::from_secs(1234567), 3600,
789 assert_eq!(invoice.amount_pico_btc(), Some(100_000));
790 assert_eq!(invoice.min_final_cltv_expiry_delta(), MIN_FINAL_CLTV_EXPIRY_DELTA as u64);
791 assert_eq!(invoice.description(), InvoiceDescription::Direct(&Description("test".to_string())));
792 assert_eq!(invoice.payment_hash(), &sha256::Hash::from_slice(&payment_hash.0[..]).unwrap());
796 fn test_hints_includes_single_channels_to_nodes() {
797 let chanmon_cfgs = create_chanmon_cfgs(3);
798 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
799 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
800 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
802 let chan_1_0 = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 0, 100000, 10001);
803 let chan_2_0 = create_unannounced_chan_between_nodes_with_value(&nodes, 2, 0, 100000, 10001);
805 let mut scid_aliases = HashSet::new();
806 scid_aliases.insert(chan_1_0.0.short_channel_id_alias.unwrap());
807 scid_aliases.insert(chan_2_0.0.short_channel_id_alias.unwrap());
809 match_invoice_routes(Some(5000), &nodes[0], scid_aliases);
813 fn test_hints_has_only_highest_inbound_capacity_channel() {
814 let chanmon_cfgs = create_chanmon_cfgs(2);
815 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
816 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
817 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
818 let _chan_1_0_low_inbound_capacity = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 0, 100_000, 0);
819 let chan_1_0_high_inbound_capacity = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 0, 10_000_000, 0);
820 let _chan_1_0_medium_inbound_capacity = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 0, 1_000_000, 0);
821 let mut scid_aliases = HashSet::new();
822 scid_aliases.insert(chan_1_0_high_inbound_capacity.0.short_channel_id_alias.unwrap());
823 match_invoice_routes(Some(5000), &nodes[0], scid_aliases);
827 fn test_hints_has_only_online_channels() {
828 let chanmon_cfgs = create_chanmon_cfgs(4);
829 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
830 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
831 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
832 let chan_a = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 0, 10_000_000, 0);
833 let chan_b = create_unannounced_chan_between_nodes_with_value(&nodes, 2, 0, 10_000_000, 0);
834 let _chan_c = create_unannounced_chan_between_nodes_with_value(&nodes, 3, 0, 1_000_000, 0);
836 // With all peers connected we should get all hints that have sufficient value
837 let mut scid_aliases = HashSet::new();
838 scid_aliases.insert(chan_a.0.short_channel_id_alias.unwrap());
839 scid_aliases.insert(chan_b.0.short_channel_id_alias.unwrap());
841 match_invoice_routes(Some(1_000_000_000), &nodes[0], scid_aliases.clone());
843 // With only one sufficient-value peer connected we should only get its hint
844 scid_aliases.remove(&chan_b.0.short_channel_id_alias.unwrap());
845 nodes[0].node.peer_disconnected(&nodes[2].node.get_our_node_id());
846 match_invoice_routes(Some(1_000_000_000), &nodes[0], scid_aliases.clone());
848 // If we don't have any sufficient-value peers connected we should get all hints with
849 // sufficient value, even though there is a connected insufficient-value peer.
850 scid_aliases.insert(chan_b.0.short_channel_id_alias.unwrap());
851 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
852 match_invoice_routes(Some(1_000_000_000), &nodes[0], scid_aliases);
856 fn test_forwarding_info_not_assigned_channel_excluded_from_hints() {
857 let chanmon_cfgs = create_chanmon_cfgs(3);
858 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
859 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
860 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
861 let chan_1_0 = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 0, 100000, 10001);
863 // Create an unannonced channel between `nodes[2]` and `nodes[0]`, for which the
864 // `msgs::ChannelUpdate` is never handled for the node(s). As the `msgs::ChannelUpdate`
865 // is never handled, the `channel.counterparty.forwarding_info` is never assigned.
866 let mut private_chan_cfg = UserConfig::default();
867 private_chan_cfg.channel_handshake_config.announced_channel = false;
868 let temporary_channel_id = nodes[2].node.create_channel(nodes[0].node.get_our_node_id(), 1_000_000, 500_000_000, 42, Some(private_chan_cfg)).unwrap();
869 let open_channel = get_event_msg!(nodes[2], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
870 nodes[0].node.handle_open_channel(&nodes[2].node.get_our_node_id(), &open_channel);
871 let accept_channel = get_event_msg!(nodes[0], MessageSendEvent::SendAcceptChannel, nodes[2].node.get_our_node_id());
872 nodes[2].node.handle_accept_channel(&nodes[0].node.get_our_node_id(), &accept_channel);
874 let tx = sign_funding_transaction(&nodes[2], &nodes[0], 1_000_000, temporary_channel_id);
876 let conf_height = core::cmp::max(nodes[2].best_block_info().1 + 1, nodes[0].best_block_info().1 + 1);
877 confirm_transaction_at(&nodes[2], &tx, conf_height);
878 connect_blocks(&nodes[2], CHAN_CONFIRM_DEPTH - 1);
879 confirm_transaction_at(&nodes[0], &tx, conf_height);
880 connect_blocks(&nodes[0], CHAN_CONFIRM_DEPTH - 1);
881 let as_channel_ready = get_event_msg!(nodes[2], MessageSendEvent::SendChannelReady, nodes[0].node.get_our_node_id());
882 nodes[2].node.handle_channel_ready(&nodes[0].node.get_our_node_id(), &get_event_msg!(nodes[0], MessageSendEvent::SendChannelReady, nodes[2].node.get_our_node_id()));
883 get_event_msg!(nodes[2], MessageSendEvent::SendChannelUpdate, nodes[0].node.get_our_node_id());
884 nodes[0].node.handle_channel_ready(&nodes[2].node.get_our_node_id(), &as_channel_ready);
885 get_event_msg!(nodes[0], MessageSendEvent::SendChannelUpdate, nodes[2].node.get_our_node_id());
886 expect_channel_ready_event(&nodes[0], &nodes[2].node.get_our_node_id());
887 expect_channel_ready_event(&nodes[2], &nodes[0].node.get_our_node_id());
889 // As `msgs::ChannelUpdate` was never handled for the participating node(s) of the second
890 // channel, the channel will never be assigned any `counterparty.forwarding_info`.
891 // Therefore only `chan_1_0` should be included in the hints.
892 let mut scid_aliases = HashSet::new();
893 scid_aliases.insert(chan_1_0.0.short_channel_id_alias.unwrap());
894 match_invoice_routes(Some(5000), &nodes[0], scid_aliases);
898 fn test_no_hints_if_a_mix_between_public_and_private_channel_exists() {
899 let chanmon_cfgs = create_chanmon_cfgs(3);
900 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
901 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
902 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
903 let _chan_1_0 = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 0, 100000, 10001);
905 let chan_2_0 = create_announced_chan_between_nodes_with_value(&nodes, 2, 0, 100000, 10001);
906 nodes[2].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &chan_2_0.1);
907 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan_2_0.0);
909 // Ensure that the invoice doesn't include any route hints for any of `nodes[0]` channels,
910 // even though all channels between `nodes[1]` and `nodes[0]` are private, as there is a
911 // public channel between `nodes[2]` and `nodes[0]`
912 match_invoice_routes(Some(5000), &nodes[0], HashSet::new());
916 fn test_only_public_channels_includes_no_channels_in_hints() {
917 let chanmon_cfgs = create_chanmon_cfgs(3);
918 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
919 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
920 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
921 let chan_1_0 = create_announced_chan_between_nodes_with_value(&nodes, 1, 0, 100000, 10001);
922 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan_1_0.0);
923 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &chan_1_0.1);
925 let chan_2_0 = create_announced_chan_between_nodes_with_value(&nodes, 2, 0, 100000, 10001);
926 nodes[2].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &chan_2_0.1);
927 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan_2_0.0);
929 // As all of `nodes[0]` channels are public, no channels should be included in the hints
930 match_invoice_routes(Some(5000), &nodes[0], HashSet::new());
934 fn test_channels_with_lower_inbound_capacity_than_invoice_amt_hints_filtering() {
935 let chanmon_cfgs = create_chanmon_cfgs(3);
936 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
937 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
938 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
939 let chan_1_0 = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 0, 100_000, 0);
940 let chan_2_0 = create_unannounced_chan_between_nodes_with_value(&nodes, 2, 0, 1_000_000, 0);
942 // As the invoice amt is 1 msat above chan_1_0's inbound capacity, it shouldn't be included
943 let mut scid_aliases_99_000_001_msat = HashSet::new();
944 scid_aliases_99_000_001_msat.insert(chan_2_0.0.short_channel_id_alias.unwrap());
946 match_invoice_routes(Some(99_000_001), &nodes[0], scid_aliases_99_000_001_msat);
948 // As the invoice amt is exactly at chan_1_0's inbound capacity, it should be included
949 let mut scid_aliases_99_000_000_msat = HashSet::new();
950 scid_aliases_99_000_000_msat.insert(chan_1_0.0.short_channel_id_alias.unwrap());
951 scid_aliases_99_000_000_msat.insert(chan_2_0.0.short_channel_id_alias.unwrap());
953 match_invoice_routes(Some(99_000_000), &nodes[0], scid_aliases_99_000_000_msat);
955 // As the invoice amt is above all channels' inbound capacity, they will still be included
956 let mut scid_aliases_2_000_000_000_msat = HashSet::new();
957 scid_aliases_2_000_000_000_msat.insert(chan_1_0.0.short_channel_id_alias.unwrap());
958 scid_aliases_2_000_000_000_msat.insert(chan_2_0.0.short_channel_id_alias.unwrap());
960 match_invoice_routes(Some(2_000_000_000), &nodes[0], scid_aliases_2_000_000_000_msat);
962 // An invoice with no specified amount should include all channels in the route hints.
963 let mut scid_aliases_no_specified_amount = HashSet::new();
964 scid_aliases_no_specified_amount.insert(chan_1_0.0.short_channel_id_alias.unwrap());
965 scid_aliases_no_specified_amount.insert(chan_2_0.0.short_channel_id_alias.unwrap());
967 match_invoice_routes(None, &nodes[0], scid_aliases_no_specified_amount);
970 fn match_invoice_routes<'a, 'b: 'a, 'c: 'b>(
971 invoice_amt: Option<u64>,
972 invoice_node: &Node<'a, 'b, 'c>,
973 mut chan_ids_to_match: HashSet<u64>
975 let invoice = create_invoice_from_channelmanager_and_duration_since_epoch(
976 &invoice_node.node, invoice_node.keys_manager, invoice_node.logger,
977 Currency::BitcoinTestnet, invoice_amt, "test".to_string(), Duration::from_secs(1234567),
978 3600, None).unwrap();
979 let hints = invoice.private_routes();
982 let hint_short_chan_id = (hint.0).0[0].short_channel_id;
983 assert!(chan_ids_to_match.remove(&hint_short_chan_id));
985 assert!(chan_ids_to_match.is_empty(), "Unmatched short channel ids: {:?}", chan_ids_to_match);
989 #[cfg(feature = "std")]
990 fn test_multi_node_receive() {
991 do_test_multi_node_receive(true);
992 do_test_multi_node_receive(false);
995 #[cfg(feature = "std")]
996 fn do_test_multi_node_receive(user_generated_pmt_hash: bool) {
997 let mut chanmon_cfgs = create_chanmon_cfgs(3);
998 let seed_1 = [42 as u8; 32];
999 let seed_2 = [43 as u8; 32];
1000 let cross_node_seed = [44 as u8; 32];
1001 chanmon_cfgs[1].keys_manager.backing = PhantomKeysManager::new(&seed_1, 43, 44, &cross_node_seed);
1002 chanmon_cfgs[2].keys_manager.backing = PhantomKeysManager::new(&seed_2, 43, 44, &cross_node_seed);
1003 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
1004 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
1005 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
1006 let chan_0_1 = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001);
1007 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan_0_1.1);
1008 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &chan_0_1.0);
1009 let chan_0_2 = create_announced_chan_between_nodes_with_value(&nodes, 0, 2, 100000, 10001);
1010 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan_0_2.1);
1011 nodes[2].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &chan_0_2.0);
1013 let payment_amt = 10_000;
1014 let route_hints = vec![
1015 nodes[1].node.get_phantom_route_hints(),
1016 nodes[2].node.get_phantom_route_hints(),
1019 let user_payment_preimage = PaymentPreimage([1; 32]);
1020 let payment_hash = if user_generated_pmt_hash {
1021 Some(PaymentHash(Sha256::hash(&user_payment_preimage.0[..]).into_inner()))
1025 let non_default_invoice_expiry_secs = 4200;
1028 crate::utils::create_phantom_invoice::<&test_utils::TestKeysInterface, &test_utils::TestKeysInterface, &test_utils::TestLogger>(
1029 Some(payment_amt), payment_hash, "test".to_string(), non_default_invoice_expiry_secs,
1030 route_hints, &nodes[1].keys_manager, &nodes[1].keys_manager, &nodes[1].logger,
1031 Currency::BitcoinTestnet, None, Duration::from_secs(1234567)
1033 let (payment_hash, payment_secret) = (PaymentHash(invoice.payment_hash().into_inner()), *invoice.payment_secret());
1034 let payment_preimage = if user_generated_pmt_hash {
1035 user_payment_preimage
1037 nodes[1].node.get_payment_preimage(payment_hash, payment_secret).unwrap()
1040 assert_eq!(invoice.min_final_cltv_expiry_delta(), MIN_FINAL_CLTV_EXPIRY_DELTA as u64);
1041 assert_eq!(invoice.description(), InvoiceDescription::Direct(&Description("test".to_string())));
1042 assert_eq!(invoice.route_hints().len(), 2);
1043 assert_eq!(invoice.expiry_time(), Duration::from_secs(non_default_invoice_expiry_secs.into()));
1044 assert!(!invoice.features().unwrap().supports_basic_mpp());
1046 let payment_params = PaymentParameters::from_node_id(invoice.recover_payee_pub_key(),
1047 invoice.min_final_cltv_expiry_delta() as u32)
1048 .with_features(invoice.features().unwrap().clone())
1049 .with_route_hints(invoice.route_hints());
1050 let params = RouteParameters {
1052 final_value_msat: invoice.amount_milli_satoshis().unwrap(),
1053 final_cltv_expiry_delta: invoice.min_final_cltv_expiry_delta() as u32,
1055 let first_hops = nodes[0].node.list_usable_channels();
1056 let network_graph = &node_cfgs[0].network_graph;
1057 let logger = test_utils::TestLogger::new();
1058 let scorer = test_utils::TestScorer::new();
1059 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
1060 let route = find_route(
1061 &nodes[0].node.get_our_node_id(), ¶ms, &network_graph,
1062 Some(&first_hops.iter().collect::<Vec<_>>()), &logger, &scorer, &random_seed_bytes
1064 let (payment_event, fwd_idx) = {
1065 let mut payment_hash = PaymentHash([0; 32]);
1066 payment_hash.0.copy_from_slice(&invoice.payment_hash().as_ref()[0..32]);
1067 nodes[0].node.send_payment(&route, payment_hash, &Some(invoice.payment_secret().clone()), PaymentId(payment_hash.0)).unwrap();
1068 let mut added_monitors = nodes[0].chain_monitor.added_monitors.lock().unwrap();
1069 assert_eq!(added_monitors.len(), 1);
1070 added_monitors.clear();
1072 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
1073 assert_eq!(events.len(), 1);
1074 let fwd_idx = match events[0] {
1075 MessageSendEvent::UpdateHTLCs { node_id, .. } => {
1076 if node_id == nodes[1].node.get_our_node_id() {
1080 _ => panic!("Unexpected event")
1082 (SendEvent::from_event(events.remove(0)), fwd_idx)
1084 nodes[fwd_idx].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
1085 commitment_signed_dance!(nodes[fwd_idx], nodes[0], &payment_event.commitment_msg, false, true);
1087 // Note that we have to "forward pending HTLCs" twice before we see the PaymentClaimable as
1088 // this "emulates" the payment taking two hops, providing some privacy to make phantom node
1089 // payments "look real" by taking more time.
1090 expect_pending_htlcs_forwardable_ignore!(nodes[fwd_idx]);
1091 nodes[fwd_idx].node.process_pending_htlc_forwards();
1092 expect_pending_htlcs_forwardable_ignore!(nodes[fwd_idx]);
1093 nodes[fwd_idx].node.process_pending_htlc_forwards();
1095 let payment_preimage_opt = if user_generated_pmt_hash { None } else { Some(payment_preimage) };
1096 expect_payment_claimable!(&nodes[fwd_idx], payment_hash, payment_secret, payment_amt, payment_preimage_opt, route.paths[0].last().unwrap().pubkey);
1097 do_claim_payment_along_route(&nodes[0], &vec!(&vec!(&nodes[fwd_idx])[..]), false, payment_preimage);
1098 let events = nodes[0].node.get_and_clear_pending_events();
1099 assert_eq!(events.len(), 2);
1101 Event::PaymentSent { payment_preimage: ref ev_preimage, payment_hash: ref ev_hash, ref fee_paid_msat, .. } => {
1102 assert_eq!(payment_preimage, *ev_preimage);
1103 assert_eq!(payment_hash, *ev_hash);
1104 assert_eq!(fee_paid_msat, &Some(0));
1106 _ => panic!("Unexpected event")
1109 Event::PaymentPathSuccessful { payment_hash: hash, .. } => {
1110 assert_eq!(hash, Some(payment_hash));
1112 _ => panic!("Unexpected event")
1117 #[cfg(feature = "std")]
1118 fn test_multi_node_hints_has_htlc_min_max_values() {
1119 let mut chanmon_cfgs = create_chanmon_cfgs(3);
1120 let seed_1 = [42 as u8; 32];
1121 let seed_2 = [43 as u8; 32];
1122 let cross_node_seed = [44 as u8; 32];
1123 chanmon_cfgs[1].keys_manager.backing = PhantomKeysManager::new(&seed_1, 43, 44, &cross_node_seed);
1124 chanmon_cfgs[2].keys_manager.backing = PhantomKeysManager::new(&seed_2, 43, 44, &cross_node_seed);
1125 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
1126 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
1127 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
1129 create_unannounced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001);
1130 create_unannounced_chan_between_nodes_with_value(&nodes, 0, 2, 100000, 10001);
1132 let payment_amt = 20_000;
1133 let (payment_hash, _payment_secret) = nodes[1].node.create_inbound_payment(Some(payment_amt), 3600, None).unwrap();
1134 let route_hints = vec![
1135 nodes[1].node.get_phantom_route_hints(),
1136 nodes[2].node.get_phantom_route_hints(),
1139 let invoice = crate::utils::create_phantom_invoice::<&test_utils::TestKeysInterface,
1140 &test_utils::TestKeysInterface, &test_utils::TestLogger>(Some(payment_amt), Some(payment_hash),
1141 "test".to_string(), 3600, route_hints, &nodes[1].keys_manager, &nodes[1].keys_manager,
1142 &nodes[1].logger, Currency::BitcoinTestnet, None, Duration::from_secs(1234567)).unwrap();
1144 let chan_0_1 = &nodes[1].node.list_usable_channels()[0];
1145 assert_eq!(invoice.route_hints()[0].0[0].htlc_minimum_msat, chan_0_1.inbound_htlc_minimum_msat);
1146 assert_eq!(invoice.route_hints()[0].0[0].htlc_maximum_msat, chan_0_1.inbound_htlc_maximum_msat);
1148 let chan_0_2 = &nodes[2].node.list_usable_channels()[0];
1149 assert_eq!(invoice.route_hints()[1].0[0].htlc_minimum_msat, chan_0_2.inbound_htlc_minimum_msat);
1150 assert_eq!(invoice.route_hints()[1].0[0].htlc_maximum_msat, chan_0_2.inbound_htlc_maximum_msat);
1154 #[cfg(feature = "std")]
1155 fn create_phantom_invoice_with_description_hash() {
1156 let chanmon_cfgs = create_chanmon_cfgs(3);
1157 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
1158 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
1159 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
1161 let payment_amt = 20_000;
1162 let route_hints = vec![
1163 nodes[1].node.get_phantom_route_hints(),
1164 nodes[2].node.get_phantom_route_hints(),
1167 let description_hash = crate::Sha256(Hash::hash("Description hash phantom invoice".as_bytes()));
1168 let non_default_invoice_expiry_secs = 4200;
1169 let invoice = crate::utils::create_phantom_invoice_with_description_hash::<
1170 &test_utils::TestKeysInterface, &test_utils::TestKeysInterface, &test_utils::TestLogger,
1172 Some(payment_amt), None, non_default_invoice_expiry_secs, description_hash,
1173 route_hints, &nodes[1].keys_manager, &nodes[1].keys_manager, &nodes[1].logger,
1174 Currency::BitcoinTestnet, None, Duration::from_secs(1234567),
1177 assert_eq!(invoice.amount_pico_btc(), Some(200_000));
1178 assert_eq!(invoice.min_final_cltv_expiry_delta(), MIN_FINAL_CLTV_EXPIRY_DELTA as u64);
1179 assert_eq!(invoice.expiry_time(), Duration::from_secs(non_default_invoice_expiry_secs.into()));
1180 assert_eq!(invoice.description(), InvoiceDescription::Hash(&crate::Sha256(Sha256::hash("Description hash phantom invoice".as_bytes()))));
1184 #[cfg(feature = "std")]
1185 fn create_phantom_invoice_with_custom_payment_hash_and_custom_min_final_cltv_delta() {
1186 let chanmon_cfgs = create_chanmon_cfgs(3);
1187 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
1188 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
1189 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
1191 let payment_amt = 20_000;
1192 let route_hints = vec![
1193 nodes[1].node.get_phantom_route_hints(),
1194 nodes[2].node.get_phantom_route_hints(),
1196 let user_payment_preimage = PaymentPreimage([1; 32]);
1197 let payment_hash = Some(PaymentHash(Sha256::hash(&user_payment_preimage.0[..]).into_inner()));
1198 let non_default_invoice_expiry_secs = 4200;
1199 let min_final_cltv_expiry_delta = Some(100);
1200 let duration_since_epoch = Duration::from_secs(1234567);
1201 let invoice = crate::utils::create_phantom_invoice::<&test_utils::TestKeysInterface,
1202 &test_utils::TestKeysInterface, &test_utils::TestLogger>(Some(payment_amt), payment_hash,
1203 "".to_string(), non_default_invoice_expiry_secs, route_hints, &nodes[1].keys_manager, &nodes[1].keys_manager,
1204 &nodes[1].logger, Currency::BitcoinTestnet, min_final_cltv_expiry_delta, duration_since_epoch).unwrap();
1205 assert_eq!(invoice.amount_pico_btc(), Some(200_000));
1206 assert_eq!(invoice.min_final_cltv_expiry_delta(), (min_final_cltv_expiry_delta.unwrap() + 3) as u64);
1207 assert_eq!(invoice.expiry_time(), Duration::from_secs(non_default_invoice_expiry_secs.into()));
1211 #[cfg(feature = "std")]
1212 fn test_multi_node_hints_includes_single_channels_to_participating_nodes() {
1213 let mut chanmon_cfgs = create_chanmon_cfgs(3);
1214 let seed_1 = [42 as u8; 32];
1215 let seed_2 = [43 as u8; 32];
1216 let cross_node_seed = [44 as u8; 32];
1217 chanmon_cfgs[1].keys_manager.backing = PhantomKeysManager::new(&seed_1, 43, 44, &cross_node_seed);
1218 chanmon_cfgs[2].keys_manager.backing = PhantomKeysManager::new(&seed_2, 43, 44, &cross_node_seed);
1219 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
1220 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
1221 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
1223 let chan_0_1 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001);
1224 let chan_0_2 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 2, 100000, 10001);
1226 let mut scid_aliases = HashSet::new();
1227 scid_aliases.insert(chan_0_1.0.short_channel_id_alias.unwrap());
1228 scid_aliases.insert(chan_0_2.0.short_channel_id_alias.unwrap());
1230 match_multi_node_invoice_routes(
1233 vec![&nodes[1], &nodes[2],],
1240 #[cfg(feature = "std")]
1241 fn test_multi_node_hints_includes_one_channel_of_each_counterparty_nodes_per_participating_node() {
1242 let mut chanmon_cfgs = create_chanmon_cfgs(4);
1243 let seed_1 = [42 as u8; 32];
1244 let seed_2 = [43 as u8; 32];
1245 let cross_node_seed = [44 as u8; 32];
1246 chanmon_cfgs[2].keys_manager.backing = PhantomKeysManager::new(&seed_1, 43, 44, &cross_node_seed);
1247 chanmon_cfgs[3].keys_manager.backing = PhantomKeysManager::new(&seed_2, 43, 44, &cross_node_seed);
1248 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
1249 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
1250 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
1252 let chan_0_2 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 2, 100000, 10001);
1253 let chan_0_3 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 3, 1000000, 10001);
1254 let chan_1_3 = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 3, 3_000_000, 10005);
1256 let mut scid_aliases = HashSet::new();
1257 scid_aliases.insert(chan_0_2.0.short_channel_id_alias.unwrap());
1258 scid_aliases.insert(chan_0_3.0.short_channel_id_alias.unwrap());
1259 scid_aliases.insert(chan_1_3.0.short_channel_id_alias.unwrap());
1261 match_multi_node_invoice_routes(
1264 vec![&nodes[2], &nodes[3],],
1271 #[cfg(feature = "std")]
1272 fn test_multi_node_forwarding_info_not_assigned_channel_excluded_from_hints() {
1273 let mut chanmon_cfgs = create_chanmon_cfgs(4);
1274 let seed_1 = [42 as u8; 32];
1275 let seed_2 = [43 as u8; 32];
1276 let cross_node_seed = [44 as u8; 32];
1277 chanmon_cfgs[2].keys_manager.backing = PhantomKeysManager::new(&seed_1, 43, 44, &cross_node_seed);
1278 chanmon_cfgs[3].keys_manager.backing = PhantomKeysManager::new(&seed_2, 43, 44, &cross_node_seed);
1279 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
1280 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
1281 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
1283 let chan_0_2 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 2, 100000, 10001);
1284 let chan_0_3 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 3, 1000000, 10001);
1286 // Create an unannonced channel between `nodes[1]` and `nodes[3]`, for which the
1287 // `msgs::ChannelUpdate` is never handled for the node(s). As the `msgs::ChannelUpdate`
1288 // is never handled, the `channel.counterparty.forwarding_info` is never assigned.
1289 let mut private_chan_cfg = UserConfig::default();
1290 private_chan_cfg.channel_handshake_config.announced_channel = false;
1291 let temporary_channel_id = nodes[1].node.create_channel(nodes[3].node.get_our_node_id(), 1_000_000, 500_000_000, 42, Some(private_chan_cfg)).unwrap();
1292 let open_channel = get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[3].node.get_our_node_id());
1293 nodes[3].node.handle_open_channel(&nodes[1].node.get_our_node_id(), &open_channel);
1294 let accept_channel = get_event_msg!(nodes[3], MessageSendEvent::SendAcceptChannel, nodes[1].node.get_our_node_id());
1295 nodes[1].node.handle_accept_channel(&nodes[3].node.get_our_node_id(), &accept_channel);
1297 let tx = sign_funding_transaction(&nodes[1], &nodes[3], 1_000_000, temporary_channel_id);
1299 let conf_height = core::cmp::max(nodes[1].best_block_info().1 + 1, nodes[3].best_block_info().1 + 1);
1300 confirm_transaction_at(&nodes[1], &tx, conf_height);
1301 connect_blocks(&nodes[1], CHAN_CONFIRM_DEPTH - 1);
1302 confirm_transaction_at(&nodes[3], &tx, conf_height);
1303 connect_blocks(&nodes[3], CHAN_CONFIRM_DEPTH - 1);
1304 let as_channel_ready = get_event_msg!(nodes[1], MessageSendEvent::SendChannelReady, nodes[3].node.get_our_node_id());
1305 nodes[1].node.handle_channel_ready(&nodes[3].node.get_our_node_id(), &get_event_msg!(nodes[3], MessageSendEvent::SendChannelReady, nodes[1].node.get_our_node_id()));
1306 get_event_msg!(nodes[1], MessageSendEvent::SendChannelUpdate, nodes[3].node.get_our_node_id());
1307 nodes[3].node.handle_channel_ready(&nodes[1].node.get_our_node_id(), &as_channel_ready);
1308 get_event_msg!(nodes[3], MessageSendEvent::SendChannelUpdate, nodes[1].node.get_our_node_id());
1309 expect_channel_ready_event(&nodes[1], &nodes[3].node.get_our_node_id());
1310 expect_channel_ready_event(&nodes[3], &nodes[1].node.get_our_node_id());
1312 // As `msgs::ChannelUpdate` was never handled for the participating node(s) of the third
1313 // channel, the channel will never be assigned any `counterparty.forwarding_info`.
1314 // Therefore only `chan_0_3` should be included in the hints for `nodes[3]`.
1315 let mut scid_aliases = HashSet::new();
1316 scid_aliases.insert(chan_0_2.0.short_channel_id_alias.unwrap());
1317 scid_aliases.insert(chan_0_3.0.short_channel_id_alias.unwrap());
1319 match_multi_node_invoice_routes(
1322 vec![&nodes[2], &nodes[3],],
1329 #[cfg(feature = "std")]
1330 fn test_multi_node_with_only_public_channels_hints_includes_only_phantom_route() {
1331 let mut chanmon_cfgs = create_chanmon_cfgs(3);
1332 let seed_1 = [42 as u8; 32];
1333 let seed_2 = [43 as u8; 32];
1334 let cross_node_seed = [44 as u8; 32];
1335 chanmon_cfgs[1].keys_manager.backing = PhantomKeysManager::new(&seed_1, 43, 44, &cross_node_seed);
1336 chanmon_cfgs[2].keys_manager.backing = PhantomKeysManager::new(&seed_2, 43, 44, &cross_node_seed);
1337 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
1338 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
1339 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
1341 let chan_0_1 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001);
1343 let chan_2_0 = create_announced_chan_between_nodes_with_value(&nodes, 2, 0, 100000, 10001);
1344 nodes[2].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &chan_2_0.1);
1345 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan_2_0.0);
1347 // Hints should include `chan_0_1` from as `nodes[1]` only have private channels, but not
1348 // `chan_0_2` as `nodes[2]` only has public channels.
1349 let mut scid_aliases = HashSet::new();
1350 scid_aliases.insert(chan_0_1.0.short_channel_id_alias.unwrap());
1352 match_multi_node_invoice_routes(
1355 vec![&nodes[1], &nodes[2],],
1362 #[cfg(feature = "std")]
1363 fn test_multi_node_with_mixed_public_and_private_channel_hints_includes_only_phantom_route() {
1364 let mut chanmon_cfgs = create_chanmon_cfgs(4);
1365 let seed_1 = [42 as u8; 32];
1366 let seed_2 = [43 as u8; 32];
1367 let cross_node_seed = [44 as u8; 32];
1368 chanmon_cfgs[1].keys_manager.backing = PhantomKeysManager::new(&seed_1, 43, 44, &cross_node_seed);
1369 chanmon_cfgs[2].keys_manager.backing = PhantomKeysManager::new(&seed_2, 43, 44, &cross_node_seed);
1370 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
1371 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
1372 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
1374 let chan_0_2 = create_announced_chan_between_nodes_with_value(&nodes, 0, 2, 100000, 10001);
1375 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan_0_2.1);
1376 nodes[2].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &chan_0_2.0);
1377 let _chan_1_2 = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 2, 100000, 10001);
1379 let chan_0_3 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 3, 100000, 10001);
1381 // Hints should include `chan_0_3` from as `nodes[3]` only have private channels, and no
1382 // channels for `nodes[2]` as it contains a mix of public and private channels.
1383 let mut scid_aliases = HashSet::new();
1384 scid_aliases.insert(chan_0_3.0.short_channel_id_alias.unwrap());
1386 match_multi_node_invoice_routes(
1389 vec![&nodes[2], &nodes[3],],
1396 #[cfg(feature = "std")]
1397 fn test_multi_node_hints_has_only_highest_inbound_capacity_channel() {
1398 let mut chanmon_cfgs = create_chanmon_cfgs(3);
1399 let seed_1 = [42 as u8; 32];
1400 let seed_2 = [43 as u8; 32];
1401 let cross_node_seed = [44 as u8; 32];
1402 chanmon_cfgs[1].keys_manager.backing = PhantomKeysManager::new(&seed_1, 43, 44, &cross_node_seed);
1403 chanmon_cfgs[2].keys_manager.backing = PhantomKeysManager::new(&seed_2, 43, 44, &cross_node_seed);
1404 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
1405 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
1406 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
1408 let _chan_0_1_low_inbound_capacity = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 1, 100_000, 0);
1409 let chan_0_1_high_inbound_capacity = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 1, 10_000_000, 0);
1410 let _chan_0_1_medium_inbound_capacity = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 1, 1_000_000, 0);
1411 let chan_0_2 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 2, 100000, 10001);
1413 let mut scid_aliases = HashSet::new();
1414 scid_aliases.insert(chan_0_1_high_inbound_capacity.0.short_channel_id_alias.unwrap());
1415 scid_aliases.insert(chan_0_2.0.short_channel_id_alias.unwrap());
1417 match_multi_node_invoice_routes(
1420 vec![&nodes[1], &nodes[2],],
1427 #[cfg(feature = "std")]
1428 fn test_multi_node_channels_inbound_capacity_lower_than_invoice_amt_filtering() {
1429 let mut chanmon_cfgs = create_chanmon_cfgs(4);
1430 let seed_1 = [42 as u8; 32];
1431 let seed_2 = [43 as u8; 32];
1432 let cross_node_seed = [44 as u8; 32];
1433 chanmon_cfgs[1].keys_manager.backing = PhantomKeysManager::new(&seed_1, 43, 44, &cross_node_seed);
1434 chanmon_cfgs[2].keys_manager.backing = PhantomKeysManager::new(&seed_2, 43, 44, &cross_node_seed);
1435 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
1436 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
1437 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
1439 let chan_0_2 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 2, 1_000_000, 0);
1440 let chan_0_3 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 3, 100_000, 0);
1441 let chan_1_3 = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 3, 200_000, 0);
1443 // Since the invoice 1 msat above chan_0_3's inbound capacity, it should be filtered out.
1444 let mut scid_aliases_99_000_001_msat = HashSet::new();
1445 scid_aliases_99_000_001_msat.insert(chan_0_2.0.short_channel_id_alias.unwrap());
1446 scid_aliases_99_000_001_msat.insert(chan_1_3.0.short_channel_id_alias.unwrap());
1448 match_multi_node_invoice_routes(
1451 vec![&nodes[2], &nodes[3],],
1452 scid_aliases_99_000_001_msat,
1456 // Since the invoice is exactly at chan_0_3's inbound capacity, it should be included.
1457 let mut scid_aliases_99_000_000_msat = HashSet::new();
1458 scid_aliases_99_000_000_msat.insert(chan_0_2.0.short_channel_id_alias.unwrap());
1459 scid_aliases_99_000_000_msat.insert(chan_0_3.0.short_channel_id_alias.unwrap());
1460 scid_aliases_99_000_000_msat.insert(chan_1_3.0.short_channel_id_alias.unwrap());
1462 match_multi_node_invoice_routes(
1465 vec![&nodes[2], &nodes[3],],
1466 scid_aliases_99_000_000_msat,
1470 // Since the invoice is above all of `nodes[2]` channels' inbound capacity, all of
1471 // `nodes[2]` them should be included.
1472 let mut scid_aliases_300_000_000_msat = HashSet::new();
1473 scid_aliases_300_000_000_msat.insert(chan_0_2.0.short_channel_id_alias.unwrap());
1474 scid_aliases_300_000_000_msat.insert(chan_0_3.0.short_channel_id_alias.unwrap());
1475 scid_aliases_300_000_000_msat.insert(chan_1_3.0.short_channel_id_alias.unwrap());
1477 match_multi_node_invoice_routes(
1480 vec![&nodes[2], &nodes[3],],
1481 scid_aliases_300_000_000_msat,
1485 // Since the no specified amount, all channels should included.
1486 let mut scid_aliases_no_specified_amount = HashSet::new();
1487 scid_aliases_no_specified_amount.insert(chan_0_2.0.short_channel_id_alias.unwrap());
1488 scid_aliases_no_specified_amount.insert(chan_0_3.0.short_channel_id_alias.unwrap());
1489 scid_aliases_no_specified_amount.insert(chan_1_3.0.short_channel_id_alias.unwrap());
1491 match_multi_node_invoice_routes(
1494 vec![&nodes[2], &nodes[3],],
1495 scid_aliases_no_specified_amount,
1500 #[cfg(feature = "std")]
1501 fn match_multi_node_invoice_routes<'a, 'b: 'a, 'c: 'b>(
1502 invoice_amt: Option<u64>,
1503 invoice_node: &Node<'a, 'b, 'c>,
1504 network_multi_nodes: Vec<&Node<'a, 'b, 'c>>,
1505 mut chan_ids_to_match: HashSet<u64>,
1506 nodes_contains_public_channels: bool
1508 let phantom_route_hints = network_multi_nodes.iter()
1509 .map(|node| node.node.get_phantom_route_hints())
1510 .collect::<Vec<PhantomRouteHints>>();
1511 let phantom_scids = phantom_route_hints.iter()
1512 .map(|route_hint| route_hint.phantom_scid)
1513 .collect::<HashSet<u64>>();
1515 let invoice = crate::utils::create_phantom_invoice::<&test_utils::TestKeysInterface,
1516 &test_utils::TestKeysInterface, &test_utils::TestLogger>(invoice_amt, None, "test".to_string(),
1517 3600, phantom_route_hints, &invoice_node.keys_manager, &invoice_node.keys_manager,
1518 &invoice_node.logger, Currency::BitcoinTestnet, None, Duration::from_secs(1234567)).unwrap();
1520 let invoice_hints = invoice.private_routes();
1522 for hint in invoice_hints {
1523 let hints = &(hint.0).0;
1526 assert!(nodes_contains_public_channels);
1527 let phantom_scid = hints[0].short_channel_id;
1528 assert!(phantom_scids.contains(&phantom_scid));
1531 let hint_short_chan_id = hints[0].short_channel_id;
1532 assert!(chan_ids_to_match.remove(&hint_short_chan_id));
1533 let phantom_scid = hints[1].short_channel_id;
1534 assert!(phantom_scids.contains(&phantom_scid));
1536 _ => panic!("Incorrect hint length generated")
1539 assert!(chan_ids_to_match.is_empty(), "Unmatched short channel ids: {:?}", chan_ids_to_match);
1543 fn test_create_invoice_fails_with_invalid_custom_min_final_cltv_expiry_delta() {
1544 let chanmon_cfgs = create_chanmon_cfgs(2);
1545 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
1546 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
1547 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
1548 let result = crate::utils::create_invoice_from_channelmanager_and_duration_since_epoch(
1549 &nodes[1].node, nodes[1].keys_manager, nodes[1].logger, Currency::BitcoinTestnet,
1550 Some(10_000), "Some description".into(), Duration::from_secs(1234567), 3600, Some(MIN_FINAL_CLTV_EXPIRY_DELTA - 4),
1553 Err(SignOrCreationError::CreationError(CreationError::MinFinalCltvExpiryDeltaTooShort)) => {},