Move network_graph.rs to gossip.rs
[rust-lightning] / lightning-invoice / src / utils.rs
1 //! Convenient utilities to create an invoice.
2
3 use {CreationError, Currency, Invoice, InvoiceBuilder, SignOrCreationError};
4 use payment::{Payer, Router};
5
6 use crate::{prelude::*, Description, InvoiceDescription, Sha256};
7 use bech32::ToBase32;
8 use bitcoin_hashes::{Hash, sha256};
9 use lightning::chain;
10 use lightning::chain::chaininterface::{BroadcasterInterface, FeeEstimator};
11 use lightning::chain::keysinterface::{Recipient, KeysInterface, Sign};
12 use lightning::ln::{PaymentHash, PaymentPreimage, PaymentSecret};
13 use lightning::ln::channelmanager::{ChannelDetails, ChannelManager, PaymentId, PaymentSendFailure, MIN_FINAL_CLTV_EXPIRY};
14 #[cfg(feature = "std")]
15 use lightning::ln::channelmanager::{PhantomRouteHints, MIN_CLTV_EXPIRY_DELTA};
16 use lightning::ln::inbound_payment::{create, create_from_hash, ExpandedKey};
17 use lightning::ln::msgs::LightningError;
18 use lightning::routing::gossip::{NetworkGraph, RoutingFees};
19 use lightning::routing::router::{Route, RouteHint, RouteHintHop, RouteParameters, find_route};
20 use lightning::routing::scoring::Score;
21 use lightning::util::logger::Logger;
22 use secp256k1::PublicKey;
23 use core::ops::Deref;
24 use core::time::Duration;
25 use sync::Mutex;
26
27 #[cfg(feature = "std")]
28 /// Utility to create an invoice that can be paid to one of multiple nodes, or a "phantom invoice."
29 /// See [`PhantomKeysManager`] for more information on phantom node payments.
30 ///
31 /// `phantom_route_hints` parameter:
32 /// * Contains channel info for all nodes participating in the phantom invoice
33 /// * Entries are retrieved from a call to [`ChannelManager::get_phantom_route_hints`] on each
34 ///   participating node
35 /// * It is fine to cache `phantom_route_hints` and reuse it across invoices, as long as the data is
36 ///   updated when a channel becomes disabled or closes
37 /// * Note that if too many channels are included in [`PhantomRouteHints::channels`], the invoice
38 ///   may be too long for QR code scanning. To fix this, `PhantomRouteHints::channels` may be pared
39 ///   down
40 ///
41 /// `payment_hash` can be specified if you have a specific need for a custom payment hash (see the difference
42 /// between [`ChannelManager::create_inbound_payment`] and [`ChannelManager::create_inbound_payment_for_hash`]).
43 /// If `None` is provided for `payment_hash`, then one will be created.
44 ///
45 /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
46 /// in excess of the current time.
47 ///
48 /// Note that the provided `keys_manager`'s `KeysInterface` implementation must support phantom
49 /// invoices in its `sign_invoice` implementation ([`PhantomKeysManager`] satisfies this
50 /// requirement).
51 ///
52 /// [`PhantomKeysManager`]: lightning::chain::keysinterface::PhantomKeysManager
53 /// [`ChannelManager::get_phantom_route_hints`]: lightning::ln::channelmanager::ChannelManager::get_phantom_route_hints
54 /// [`ChannelManager::create_inbound_payment`]: lightning::ln::channelmanager::ChannelManager::create_inbound_payment
55 /// [`ChannelManager::create_inbound_payment_for_hash`]: lightning::ln::channelmanager::ChannelManager::create_inbound_payment_for_hash
56 /// [`PhantomRouteHints::channels`]: lightning::ln::channelmanager::PhantomRouteHints::channels
57 pub fn create_phantom_invoice<Signer: Sign, K: Deref>(
58         amt_msat: Option<u64>, payment_hash: Option<PaymentHash>, description: String, invoice_expiry_delta_secs: u32,
59         phantom_route_hints: Vec<PhantomRouteHints>, keys_manager: K, network: Currency,
60 ) -> Result<Invoice, SignOrCreationError<()>> where K::Target: KeysInterface {
61         let description = Description::new(description).map_err(SignOrCreationError::CreationError)?;
62         let description = InvoiceDescription::Direct(&description,);
63         _create_phantom_invoice::<Signer, K>(
64                 amt_msat, payment_hash, description, invoice_expiry_delta_secs, phantom_route_hints, keys_manager, network,
65         )
66 }
67
68 #[cfg(feature = "std")]
69 /// Utility to create an invoice that can be paid to one of multiple nodes, or a "phantom invoice."
70 /// See [`PhantomKeysManager`] for more information on phantom node payments.
71 ///
72 /// `phantom_route_hints` parameter:
73 /// * Contains channel info for all nodes participating in the phantom invoice
74 /// * Entries are retrieved from a call to [`ChannelManager::get_phantom_route_hints`] on each
75 ///   participating node
76 /// * It is fine to cache `phantom_route_hints` and reuse it across invoices, as long as the data is
77 ///   updated when a channel becomes disabled or closes
78 /// * Note that if too many channels are included in [`PhantomRouteHints::channels`], the invoice
79 ///   may be too long for QR code scanning. To fix this, `PhantomRouteHints::channels` may be pared
80 ///   down
81 ///
82 /// `description_hash` is a SHA-256 hash of the description text
83 ///
84 /// `payment_hash` can be specified if you have a specific need for a custom payment hash (see the difference
85 /// between [`ChannelManager::create_inbound_payment`] and [`ChannelManager::create_inbound_payment_for_hash`]).
86 /// If `None` is provided for `payment_hash`, then one will be created.
87 ///
88 /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
89 /// in excess of the current time.
90 ///
91 /// Note that the provided `keys_manager`'s `KeysInterface` implementation must support phantom
92 /// invoices in its `sign_invoice` implementation ([`PhantomKeysManager`] satisfies this
93 /// requirement).
94 ///
95 /// [`PhantomKeysManager`]: lightning::chain::keysinterface::PhantomKeysManager
96 /// [`ChannelManager::get_phantom_route_hints`]: lightning::ln::channelmanager::ChannelManager::get_phantom_route_hints
97 /// [`ChannelManager::create_inbound_payment`]: lightning::ln::channelmanager::ChannelManager::create_inbound_payment
98 /// [`ChannelManager::create_inbound_payment_for_hash`]: lightning::ln::channelmanager::ChannelManager::create_inbound_payment_for_hash
99 /// [`PhantomRouteHints::channels`]: lightning::ln::channelmanager::PhantomRouteHints::channels
100 pub fn create_phantom_invoice_with_description_hash<Signer: Sign, K: Deref>(
101         amt_msat: Option<u64>, payment_hash: Option<PaymentHash>, invoice_expiry_delta_secs: u32,
102         description_hash: Sha256, phantom_route_hints: Vec<PhantomRouteHints>, keys_manager: K, network: Currency,
103 ) -> Result<Invoice, SignOrCreationError<()>> where K::Target: KeysInterface
104 {
105         _create_phantom_invoice::<Signer, K>(
106                 amt_msat, payment_hash, InvoiceDescription::Hash(&description_hash),
107                 invoice_expiry_delta_secs, phantom_route_hints, keys_manager, network,
108         )
109 }
110
111 #[cfg(feature = "std")]
112 fn _create_phantom_invoice<Signer: Sign, K: Deref>(
113         amt_msat: Option<u64>, payment_hash: Option<PaymentHash>, description: InvoiceDescription,
114         invoice_expiry_delta_secs: u32, phantom_route_hints: Vec<PhantomRouteHints>, keys_manager: K, network: Currency,
115 ) -> Result<Invoice, SignOrCreationError<()>> where K::Target: KeysInterface
116 {
117         use std::time::{SystemTime, UNIX_EPOCH};
118
119         if phantom_route_hints.len() == 0 {
120                 return Err(SignOrCreationError::CreationError(
121                         CreationError::MissingRouteHints,
122                 ));
123         }
124         let invoice = match description {
125                 InvoiceDescription::Direct(description) => {
126                         InvoiceBuilder::new(network).description(description.0.clone())
127                 }
128                 InvoiceDescription::Hash(hash) => InvoiceBuilder::new(network).description_hash(hash.0),
129         };
130
131         // If we ever see performance here being too slow then we should probably take this ExpandedKey as a parameter instead.
132         let keys = ExpandedKey::new(&keys_manager.get_inbound_payment_key_material());
133         let (payment_hash, payment_secret) = if let Some(payment_hash) = payment_hash {
134                 let payment_secret = create_from_hash(
135                         &keys,
136                         amt_msat,
137                         payment_hash,
138                         invoice_expiry_delta_secs,
139                         SystemTime::now()
140                                 .duration_since(UNIX_EPOCH)
141                                 .expect("Time must be > 1970")
142                                 .as_secs(),
143                 )
144                 .map_err(|_| SignOrCreationError::CreationError(CreationError::InvalidAmount))?;
145                 (payment_hash, payment_secret)
146         } else {
147                 create(
148                         &keys,
149                         amt_msat,
150                         invoice_expiry_delta_secs,
151                         &keys_manager,
152                         SystemTime::now()
153                                 .duration_since(UNIX_EPOCH)
154                                 .expect("Time must be > 1970")
155                                 .as_secs(),
156                 )
157                 .map_err(|_| SignOrCreationError::CreationError(CreationError::InvalidAmount))?
158         };
159
160         let mut invoice = invoice
161                 .current_timestamp()
162                 .payment_hash(Hash::from_slice(&payment_hash.0).unwrap())
163                 .payment_secret(payment_secret)
164                 .min_final_cltv_expiry(MIN_FINAL_CLTV_EXPIRY.into())
165                 .expiry_time(Duration::from_secs(invoice_expiry_delta_secs.into()));
166         if let Some(amt) = amt_msat {
167                 invoice = invoice.amount_milli_satoshis(amt);
168         }
169
170         for PhantomRouteHints { channels, phantom_scid, real_node_pubkey } in phantom_route_hints {
171                 let mut route_hints = filter_channels(channels, amt_msat);
172
173                 // If we have any public channel, the route hints from `filter_channels` will be empty.
174                 // In that case we create a RouteHint on which we will push a single hop with the phantom
175                 // route into the invoice, and let the sender find the path to the `real_node_pubkey`
176                 // node by looking at our public channels.
177                 if route_hints.is_empty() {
178                         route_hints.push(RouteHint(vec![]))
179                 }
180                 for mut route_hint in route_hints {
181                         route_hint.0.push(RouteHintHop {
182                                 src_node_id: real_node_pubkey,
183                                 short_channel_id: phantom_scid,
184                                 fees: RoutingFees {
185                                         base_msat: 0,
186                                         proportional_millionths: 0,
187                                 },
188                                 cltv_expiry_delta: MIN_CLTV_EXPIRY_DELTA,
189                                 htlc_minimum_msat: None,
190                                 htlc_maximum_msat: None,});
191                         invoice = invoice.private_route(route_hint.clone());
192                 }
193         }
194
195         let raw_invoice = match invoice.build_raw() {
196                 Ok(inv) => inv,
197                 Err(e) => return Err(SignOrCreationError::CreationError(e))
198         };
199         let hrp_str = raw_invoice.hrp.to_string();
200         let hrp_bytes = hrp_str.as_bytes();
201         let data_without_signature = raw_invoice.data.to_base32();
202         let signed_raw_invoice = raw_invoice.sign(|_| keys_manager.sign_invoice(hrp_bytes, &data_without_signature, Recipient::PhantomNode));
203         match signed_raw_invoice {
204                 Ok(inv) => Ok(Invoice::from_signed(inv).unwrap()),
205                 Err(e) => Err(SignOrCreationError::SignError(e))
206         }
207 }
208
209 #[cfg(feature = "std")]
210 /// Utility to construct an invoice. Generally, unless you want to do something like a custom
211 /// cltv_expiry, this is what you should be using to create an invoice. The reason being, this
212 /// method stores the invoice's payment secret and preimage in `ChannelManager`, so (a) the user
213 /// doesn't have to store preimage/payment secret information and (b) `ChannelManager` can verify
214 /// that the payment secret is valid when the invoice is paid.
215 ///
216 /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
217 /// in excess of the current time.
218 pub fn create_invoice_from_channelmanager<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>(
219         channelmanager: &ChannelManager<Signer, M, T, K, F, L>, keys_manager: K, network: Currency,
220         amt_msat: Option<u64>, description: String, invoice_expiry_delta_secs: u32
221 ) -> Result<Invoice, SignOrCreationError<()>>
222 where
223         M::Target: chain::Watch<Signer>,
224         T::Target: BroadcasterInterface,
225         K::Target: KeysInterface<Signer = Signer>,
226         F::Target: FeeEstimator,
227         L::Target: Logger,
228 {
229         use std::time::SystemTime;
230         let duration = SystemTime::now().duration_since(SystemTime::UNIX_EPOCH)
231                 .expect("for the foreseeable future this shouldn't happen");
232         create_invoice_from_channelmanager_and_duration_since_epoch(
233                 channelmanager, keys_manager, network, amt_msat, description, duration,
234                 invoice_expiry_delta_secs
235         )
236 }
237
238 #[cfg(feature = "std")]
239 /// Utility to construct an invoice. Generally, unless you want to do something like a custom
240 /// cltv_expiry, this is what you should be using to create an invoice. The reason being, this
241 /// method stores the invoice's payment secret and preimage in `ChannelManager`, so (a) the user
242 /// doesn't have to store preimage/payment secret information and (b) `ChannelManager` can verify
243 /// that the payment secret is valid when the invoice is paid.
244 /// Use this variant if you want to pass the `description_hash` to the invoice.
245 ///
246 /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
247 /// in excess of the current time.
248 pub fn create_invoice_from_channelmanager_with_description_hash<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>(
249         channelmanager: &ChannelManager<Signer, M, T, K, F, L>, keys_manager: K, network: Currency,
250         amt_msat: Option<u64>, description_hash: Sha256, invoice_expiry_delta_secs: u32
251 ) -> Result<Invoice, SignOrCreationError<()>>
252 where
253         M::Target: chain::Watch<Signer>,
254         T::Target: BroadcasterInterface,
255         K::Target: KeysInterface<Signer = Signer>,
256         F::Target: FeeEstimator,
257         L::Target: Logger,
258 {
259         use std::time::SystemTime;
260
261         let duration = SystemTime::now()
262                 .duration_since(SystemTime::UNIX_EPOCH)
263                 .expect("for the foreseeable future this shouldn't happen");
264
265         create_invoice_from_channelmanager_with_description_hash_and_duration_since_epoch(
266                 channelmanager, keys_manager, network, amt_msat,
267                 description_hash, duration, invoice_expiry_delta_secs
268         )
269 }
270
271 /// See [`create_invoice_from_channelmanager_with_description_hash`]
272 /// This version can be used in a `no_std` environment, where [`std::time::SystemTime`] is not
273 /// available and the current time is supplied by the caller.
274 pub fn create_invoice_from_channelmanager_with_description_hash_and_duration_since_epoch<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>(
275         channelmanager: &ChannelManager<Signer, M, T, K, F, L>, keys_manager: K, network: Currency,
276         amt_msat: Option<u64>, description_hash: Sha256, duration_since_epoch: Duration,
277         invoice_expiry_delta_secs: u32
278 ) -> Result<Invoice, SignOrCreationError<()>>
279 where
280         M::Target: chain::Watch<Signer>,
281         T::Target: BroadcasterInterface,
282         K::Target: KeysInterface<Signer = Signer>,
283         F::Target: FeeEstimator,
284         L::Target: Logger,
285 {
286         _create_invoice_from_channelmanager_and_duration_since_epoch(
287                 channelmanager, keys_manager, network, amt_msat,
288                 InvoiceDescription::Hash(&description_hash),
289                 duration_since_epoch, invoice_expiry_delta_secs
290         )
291 }
292
293 /// See [`create_invoice_from_channelmanager`]
294 /// This version can be used in a `no_std` environment, where [`std::time::SystemTime`] is not
295 /// available and the current time is supplied by the caller.
296 pub fn create_invoice_from_channelmanager_and_duration_since_epoch<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>(
297         channelmanager: &ChannelManager<Signer, M, T, K, F, L>, keys_manager: K, network: Currency,
298         amt_msat: Option<u64>, description: String, duration_since_epoch: Duration,
299         invoice_expiry_delta_secs: u32
300 ) -> Result<Invoice, SignOrCreationError<()>>
301 where
302         M::Target: chain::Watch<Signer>,
303         T::Target: BroadcasterInterface,
304         K::Target: KeysInterface<Signer = Signer>,
305         F::Target: FeeEstimator,
306         L::Target: Logger,
307 {
308         _create_invoice_from_channelmanager_and_duration_since_epoch(
309                 channelmanager, keys_manager, network, amt_msat,
310                 InvoiceDescription::Direct(
311                         &Description::new(description).map_err(SignOrCreationError::CreationError)?,
312                 ),
313                 duration_since_epoch, invoice_expiry_delta_secs
314         )
315 }
316
317 fn _create_invoice_from_channelmanager_and_duration_since_epoch<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>(
318         channelmanager: &ChannelManager<Signer, M, T, K, F, L>, keys_manager: K, network: Currency,
319         amt_msat: Option<u64>, description: InvoiceDescription, duration_since_epoch: Duration,
320         invoice_expiry_delta_secs: u32
321 ) -> Result<Invoice, SignOrCreationError<()>>
322 where
323         M::Target: chain::Watch<Signer>,
324         T::Target: BroadcasterInterface,
325         K::Target: KeysInterface<Signer = Signer>,
326         F::Target: FeeEstimator,
327         L::Target: Logger,
328 {
329         let route_hints = filter_channels(channelmanager.list_usable_channels(), amt_msat);
330
331         // `create_inbound_payment` only returns an error if the amount is greater than the total bitcoin
332         // supply.
333         let (payment_hash, payment_secret) = channelmanager
334                 .create_inbound_payment(amt_msat, invoice_expiry_delta_secs)
335                 .map_err(|()| SignOrCreationError::CreationError(CreationError::InvalidAmount))?;
336         let our_node_pubkey = channelmanager.get_our_node_id();
337
338         let invoice = match description {
339                 InvoiceDescription::Direct(description) => {
340                         InvoiceBuilder::new(network).description(description.0.clone())
341                 }
342                 InvoiceDescription::Hash(hash) => InvoiceBuilder::new(network).description_hash(hash.0),
343         };
344
345         let mut invoice = invoice
346                 .duration_since_epoch(duration_since_epoch)
347                 .payee_pub_key(our_node_pubkey)
348                 .payment_hash(Hash::from_slice(&payment_hash.0).unwrap())
349                 .payment_secret(payment_secret)
350                 .basic_mpp()
351                 .min_final_cltv_expiry(MIN_FINAL_CLTV_EXPIRY.into())
352                 .expiry_time(Duration::from_secs(invoice_expiry_delta_secs.into()));
353         if let Some(amt) = amt_msat {
354                 invoice = invoice.amount_milli_satoshis(amt);
355         }
356         for hint in route_hints {
357                 invoice = invoice.private_route(hint);
358         }
359
360         let raw_invoice = match invoice.build_raw() {
361                 Ok(inv) => inv,
362                 Err(e) => return Err(SignOrCreationError::CreationError(e))
363         };
364         let hrp_str = raw_invoice.hrp.to_string();
365         let hrp_bytes = hrp_str.as_bytes();
366         let data_without_signature = raw_invoice.data.to_base32();
367         let signed_raw_invoice = raw_invoice.sign(|_| keys_manager.sign_invoice(hrp_bytes, &data_without_signature, Recipient::Node));
368         match signed_raw_invoice {
369                 Ok(inv) => Ok(Invoice::from_signed(inv).unwrap()),
370                 Err(e) => Err(SignOrCreationError::SignError(e))
371         }
372 }
373
374 /// Filters the `channels` for an invoice, and returns the corresponding `RouteHint`s to include
375 /// in the invoice.
376 ///
377 /// The filtering is based on the following criteria:
378 /// * Only one channel per counterparty node
379 /// * Always select the channel with the highest inbound capacity per counterparty node
380 /// * Filter out channels with a lower inbound capacity than `min_inbound_capacity_msat`, if any
381 /// channel with a higher or equal inbound capacity than `min_inbound_capacity_msat` exists
382 /// * If any public channel exists, the returned `RouteHint`s will be empty, and the sender will
383 /// need to find the path by looking at the public channels instead
384 fn filter_channels(channels: Vec<ChannelDetails>, min_inbound_capacity_msat: Option<u64>) -> Vec<RouteHint>{
385         let mut filtered_channels: HashMap<PublicKey, &ChannelDetails> = HashMap::new();
386         let min_inbound_capacity = min_inbound_capacity_msat.unwrap_or(0);
387         let mut min_capacity_channel_exists = false;
388
389         for channel in channels.iter() {
390                 if channel.get_inbound_payment_scid().is_none() || channel.counterparty.forwarding_info.is_none() {
391                         continue;
392                 }
393
394                 if channel.is_public {
395                         // If any public channel exists, return no hints and let the sender
396                         // look at the public channels instead.
397                         return vec![]
398                 }
399
400                 if channel.inbound_capacity_msat >= min_inbound_capacity {
401                         min_capacity_channel_exists = true;
402                 };
403                 match filtered_channels.entry(channel.counterparty.node_id) {
404                         hash_map::Entry::Occupied(mut entry) => {
405                                 let current_max_capacity = entry.get().inbound_capacity_msat;
406                                 if channel.inbound_capacity_msat < current_max_capacity {
407                                         continue;
408                                 }
409                                 entry.insert(channel);
410                         }
411                         hash_map::Entry::Vacant(entry) => {
412                                 entry.insert(channel);
413                         }
414                 }
415         }
416
417         let route_hint_from_channel = |channel: &ChannelDetails| {
418                 let forwarding_info = channel.counterparty.forwarding_info.as_ref().unwrap();
419                 RouteHint(vec![RouteHintHop {
420                         src_node_id: channel.counterparty.node_id,
421                         short_channel_id: channel.get_inbound_payment_scid().unwrap(),
422                         fees: RoutingFees {
423                                 base_msat: forwarding_info.fee_base_msat,
424                                 proportional_millionths: forwarding_info.fee_proportional_millionths,
425                         },
426                         cltv_expiry_delta: forwarding_info.cltv_expiry_delta,
427                         htlc_minimum_msat: channel.inbound_htlc_minimum_msat,
428                         htlc_maximum_msat: channel.inbound_htlc_maximum_msat,}])
429         };
430         // If all channels are private, return the route hint for the highest inbound capacity channel
431         // per counterparty node. If channels with an higher inbound capacity than the
432         // min_inbound_capacity exists, filter out the channels with a lower capacity than that.
433         filtered_channels.into_iter()
434                 .filter(|(_counterparty_id, channel)| {
435                         min_capacity_channel_exists && channel.inbound_capacity_msat >= min_inbound_capacity ||
436                         !min_capacity_channel_exists
437                 })
438                 .map(|(_counterparty_id, channel)| route_hint_from_channel(&channel))
439                 .collect::<Vec<RouteHint>>()
440 }
441
442 /// A [`Router`] implemented using [`find_route`].
443 pub struct DefaultRouter<G: Deref<Target = NetworkGraph>, L: Deref> where L::Target: Logger {
444         network_graph: G,
445         logger: L,
446         random_seed_bytes: Mutex<[u8; 32]>,
447 }
448
449 impl<G: Deref<Target = NetworkGraph>, L: Deref> DefaultRouter<G, L> where L::Target: Logger {
450         /// Creates a new router using the given [`NetworkGraph`], a [`Logger`], and a randomness source
451         /// `random_seed_bytes`.
452         pub fn new(network_graph: G, logger: L, random_seed_bytes: [u8; 32]) -> Self {
453                 let random_seed_bytes = Mutex::new(random_seed_bytes);
454                 Self { network_graph, logger, random_seed_bytes }
455         }
456 }
457
458 impl<G: Deref<Target = NetworkGraph>, L: Deref, S: Score> Router<S> for DefaultRouter<G, L>
459 where L::Target: Logger {
460         fn find_route(
461                 &self, payer: &PublicKey, params: &RouteParameters, _payment_hash: &PaymentHash,
462                 first_hops: Option<&[&ChannelDetails]>, scorer: &S
463         ) -> Result<Route, LightningError> {
464                 let random_seed_bytes = {
465                         let mut locked_random_seed_bytes = self.random_seed_bytes.lock().unwrap();
466                         *locked_random_seed_bytes = sha256::Hash::hash(&*locked_random_seed_bytes).into_inner();
467                         *locked_random_seed_bytes
468                 };
469                 find_route(payer, params, &*self.network_graph, first_hops, &*self.logger, scorer, &random_seed_bytes)
470         }
471 }
472
473 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> Payer for ChannelManager<Signer, M, T, K, F, L>
474 where
475         M::Target: chain::Watch<Signer>,
476         T::Target: BroadcasterInterface,
477         K::Target: KeysInterface<Signer = Signer>,
478         F::Target: FeeEstimator,
479         L::Target: Logger,
480 {
481         fn node_id(&self) -> PublicKey {
482                 self.get_our_node_id()
483         }
484
485         fn first_hops(&self) -> Vec<ChannelDetails> {
486                 self.list_usable_channels()
487         }
488
489         fn send_payment(
490                 &self, route: &Route, payment_hash: PaymentHash, payment_secret: &Option<PaymentSecret>
491         ) -> Result<PaymentId, PaymentSendFailure> {
492                 self.send_payment(route, payment_hash, payment_secret)
493         }
494
495         fn send_spontaneous_payment(
496                 &self, route: &Route, payment_preimage: PaymentPreimage,
497         ) -> Result<PaymentId, PaymentSendFailure> {
498                 self.send_spontaneous_payment(route, Some(payment_preimage))
499                         .map(|(_, payment_id)| payment_id)
500         }
501
502         fn retry_payment(
503                 &self, route: &Route, payment_id: PaymentId
504         ) -> Result<(), PaymentSendFailure> {
505                 self.retry_payment(route, payment_id)
506         }
507
508         fn abandon_payment(&self, payment_id: PaymentId) {
509                 self.abandon_payment(payment_id)
510         }
511 }
512
513 #[cfg(test)]
514 mod test {
515         use core::time::Duration;
516         use {Currency, Description, InvoiceDescription};
517         use bitcoin_hashes::Hash;
518         use bitcoin_hashes::sha256::Hash as Sha256;
519         use lightning::chain::keysinterface::PhantomKeysManager;
520         use lightning::ln::{PaymentPreimage, PaymentHash};
521         use lightning::ln::channelmanager::{PhantomRouteHints, MIN_FINAL_CLTV_EXPIRY};
522         use lightning::ln::functional_test_utils::*;
523         use lightning::ln::features::InitFeatures;
524         use lightning::ln::msgs::ChannelMessageHandler;
525         use lightning::routing::router::{PaymentParameters, RouteParameters, find_route};
526         use lightning::util::enforcing_trait_impls::EnforcingSigner;
527         use lightning::util::events::{MessageSendEvent, MessageSendEventsProvider, Event};
528         use lightning::util::test_utils;
529         use lightning::util::config::UserConfig;
530         use lightning::chain::keysinterface::KeysInterface;
531         use utils::create_invoice_from_channelmanager_and_duration_since_epoch;
532         use std::collections::HashSet;
533
534         #[test]
535         fn test_from_channelmanager() {
536                 let chanmon_cfgs = create_chanmon_cfgs(2);
537                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
538                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
539                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
540                 create_unannounced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
541                 let non_default_invoice_expiry_secs = 4200;
542                 let invoice = create_invoice_from_channelmanager_and_duration_since_epoch(
543                         &nodes[1].node, nodes[1].keys_manager, Currency::BitcoinTestnet, Some(10_000), "test".to_string(),
544                         Duration::from_secs(1234567), non_default_invoice_expiry_secs).unwrap();
545                 assert_eq!(invoice.amount_pico_btc(), Some(100_000));
546                 assert_eq!(invoice.min_final_cltv_expiry(), MIN_FINAL_CLTV_EXPIRY as u64);
547                 assert_eq!(invoice.description(), InvoiceDescription::Direct(&Description("test".to_string())));
548                 assert_eq!(invoice.expiry_time(), Duration::from_secs(non_default_invoice_expiry_secs.into()));
549
550                 // Invoice SCIDs should always use inbound SCID aliases over the real channel ID, if one is
551                 // available.
552                 let chan = &nodes[1].node.list_usable_channels()[0];
553                 assert_eq!(invoice.route_hints().len(), 1);
554                 assert_eq!(invoice.route_hints()[0].0.len(), 1);
555                 assert_eq!(invoice.route_hints()[0].0[0].short_channel_id, chan.inbound_scid_alias.unwrap());
556
557                 assert_eq!(invoice.route_hints()[0].0[0].htlc_minimum_msat, chan.inbound_htlc_minimum_msat);
558                 assert_eq!(invoice.route_hints()[0].0[0].htlc_maximum_msat, chan.inbound_htlc_maximum_msat);
559
560                 let payment_params = PaymentParameters::from_node_id(invoice.recover_payee_pub_key())
561                         .with_features(invoice.features().unwrap().clone())
562                         .with_route_hints(invoice.route_hints());
563                 let route_params = RouteParameters {
564                         payment_params,
565                         final_value_msat: invoice.amount_milli_satoshis().unwrap(),
566                         final_cltv_expiry_delta: invoice.min_final_cltv_expiry() as u32,
567                 };
568                 let first_hops = nodes[0].node.list_usable_channels();
569                 let network_graph = node_cfgs[0].network_graph;
570                 let logger = test_utils::TestLogger::new();
571                 let scorer = test_utils::TestScorer::with_penalty(0);
572                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
573                 let route = find_route(
574                         &nodes[0].node.get_our_node_id(), &route_params, network_graph,
575                         Some(&first_hops.iter().collect::<Vec<_>>()), &logger, &scorer, &random_seed_bytes
576                 ).unwrap();
577
578                 let payment_event = {
579                         let mut payment_hash = PaymentHash([0; 32]);
580                         payment_hash.0.copy_from_slice(&invoice.payment_hash().as_ref()[0..32]);
581                         nodes[0].node.send_payment(&route, payment_hash, &Some(invoice.payment_secret().clone())).unwrap();
582                         let mut added_monitors = nodes[0].chain_monitor.added_monitors.lock().unwrap();
583                         assert_eq!(added_monitors.len(), 1);
584                         added_monitors.clear();
585
586                         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
587                         assert_eq!(events.len(), 1);
588                         SendEvent::from_event(events.remove(0))
589
590                 };
591                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
592                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &payment_event.commitment_msg);
593                 let mut added_monitors = nodes[1].chain_monitor.added_monitors.lock().unwrap();
594                 assert_eq!(added_monitors.len(), 1);
595                 added_monitors.clear();
596                 let events = nodes[1].node.get_and_clear_pending_msg_events();
597                 assert_eq!(events.len(), 2);
598         }
599
600         #[test]
601         fn test_create_invoice_with_description_hash() {
602                 let chanmon_cfgs = create_chanmon_cfgs(2);
603                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
604                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
605                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
606                 let description_hash = crate::Sha256(Hash::hash("Testing description_hash".as_bytes()));
607                 let invoice = ::utils::create_invoice_from_channelmanager_with_description_hash_and_duration_since_epoch(
608                         &nodes[1].node, nodes[1].keys_manager, Currency::BitcoinTestnet, Some(10_000),
609                         description_hash, Duration::from_secs(1234567), 3600
610                 ).unwrap();
611                 assert_eq!(invoice.amount_pico_btc(), Some(100_000));
612                 assert_eq!(invoice.min_final_cltv_expiry(), MIN_FINAL_CLTV_EXPIRY as u64);
613                 assert_eq!(invoice.description(), InvoiceDescription::Hash(&crate::Sha256(Sha256::hash("Testing description_hash".as_bytes()))));
614         }
615
616         #[test]
617         fn test_hints_includes_single_channels_to_nodes() {
618                 let chanmon_cfgs = create_chanmon_cfgs(3);
619                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
620                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
621                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
622
623                 let chan_1_0 = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 0, 100000, 10001, InitFeatures::known(), InitFeatures::known());
624                 let chan_2_0 = create_unannounced_chan_between_nodes_with_value(&nodes, 2, 0, 100000, 10001, InitFeatures::known(), InitFeatures::known());
625
626                 let mut scid_aliases = HashSet::new();
627                 scid_aliases.insert(chan_1_0.0.short_channel_id_alias.unwrap());
628                 scid_aliases.insert(chan_2_0.0.short_channel_id_alias.unwrap());
629
630                 match_invoice_routes(Some(5000), &nodes[0], scid_aliases);
631         }
632
633         #[test]
634         fn test_hints_has_only_highest_inbound_capacity_channel() {
635                 let chanmon_cfgs = create_chanmon_cfgs(2);
636                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
637                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
638                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
639                 let _chan_1_0_low_inbound_capacity = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 0, 100_000, 0, InitFeatures::known(), InitFeatures::known());
640                 let chan_1_0_high_inbound_capacity = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 0, 10_000_000, 0, InitFeatures::known(), InitFeatures::known());
641                 let _chan_1_0_medium_inbound_capacity = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 0, 1_000_000, 0, InitFeatures::known(), InitFeatures::known());
642
643                 let mut scid_aliases = HashSet::new();
644                 scid_aliases.insert(chan_1_0_high_inbound_capacity.0.short_channel_id_alias.unwrap());
645
646                 match_invoice_routes(Some(5000), &nodes[0], scid_aliases);
647         }
648
649         #[test]
650         fn test_forwarding_info_not_assigned_channel_excluded_from_hints() {
651                 let chanmon_cfgs = create_chanmon_cfgs(3);
652                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
653                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
654                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
655                 let chan_1_0 = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 0, 100000, 10001, InitFeatures::known(), InitFeatures::known());
656
657                 // Create an unannonced channel between `nodes[2]` and `nodes[0]`, for which the
658                 // `msgs::ChannelUpdate` is never handled for the node(s). As the `msgs::ChannelUpdate`
659                 // is never handled, the `channel.counterparty.forwarding_info` is never assigned.
660                 let mut private_chan_cfg = UserConfig::default();
661                 private_chan_cfg.channel_options.announced_channel = false;
662                 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();
663                 let open_channel = get_event_msg!(nodes[2], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
664                 nodes[0].node.handle_open_channel(&nodes[2].node.get_our_node_id(), InitFeatures::known(), &open_channel);
665                 let accept_channel = get_event_msg!(nodes[0], MessageSendEvent::SendAcceptChannel, nodes[2].node.get_our_node_id());
666                 nodes[2].node.handle_accept_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &accept_channel);
667
668                 let tx = sign_funding_transaction(&nodes[2], &nodes[0], 1_000_000, temporary_channel_id);
669
670                 let conf_height = core::cmp::max(nodes[2].best_block_info().1 + 1, nodes[0].best_block_info().1 + 1);
671                 confirm_transaction_at(&nodes[2], &tx, conf_height);
672                 connect_blocks(&nodes[2], CHAN_CONFIRM_DEPTH - 1);
673                 confirm_transaction_at(&nodes[0], &tx, conf_height);
674                 connect_blocks(&nodes[0], CHAN_CONFIRM_DEPTH - 1);
675                 let as_channel_ready = get_event_msg!(nodes[2], MessageSendEvent::SendChannelReady, nodes[0].node.get_our_node_id());
676                 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()));
677                 get_event_msg!(nodes[2], MessageSendEvent::SendChannelUpdate, nodes[0].node.get_our_node_id());
678                 nodes[0].node.handle_channel_ready(&nodes[2].node.get_our_node_id(), &as_channel_ready);
679                 get_event_msg!(nodes[0], MessageSendEvent::SendChannelUpdate, nodes[2].node.get_our_node_id());
680
681                 // As `msgs::ChannelUpdate` was never handled for the participating node(s) of the second
682                 // channel, the channel will never be assigned any `counterparty.forwarding_info`.
683                 // Therefore only `chan_1_0` should be included in the hints.
684                 let mut scid_aliases = HashSet::new();
685                 scid_aliases.insert(chan_1_0.0.short_channel_id_alias.unwrap());
686                 match_invoice_routes(Some(5000), &nodes[0], scid_aliases);
687         }
688
689         #[test]
690         fn test_no_hints_if_a_mix_between_public_and_private_channel_exists() {
691                 let chanmon_cfgs = create_chanmon_cfgs(3);
692                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
693                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
694                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
695                 let _chan_1_0 = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 0, 100000, 10001, InitFeatures::known(), InitFeatures::known());
696
697                 let chan_2_0 = create_announced_chan_between_nodes_with_value(&nodes, 2, 0, 100000, 10001, InitFeatures::known(), InitFeatures::known());
698                 nodes[2].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &chan_2_0.1);
699                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan_2_0.0);
700
701                 // Ensure that the invoice doesn't include any route hints for any of `nodes[0]` channels,
702                 // even though all channels between `nodes[1]` and `nodes[0]` are private, as there is a
703                 // public channel between `nodes[2]` and `nodes[0]`
704                 match_invoice_routes(Some(5000), &nodes[0], HashSet::new());
705         }
706
707         #[test]
708         fn test_only_public_channels_includes_no_channels_in_hints() {
709                 let chanmon_cfgs = create_chanmon_cfgs(3);
710                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
711                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
712                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
713                 let chan_1_0 = create_announced_chan_between_nodes_with_value(&nodes, 1, 0, 100000, 10001, InitFeatures::known(), InitFeatures::known());
714                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan_1_0.0);
715                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &chan_1_0.1);
716
717                 let chan_2_0 = create_announced_chan_between_nodes_with_value(&nodes, 2, 0, 100000, 10001, InitFeatures::known(), InitFeatures::known());
718                 nodes[2].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &chan_2_0.1);
719                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan_2_0.0);
720
721                 // As all of `nodes[0]` channels are public, no channels should be included in the hints
722                 match_invoice_routes(Some(5000), &nodes[0], HashSet::new());
723         }
724
725         #[test]
726         fn test_channels_with_lower_inbound_capacity_than_invoice_amt_hints_filtering() {
727                 let chanmon_cfgs = create_chanmon_cfgs(3);
728                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
729                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
730                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
731                 let chan_1_0 = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 0, 100_000, 0, InitFeatures::known(), InitFeatures::known());
732                 let chan_2_0 = create_unannounced_chan_between_nodes_with_value(&nodes, 2, 0, 1_000_000, 0, InitFeatures::known(), InitFeatures::known());
733
734                 // As the invoice amt is 1 msat above chan_1_0's inbound capacity, it shouldn't be included
735                 let mut scid_aliases_99_000_001_msat = HashSet::new();
736                 scid_aliases_99_000_001_msat.insert(chan_2_0.0.short_channel_id_alias.unwrap());
737
738                 match_invoice_routes(Some(99_000_001), &nodes[0], scid_aliases_99_000_001_msat);
739
740                 // As the invoice amt is exactly at chan_1_0's inbound capacity, it should be included
741                 let mut scid_aliases_99_000_000_msat = HashSet::new();
742                 scid_aliases_99_000_000_msat.insert(chan_1_0.0.short_channel_id_alias.unwrap());
743                 scid_aliases_99_000_000_msat.insert(chan_2_0.0.short_channel_id_alias.unwrap());
744
745                 match_invoice_routes(Some(99_000_000), &nodes[0], scid_aliases_99_000_000_msat);
746
747                 // As the invoice amt is above all channels' inbound capacity, they will still be included
748                 let mut scid_aliases_2_000_000_000_msat = HashSet::new();
749                 scid_aliases_2_000_000_000_msat.insert(chan_1_0.0.short_channel_id_alias.unwrap());
750                 scid_aliases_2_000_000_000_msat.insert(chan_2_0.0.short_channel_id_alias.unwrap());
751
752                 match_invoice_routes(Some(2_000_000_000), &nodes[0], scid_aliases_2_000_000_000_msat);
753
754                 // An invoice with no specified amount should include all channels in the route hints.
755                 let mut scid_aliases_no_specified_amount = HashSet::new();
756                 scid_aliases_no_specified_amount.insert(chan_1_0.0.short_channel_id_alias.unwrap());
757                 scid_aliases_no_specified_amount.insert(chan_2_0.0.short_channel_id_alias.unwrap());
758
759                 match_invoice_routes(None, &nodes[0], scid_aliases_no_specified_amount);
760         }
761
762         fn match_invoice_routes<'a, 'b: 'a, 'c: 'b>(
763                 invoice_amt: Option<u64>,
764                 invoice_node: &Node<'a, 'b, 'c>,
765                 mut chan_ids_to_match: HashSet<u64>
766         ) {
767                 let invoice = create_invoice_from_channelmanager_and_duration_since_epoch(
768                         &invoice_node.node, invoice_node.keys_manager, Currency::BitcoinTestnet, invoice_amt, "test".to_string(),
769                         Duration::from_secs(1234567), 3600).unwrap();
770                 let hints = invoice.private_routes();
771
772                 for hint in hints {
773                         let hint_short_chan_id = (hint.0).0[0].short_channel_id;
774                         assert!(chan_ids_to_match.remove(&hint_short_chan_id));
775                 }
776                 assert!(chan_ids_to_match.is_empty(), "Unmatched short channel ids: {:?}", chan_ids_to_match);
777         }
778
779         #[test]
780         #[cfg(feature = "std")]
781         fn test_multi_node_receive() {
782                 do_test_multi_node_receive(true);
783                 do_test_multi_node_receive(false);
784         }
785
786         #[cfg(feature = "std")]
787         fn do_test_multi_node_receive(user_generated_pmt_hash: bool) {
788                 let mut chanmon_cfgs = create_chanmon_cfgs(3);
789                 let seed_1 = [42 as u8; 32];
790                 let seed_2 = [43 as u8; 32];
791                 let cross_node_seed = [44 as u8; 32];
792                 chanmon_cfgs[1].keys_manager.backing = PhantomKeysManager::new(&seed_1, 43, 44, &cross_node_seed);
793                 chanmon_cfgs[2].keys_manager.backing = PhantomKeysManager::new(&seed_2, 43, 44, &cross_node_seed);
794                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
795                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
796                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
797                 let chan_0_1 = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
798                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan_0_1.1);
799                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &chan_0_1.0);
800                 let chan_0_2 = create_announced_chan_between_nodes_with_value(&nodes, 0, 2, 100000, 10001, InitFeatures::known(), InitFeatures::known());
801                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan_0_2.1);
802                 nodes[2].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &chan_0_2.0);
803
804                 let payment_amt = 10_000;
805                 let route_hints = vec![
806                         nodes[1].node.get_phantom_route_hints(),
807                         nodes[2].node.get_phantom_route_hints(),
808                 ];
809
810                 let user_payment_preimage = PaymentPreimage([1; 32]);
811                 let payment_hash = if user_generated_pmt_hash {
812                         Some(PaymentHash(Sha256::hash(&user_payment_preimage.0[..]).into_inner()))
813                 } else {
814                         None
815                 };
816                 let non_default_invoice_expiry_secs = 4200;
817
818                 let invoice =
819                         ::utils::create_phantom_invoice::<EnforcingSigner, &test_utils::TestKeysInterface>(
820                                 Some(payment_amt), payment_hash, "test".to_string(), non_default_invoice_expiry_secs,
821                                 route_hints, &nodes[1].keys_manager, Currency::BitcoinTestnet
822                         ).unwrap();
823                 let (payment_hash, payment_secret) = (PaymentHash(invoice.payment_hash().into_inner()), *invoice.payment_secret());
824                 let payment_preimage = if user_generated_pmt_hash {
825                         user_payment_preimage
826                 } else {
827                         nodes[1].node.get_payment_preimage(payment_hash, payment_secret).unwrap()
828                 };
829
830                 assert_eq!(invoice.min_final_cltv_expiry(), MIN_FINAL_CLTV_EXPIRY as u64);
831                 assert_eq!(invoice.description(), InvoiceDescription::Direct(&Description("test".to_string())));
832                 assert_eq!(invoice.route_hints().len(), 2);
833                 assert_eq!(invoice.expiry_time(), Duration::from_secs(non_default_invoice_expiry_secs.into()));
834                 assert!(!invoice.features().unwrap().supports_basic_mpp());
835
836                 let payment_params = PaymentParameters::from_node_id(invoice.recover_payee_pub_key())
837                         .with_features(invoice.features().unwrap().clone())
838                         .with_route_hints(invoice.route_hints());
839                 let params = RouteParameters {
840                         payment_params,
841                         final_value_msat: invoice.amount_milli_satoshis().unwrap(),
842                         final_cltv_expiry_delta: invoice.min_final_cltv_expiry() as u32,
843                 };
844                 let first_hops = nodes[0].node.list_usable_channels();
845                 let network_graph = node_cfgs[0].network_graph;
846                 let logger = test_utils::TestLogger::new();
847                 let scorer = test_utils::TestScorer::with_penalty(0);
848                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
849                 let route = find_route(
850                         &nodes[0].node.get_our_node_id(), &params, network_graph,
851                         Some(&first_hops.iter().collect::<Vec<_>>()), &logger, &scorer, &random_seed_bytes
852                 ).unwrap();
853                 let (payment_event, fwd_idx) = {
854                         let mut payment_hash = PaymentHash([0; 32]);
855                         payment_hash.0.copy_from_slice(&invoice.payment_hash().as_ref()[0..32]);
856                         nodes[0].node.send_payment(&route, payment_hash, &Some(invoice.payment_secret().clone())).unwrap();
857                         let mut added_monitors = nodes[0].chain_monitor.added_monitors.lock().unwrap();
858                         assert_eq!(added_monitors.len(), 1);
859                         added_monitors.clear();
860
861                         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
862                         assert_eq!(events.len(), 1);
863                         let fwd_idx = match events[0] {
864                                 MessageSendEvent::UpdateHTLCs { node_id, .. } => {
865                                         if node_id == nodes[1].node.get_our_node_id() {
866                                                 1
867                                         } else { 2 }
868                                 },
869                                 _ => panic!("Unexpected event")
870                         };
871                         (SendEvent::from_event(events.remove(0)), fwd_idx)
872                 };
873                 nodes[fwd_idx].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
874                 commitment_signed_dance!(nodes[fwd_idx], nodes[0], &payment_event.commitment_msg, false, true);
875
876                 // Note that we have to "forward pending HTLCs" twice before we see the PaymentReceived as
877                 // this "emulates" the payment taking two hops, providing some privacy to make phantom node
878                 // payments "look real" by taking more time.
879                 expect_pending_htlcs_forwardable_ignore!(nodes[fwd_idx]);
880                 nodes[fwd_idx].node.process_pending_htlc_forwards();
881                 expect_pending_htlcs_forwardable_ignore!(nodes[fwd_idx]);
882                 nodes[fwd_idx].node.process_pending_htlc_forwards();
883
884                 let payment_preimage_opt = if user_generated_pmt_hash { None } else { Some(payment_preimage) };
885                 expect_payment_received!(&nodes[fwd_idx], payment_hash, payment_secret, payment_amt, payment_preimage_opt);
886                 do_claim_payment_along_route(&nodes[0], &vec!(&vec!(&nodes[fwd_idx])[..]), false, payment_preimage);
887                 let events = nodes[0].node.get_and_clear_pending_events();
888                 assert_eq!(events.len(), 2);
889                 match events[0] {
890                         Event::PaymentSent { payment_preimage: ref ev_preimage, payment_hash: ref ev_hash, ref fee_paid_msat, .. } => {
891                                 assert_eq!(payment_preimage, *ev_preimage);
892                                 assert_eq!(payment_hash, *ev_hash);
893                                 assert_eq!(fee_paid_msat, &Some(0));
894                         },
895                         _ => panic!("Unexpected event")
896                 }
897                 match events[1] {
898                         Event::PaymentPathSuccessful { payment_hash: hash, .. } => {
899                                 assert_eq!(hash, Some(payment_hash));
900                         },
901                         _ => panic!("Unexpected event")
902                 }
903         }
904
905         #[test]
906         #[cfg(feature = "std")]
907         fn test_multi_node_hints_has_htlc_min_max_values() {
908                 let mut chanmon_cfgs = create_chanmon_cfgs(3);
909                 let seed_1 = [42 as u8; 32];
910                 let seed_2 = [43 as u8; 32];
911                 let cross_node_seed = [44 as u8; 32];
912                 chanmon_cfgs[1].keys_manager.backing = PhantomKeysManager::new(&seed_1, 43, 44, &cross_node_seed);
913                 chanmon_cfgs[2].keys_manager.backing = PhantomKeysManager::new(&seed_2, 43, 44, &cross_node_seed);
914                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
915                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
916                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
917
918                 create_unannounced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
919                 create_unannounced_chan_between_nodes_with_value(&nodes, 0, 2, 100000, 10001, InitFeatures::known(), InitFeatures::known());
920
921                 let payment_amt = 20_000;
922                 let (payment_hash, _payment_secret) = nodes[1].node.create_inbound_payment(Some(payment_amt), 3600).unwrap();
923                 let route_hints = vec![
924                         nodes[1].node.get_phantom_route_hints(),
925                         nodes[2].node.get_phantom_route_hints(),
926                 ];
927
928                 let invoice = ::utils::create_phantom_invoice::<EnforcingSigner, &test_utils::TestKeysInterface>(Some(payment_amt), Some(payment_hash), "test".to_string(), 3600, route_hints, &nodes[1].keys_manager, Currency::BitcoinTestnet).unwrap();
929
930                 let chan_0_1 = &nodes[1].node.list_usable_channels()[0];
931                 assert_eq!(invoice.route_hints()[0].0[0].htlc_minimum_msat, chan_0_1.inbound_htlc_minimum_msat);
932                 assert_eq!(invoice.route_hints()[0].0[0].htlc_maximum_msat, chan_0_1.inbound_htlc_maximum_msat);
933
934                 let chan_0_2 = &nodes[2].node.list_usable_channels()[0];
935                 assert_eq!(invoice.route_hints()[1].0[0].htlc_minimum_msat, chan_0_2.inbound_htlc_minimum_msat);
936                 assert_eq!(invoice.route_hints()[1].0[0].htlc_maximum_msat, chan_0_2.inbound_htlc_maximum_msat);
937         }
938
939         #[test]
940         #[cfg(feature = "std")]
941         fn create_phantom_invoice_with_description_hash() {
942                 let chanmon_cfgs = create_chanmon_cfgs(3);
943                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
944                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
945                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
946
947                 let payment_amt = 20_000;
948                 let route_hints = vec![
949                         nodes[1].node.get_phantom_route_hints(),
950                         nodes[2].node.get_phantom_route_hints(),
951                 ];
952
953                 let description_hash = crate::Sha256(Hash::hash("Description hash phantom invoice".as_bytes()));
954                 let non_default_invoice_expiry_secs = 4200;
955                 let invoice = ::utils::create_phantom_invoice_with_description_hash::<
956                         EnforcingSigner, &test_utils::TestKeysInterface,
957                 >(
958                         Some(payment_amt), None, non_default_invoice_expiry_secs, description_hash,
959                         route_hints, &nodes[1].keys_manager, Currency::BitcoinTestnet
960                 )
961                 .unwrap();
962                 assert_eq!(invoice.amount_pico_btc(), Some(200_000));
963                 assert_eq!(invoice.min_final_cltv_expiry(), MIN_FINAL_CLTV_EXPIRY as u64);
964                 assert_eq!(invoice.expiry_time(), Duration::from_secs(non_default_invoice_expiry_secs.into()));
965                 assert_eq!(invoice.description(), InvoiceDescription::Hash(&crate::Sha256(Sha256::hash("Description hash phantom invoice".as_bytes()))));
966         }
967
968         #[test]
969         #[cfg(feature = "std")]
970         fn test_multi_node_hints_includes_single_channels_to_participating_nodes() {
971                 let mut chanmon_cfgs = create_chanmon_cfgs(3);
972                 let seed_1 = [42 as u8; 32];
973                 let seed_2 = [43 as u8; 32];
974                 let cross_node_seed = [44 as u8; 32];
975                 chanmon_cfgs[1].keys_manager.backing = PhantomKeysManager::new(&seed_1, 43, 44, &cross_node_seed);
976                 chanmon_cfgs[2].keys_manager.backing = PhantomKeysManager::new(&seed_2, 43, 44, &cross_node_seed);
977                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
978                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
979                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
980
981                 let chan_0_1 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
982                 let chan_0_2 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 2, 100000, 10001, InitFeatures::known(), InitFeatures::known());
983
984                 let mut scid_aliases = HashSet::new();
985                 scid_aliases.insert(chan_0_1.0.short_channel_id_alias.unwrap());
986                 scid_aliases.insert(chan_0_2.0.short_channel_id_alias.unwrap());
987
988                 match_multi_node_invoice_routes(
989                         Some(10_000),
990                         &nodes[1],
991                         vec![&nodes[1], &nodes[2],],
992                         scid_aliases,
993                         false
994                 );
995         }
996
997         #[test]
998         #[cfg(feature = "std")]
999         fn test_multi_node_hints_includes_one_channel_of_each_counterparty_nodes_per_participating_node() {
1000                 let mut chanmon_cfgs = create_chanmon_cfgs(4);
1001                 let seed_1 = [42 as u8; 32];
1002                 let seed_2 = [43 as u8; 32];
1003                 let cross_node_seed = [44 as u8; 32];
1004                 chanmon_cfgs[2].keys_manager.backing = PhantomKeysManager::new(&seed_1, 43, 44, &cross_node_seed);
1005                 chanmon_cfgs[3].keys_manager.backing = PhantomKeysManager::new(&seed_2, 43, 44, &cross_node_seed);
1006                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
1007                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
1008                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
1009
1010                 let chan_0_2 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 2, 100000, 10001, InitFeatures::known(), InitFeatures::known());
1011                 let chan_0_3 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 3, 1000000, 10001, InitFeatures::known(), InitFeatures::known());
1012                 let chan_1_3 = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 3, 3_000_000, 10005, InitFeatures::known(), InitFeatures::known());
1013
1014                 let mut scid_aliases = HashSet::new();
1015                 scid_aliases.insert(chan_0_2.0.short_channel_id_alias.unwrap());
1016                 scid_aliases.insert(chan_0_3.0.short_channel_id_alias.unwrap());
1017                 scid_aliases.insert(chan_1_3.0.short_channel_id_alias.unwrap());
1018
1019                 match_multi_node_invoice_routes(
1020                         Some(10_000),
1021                         &nodes[2],
1022                         vec![&nodes[2], &nodes[3],],
1023                         scid_aliases,
1024                         false
1025                 );
1026         }
1027
1028         #[test]
1029         #[cfg(feature = "std")]
1030         fn test_multi_node_forwarding_info_not_assigned_channel_excluded_from_hints() {
1031                 let mut chanmon_cfgs = create_chanmon_cfgs(4);
1032                 let seed_1 = [42 as u8; 32];
1033                 let seed_2 = [43 as u8; 32];
1034                 let cross_node_seed = [44 as u8; 32];
1035                 chanmon_cfgs[2].keys_manager.backing = PhantomKeysManager::new(&seed_1, 43, 44, &cross_node_seed);
1036                 chanmon_cfgs[3].keys_manager.backing = PhantomKeysManager::new(&seed_2, 43, 44, &cross_node_seed);
1037                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
1038                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
1039                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
1040
1041                 let chan_0_2 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 2, 100000, 10001, InitFeatures::known(), InitFeatures::known());
1042                 let chan_0_3 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 3, 1000000, 10001, InitFeatures::known(), InitFeatures::known());
1043
1044                 // Create an unannonced channel between `nodes[1]` and `nodes[3]`, for which the
1045                 // `msgs::ChannelUpdate` is never handled for the node(s). As the `msgs::ChannelUpdate`
1046                 // is never handled, the `channel.counterparty.forwarding_info` is never assigned.
1047                 let mut private_chan_cfg = UserConfig::default();
1048                 private_chan_cfg.channel_options.announced_channel = false;
1049                 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();
1050                 let open_channel = get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[3].node.get_our_node_id());
1051                 nodes[3].node.handle_open_channel(&nodes[1].node.get_our_node_id(), InitFeatures::known(), &open_channel);
1052                 let accept_channel = get_event_msg!(nodes[3], MessageSendEvent::SendAcceptChannel, nodes[1].node.get_our_node_id());
1053                 nodes[1].node.handle_accept_channel(&nodes[3].node.get_our_node_id(), InitFeatures::known(), &accept_channel);
1054
1055                 let tx = sign_funding_transaction(&nodes[1], &nodes[3], 1_000_000, temporary_channel_id);
1056
1057                 let conf_height = core::cmp::max(nodes[1].best_block_info().1 + 1, nodes[3].best_block_info().1 + 1);
1058                 confirm_transaction_at(&nodes[1], &tx, conf_height);
1059                 connect_blocks(&nodes[1], CHAN_CONFIRM_DEPTH - 1);
1060                 confirm_transaction_at(&nodes[3], &tx, conf_height);
1061                 connect_blocks(&nodes[3], CHAN_CONFIRM_DEPTH - 1);
1062                 let as_channel_ready = get_event_msg!(nodes[1], MessageSendEvent::SendChannelReady, nodes[3].node.get_our_node_id());
1063                 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()));
1064                 get_event_msg!(nodes[1], MessageSendEvent::SendChannelUpdate, nodes[3].node.get_our_node_id());
1065                 nodes[3].node.handle_channel_ready(&nodes[1].node.get_our_node_id(), &as_channel_ready);
1066                 get_event_msg!(nodes[3], MessageSendEvent::SendChannelUpdate, nodes[1].node.get_our_node_id());
1067
1068                 // As `msgs::ChannelUpdate` was never handled for the participating node(s) of the third
1069                 // channel, the channel will never be assigned any `counterparty.forwarding_info`.
1070                 // Therefore only `chan_0_3` should be included in the hints for `nodes[3]`.
1071                 let mut scid_aliases = HashSet::new();
1072                 scid_aliases.insert(chan_0_2.0.short_channel_id_alias.unwrap());
1073                 scid_aliases.insert(chan_0_3.0.short_channel_id_alias.unwrap());
1074
1075                 match_multi_node_invoice_routes(
1076                         Some(10_000),
1077                         &nodes[2],
1078                         vec![&nodes[2], &nodes[3],],
1079                         scid_aliases,
1080                         false
1081                 );
1082         }
1083
1084         #[test]
1085         #[cfg(feature = "std")]
1086         fn test_multi_node_with_only_public_channels_hints_includes_only_phantom_route() {
1087                 let mut chanmon_cfgs = create_chanmon_cfgs(3);
1088                 let seed_1 = [42 as u8; 32];
1089                 let seed_2 = [43 as u8; 32];
1090                 let cross_node_seed = [44 as u8; 32];
1091                 chanmon_cfgs[1].keys_manager.backing = PhantomKeysManager::new(&seed_1, 43, 44, &cross_node_seed);
1092                 chanmon_cfgs[2].keys_manager.backing = PhantomKeysManager::new(&seed_2, 43, 44, &cross_node_seed);
1093                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
1094                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
1095                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
1096
1097                 let chan_0_1 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
1098
1099                 let chan_2_0 = create_announced_chan_between_nodes_with_value(&nodes, 2, 0, 100000, 10001, InitFeatures::known(), InitFeatures::known());
1100                 nodes[2].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &chan_2_0.1);
1101                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan_2_0.0);
1102
1103                 // Hints should include `chan_0_1` from as `nodes[1]` only have private channels, but not
1104                 // `chan_0_2` as `nodes[2]` only has public channels.
1105                 let mut scid_aliases = HashSet::new();
1106                 scid_aliases.insert(chan_0_1.0.short_channel_id_alias.unwrap());
1107
1108                 match_multi_node_invoice_routes(
1109                         Some(10_000),
1110                         &nodes[1],
1111                         vec![&nodes[1], &nodes[2],],
1112                         scid_aliases,
1113                         true
1114                 );
1115         }
1116
1117         #[test]
1118         #[cfg(feature = "std")]
1119         fn test_multi_node_with_mixed_public_and_private_channel_hints_includes_only_phantom_route() {
1120                 let mut chanmon_cfgs = create_chanmon_cfgs(4);
1121                 let seed_1 = [42 as u8; 32];
1122                 let seed_2 = [43 as u8; 32];
1123                 let cross_node_seed = [44 as u8; 32];
1124                 chanmon_cfgs[1].keys_manager.backing = PhantomKeysManager::new(&seed_1, 43, 44, &cross_node_seed);
1125                 chanmon_cfgs[2].keys_manager.backing = PhantomKeysManager::new(&seed_2, 43, 44, &cross_node_seed);
1126                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
1127                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
1128                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
1129
1130                 let chan_0_2 = create_announced_chan_between_nodes_with_value(&nodes, 0, 2, 100000, 10001, InitFeatures::known(), InitFeatures::known());
1131                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan_0_2.1);
1132                 nodes[2].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &chan_0_2.0);
1133                 let _chan_1_2 = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 2, 100000, 10001, InitFeatures::known(), InitFeatures::known());
1134
1135                 let chan_0_3 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 3, 100000, 10001, InitFeatures::known(), InitFeatures::known());
1136
1137                 // Hints should include `chan_0_3` from as `nodes[3]` only have private channels, and no
1138                 // channels for `nodes[2]` as it contains a mix of public and private channels.
1139                 let mut scid_aliases = HashSet::new();
1140                 scid_aliases.insert(chan_0_3.0.short_channel_id_alias.unwrap());
1141
1142                 match_multi_node_invoice_routes(
1143                         Some(10_000),
1144                         &nodes[2],
1145                         vec![&nodes[2], &nodes[3],],
1146                         scid_aliases,
1147                         true
1148                 );
1149         }
1150
1151         #[test]
1152         #[cfg(feature = "std")]
1153         fn test_multi_node_hints_has_only_highest_inbound_capacity_channel() {
1154                 let mut chanmon_cfgs = create_chanmon_cfgs(3);
1155                 let seed_1 = [42 as u8; 32];
1156                 let seed_2 = [43 as u8; 32];
1157                 let cross_node_seed = [44 as u8; 32];
1158                 chanmon_cfgs[1].keys_manager.backing = PhantomKeysManager::new(&seed_1, 43, 44, &cross_node_seed);
1159                 chanmon_cfgs[2].keys_manager.backing = PhantomKeysManager::new(&seed_2, 43, 44, &cross_node_seed);
1160                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
1161                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
1162                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
1163
1164                 let _chan_0_1_low_inbound_capacity = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 1, 100_000, 0, InitFeatures::known(), InitFeatures::known());
1165                 let chan_0_1_high_inbound_capacity = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 1, 10_000_000, 0, InitFeatures::known(), InitFeatures::known());
1166                 let _chan_0_1_medium_inbound_capacity = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 1, 1_000_000, 0, InitFeatures::known(), InitFeatures::known());
1167                 let chan_0_2 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 2, 100000, 10001, InitFeatures::known(), InitFeatures::known());
1168
1169                 let mut scid_aliases = HashSet::new();
1170                 scid_aliases.insert(chan_0_1_high_inbound_capacity.0.short_channel_id_alias.unwrap());
1171                 scid_aliases.insert(chan_0_2.0.short_channel_id_alias.unwrap());
1172
1173                 match_multi_node_invoice_routes(
1174                         Some(10_000),
1175                         &nodes[1],
1176                         vec![&nodes[1], &nodes[2],],
1177                         scid_aliases,
1178                         false
1179                 );
1180         }
1181
1182         #[test]
1183         #[cfg(feature = "std")]
1184         fn test_multi_node_channels_inbound_capacity_lower_than_invoice_amt_filtering() {
1185                 let mut chanmon_cfgs = create_chanmon_cfgs(4);
1186                 let seed_1 = [42 as u8; 32];
1187                 let seed_2 = [43 as u8; 32];
1188                 let cross_node_seed = [44 as u8; 32];
1189                 chanmon_cfgs[1].keys_manager.backing = PhantomKeysManager::new(&seed_1, 43, 44, &cross_node_seed);
1190                 chanmon_cfgs[2].keys_manager.backing = PhantomKeysManager::new(&seed_2, 43, 44, &cross_node_seed);
1191                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
1192                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
1193                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
1194
1195                 let chan_0_2 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 2, 1_000_000, 0, InitFeatures::known(), InitFeatures::known());
1196                 let chan_0_3 = create_unannounced_chan_between_nodes_with_value(&nodes, 0, 3, 100_000, 0, InitFeatures::known(), InitFeatures::known());
1197                 let chan_1_3 = create_unannounced_chan_between_nodes_with_value(&nodes, 1, 3, 200_000, 0, InitFeatures::known(), InitFeatures::known());
1198
1199                 // Since the invoice 1 msat above chan_0_3's inbound capacity, it should be filtered out.
1200                 let mut scid_aliases_99_000_001_msat = HashSet::new();
1201                 scid_aliases_99_000_001_msat.insert(chan_0_2.0.short_channel_id_alias.unwrap());
1202                 scid_aliases_99_000_001_msat.insert(chan_1_3.0.short_channel_id_alias.unwrap());
1203
1204                 match_multi_node_invoice_routes(
1205                         Some(99_000_001),
1206                         &nodes[2],
1207                         vec![&nodes[2], &nodes[3],],
1208                         scid_aliases_99_000_001_msat,
1209                         false
1210                 );
1211
1212                 // Since the invoice is exactly at chan_0_3's inbound capacity, it should be included.
1213                 let mut scid_aliases_99_000_000_msat = HashSet::new();
1214                 scid_aliases_99_000_000_msat.insert(chan_0_2.0.short_channel_id_alias.unwrap());
1215                 scid_aliases_99_000_000_msat.insert(chan_0_3.0.short_channel_id_alias.unwrap());
1216                 scid_aliases_99_000_000_msat.insert(chan_1_3.0.short_channel_id_alias.unwrap());
1217
1218                 match_multi_node_invoice_routes(
1219                         Some(99_000_000),
1220                         &nodes[2],
1221                         vec![&nodes[2], &nodes[3],],
1222                         scid_aliases_99_000_000_msat,
1223                         false
1224                 );
1225
1226                 // Since the invoice is above all of `nodes[2]` channels' inbound capacity, all of
1227                 // `nodes[2]` them should be included.
1228                 let mut scid_aliases_300_000_000_msat = HashSet::new();
1229                 scid_aliases_300_000_000_msat.insert(chan_0_2.0.short_channel_id_alias.unwrap());
1230                 scid_aliases_300_000_000_msat.insert(chan_0_3.0.short_channel_id_alias.unwrap());
1231                 scid_aliases_300_000_000_msat.insert(chan_1_3.0.short_channel_id_alias.unwrap());
1232
1233                 match_multi_node_invoice_routes(
1234                         Some(300_000_000),
1235                         &nodes[2],
1236                         vec![&nodes[2], &nodes[3],],
1237                         scid_aliases_300_000_000_msat,
1238                         false
1239                 );
1240
1241                 // Since the no specified amount, all channels should included.
1242                 let mut scid_aliases_no_specified_amount = HashSet::new();
1243                 scid_aliases_no_specified_amount.insert(chan_0_2.0.short_channel_id_alias.unwrap());
1244                 scid_aliases_no_specified_amount.insert(chan_0_3.0.short_channel_id_alias.unwrap());
1245                 scid_aliases_no_specified_amount.insert(chan_1_3.0.short_channel_id_alias.unwrap());
1246
1247                 match_multi_node_invoice_routes(
1248                         None,
1249                         &nodes[2],
1250                         vec![&nodes[2], &nodes[3],],
1251                         scid_aliases_no_specified_amount,
1252                         false
1253                 );
1254         }
1255
1256         #[cfg(feature = "std")]
1257         fn match_multi_node_invoice_routes<'a, 'b: 'a, 'c: 'b>(
1258                 invoice_amt: Option<u64>,
1259                 invoice_node: &Node<'a, 'b, 'c>,
1260                 network_multi_nodes: Vec<&Node<'a, 'b, 'c>>,
1261                 mut chan_ids_to_match: HashSet<u64>,
1262                 nodes_contains_public_channels: bool
1263         ){
1264                 let phantom_route_hints = network_multi_nodes.iter()
1265                         .map(|node| node.node.get_phantom_route_hints())
1266                         .collect::<Vec<PhantomRouteHints>>();
1267                 let phantom_scids = phantom_route_hints.iter()
1268                         .map(|route_hint| route_hint.phantom_scid)
1269                         .collect::<HashSet<u64>>();
1270
1271                 let invoice = ::utils::create_phantom_invoice::<EnforcingSigner, &test_utils::TestKeysInterface>(invoice_amt, None, "test".to_string(), 3600, phantom_route_hints, &invoice_node.keys_manager, Currency::BitcoinTestnet).unwrap();
1272
1273                 let invoice_hints = invoice.private_routes();
1274
1275                 for hint in invoice_hints {
1276                         let hints = &(hint.0).0;
1277                         match hints.len() {
1278                                 1 => {
1279                                         assert!(nodes_contains_public_channels);
1280                                         let phantom_scid = hints[0].short_channel_id;
1281                                         assert!(phantom_scids.contains(&phantom_scid));
1282                                 },
1283                                 2 => {
1284                                         let hint_short_chan_id = hints[0].short_channel_id;
1285                                         assert!(chan_ids_to_match.remove(&hint_short_chan_id));
1286                                         let phantom_scid = hints[1].short_channel_id;
1287                                         assert!(phantom_scids.contains(&phantom_scid));
1288                                 },
1289                                 _ => panic!("Incorrect hint length generated")
1290                         }
1291                 }
1292                 assert!(chan_ids_to_match.is_empty(), "Unmatched short channel ids: {:?}", chan_ids_to_match);
1293         }
1294 }