@@ -77,6 +77,7 @@ use crate::onion_message::async_payments::{AsyncPaymentsMessage, HeldHtlcAvailab
77
77
use crate::onion_message::dns_resolution::HumanReadableName;
78
78
use crate::onion_message::messenger::{Destination, MessageRouter, Responder, ResponseInstruction, MessageSendInstructions};
79
79
use crate::onion_message::offers::{OffersMessage, OffersMessageHandler};
80
+ use crate::onion_message::packet::OnionMessageContents;
80
81
use crate::sign::{EntropySource, NodeSigner, Recipient, SignerProvider};
81
82
use crate::sign::ecdsa::EcdsaChannelSigner;
82
83
use crate::util::config::{ChannelConfig, ChannelConfigUpdate, ChannelConfigOverrides, UserConfig};
@@ -1733,7 +1734,7 @@ where
1733
1734
/// let default_config = UserConfig::default();
1734
1735
/// let channel_manager = ChannelManager::new(
1735
1736
/// fee_estimator, chain_monitor, tx_broadcaster, router, message_router, logger,
1736
- /// entropy_source, node_signer, signer_provider, default_config, params, current_timestamp,
1737
+ /// entropy_source, node_signer, signer_provider, default_config.clone() , params, current_timestamp,
1737
1738
/// );
1738
1739
///
1739
1740
/// // Restart from deserialized data
@@ -4954,19 +4955,10 @@ where
4954
4955
};
4955
4956
4956
4957
let mut pending_async_payments_messages = self.pending_async_payments_messages.lock().unwrap();
4957
- const HTLC_AVAILABLE_LIMIT: usize = 10;
4958
- reply_paths
4959
- .iter()
4960
- .flat_map(|reply_path| invoice.message_paths().iter().map(move |invoice_path| (invoice_path, reply_path)))
4961
- .take(HTLC_AVAILABLE_LIMIT)
4962
- .for_each(|(invoice_path, reply_path)| {
4963
- let instructions = MessageSendInstructions::WithSpecifiedReplyPath {
4964
- destination: Destination::BlindedPath(invoice_path.clone()),
4965
- reply_path: reply_path.clone(),
4966
- };
4967
- let message = AsyncPaymentsMessage::HeldHtlcAvailable(HeldHtlcAvailable {});
4968
- pending_async_payments_messages.push((message, instructions));
4969
- });
4958
+ let message = AsyncPaymentsMessage::HeldHtlcAvailable(HeldHtlcAvailable {});
4959
+ enqueue_onion_message_with_reply_paths(
4960
+ message, invoice.message_paths(), reply_paths, &mut pending_async_payments_messages
4961
+ );
4970
4962
4971
4963
NotifyOption::DoPersist
4972
4964
});
@@ -10530,18 +10522,10 @@ where
10530
10522
) -> Result<(), Bolt12SemanticError> {
10531
10523
let mut pending_offers_messages = self.pending_offers_messages.lock().unwrap();
10532
10524
if !invoice_request.paths().is_empty() {
10533
- reply_paths
10534
- .iter()
10535
- .flat_map(|reply_path| invoice_request.paths().iter().map(move |path| (path, reply_path)))
10536
- .take(OFFERS_MESSAGE_REQUEST_LIMIT)
10537
- .for_each(|(path, reply_path)| {
10538
- let instructions = MessageSendInstructions::WithSpecifiedReplyPath {
10539
- destination: Destination::BlindedPath(path.clone()),
10540
- reply_path: reply_path.clone(),
10541
- };
10542
- let message = OffersMessage::InvoiceRequest(invoice_request.clone());
10543
- pending_offers_messages.push((message, instructions));
10544
- });
10525
+ let message = OffersMessage::InvoiceRequest(invoice_request.clone());
10526
+ enqueue_onion_message_with_reply_paths(
10527
+ message, invoice_request.paths(), reply_paths, &mut pending_offers_messages
10528
+ );
10545
10529
} else if let Some(node_id) = invoice_request.issuer_signing_pubkey() {
10546
10530
for reply_path in reply_paths {
10547
10531
let instructions = MessageSendInstructions::WithSpecifiedReplyPath {
@@ -10639,18 +10623,10 @@ where
10639
10623
pending_offers_messages.push((message, instructions));
10640
10624
}
10641
10625
} else {
10642
- reply_paths
10643
- .iter()
10644
- .flat_map(|reply_path| refund.paths().iter().map(move |path| (path, reply_path)))
10645
- .take(OFFERS_MESSAGE_REQUEST_LIMIT)
10646
- .for_each(|(path, reply_path)| {
10647
- let instructions = MessageSendInstructions::WithSpecifiedReplyPath {
10648
- destination: Destination::BlindedPath(path.clone()),
10649
- reply_path: reply_path.clone(),
10650
- };
10651
- let message = OffersMessage::Invoice(invoice.clone());
10652
- pending_offers_messages.push((message, instructions));
10653
- });
10626
+ let message = OffersMessage::Invoice(invoice.clone());
10627
+ enqueue_onion_message_with_reply_paths(
10628
+ message, refund.paths(), reply_paths, &mut pending_offers_messages
10629
+ );
10654
10630
}
10655
10631
10656
10632
Ok(invoice)
@@ -12792,6 +12768,27 @@ where
12792
12768
}
12793
12769
}
12794
12770
12771
+ fn enqueue_onion_message_with_reply_paths<T: OnionMessageContents + Clone>(
12772
+ message: T, message_paths: &[BlindedMessagePath], reply_paths: Vec<BlindedMessagePath>,
12773
+ queue: &mut Vec<(T, MessageSendInstructions)>
12774
+ ) {
12775
+ reply_paths
12776
+ .iter()
12777
+ .flat_map(|reply_path|
12778
+ message_paths
12779
+ .iter()
12780
+ .map(move |path| (path.clone(), reply_path))
12781
+ )
12782
+ .take(OFFERS_MESSAGE_REQUEST_LIMIT)
12783
+ .for_each(|(path, reply_path)| {
12784
+ let instructions = MessageSendInstructions::WithSpecifiedReplyPath {
12785
+ destination: Destination::BlindedPath(path.clone()),
12786
+ reply_path: reply_path.clone(),
12787
+ };
12788
+ queue.push((message.clone(), instructions));
12789
+ });
12790
+ }
12791
+
12795
12792
/// Fetches the set of [`NodeFeatures`] flags that are provided by or required by
12796
12793
/// [`ChannelManager`].
12797
12794
pub(crate) fn provided_node_features(config: &UserConfig) -> NodeFeatures {
@@ -16076,7 +16073,7 @@ mod tests {
16076
16073
let chanmon_cfg = create_chanmon_cfgs(2);
16077
16074
let node_cfg = create_node_cfgs(2, &chanmon_cfg);
16078
16075
let mut user_config = test_default_channel_config();
16079
- let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config) , Some(user_config)]);
16076
+ let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config.clone()) , Some(user_config.clone() )]);
16080
16077
let nodes = create_network(2, &node_cfg, &node_chanmgr);
16081
16078
let _ = create_announced_chan_between_nodes(&nodes, 0, 1);
16082
16079
let channel = &nodes[0].node.list_channels()[0];
@@ -16163,7 +16160,7 @@ mod tests {
16163
16160
let chanmon_cfg = create_chanmon_cfgs(2);
16164
16161
let node_cfg = create_node_cfgs(2, &chanmon_cfg);
16165
16162
let user_config = test_default_channel_config();
16166
- let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
16163
+ let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config.clone() ), Some(user_config)]);
16167
16164
let nodes = create_network(2, &node_cfg, &node_chanmgr);
16168
16165
let error_message = "Channel force-closed";
16169
16166
0 commit comments