We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85ba6fd commit d5636e2Copy full SHA for d5636e2
lightning/src/onion_message/messenger.rs
@@ -360,6 +360,8 @@ where
360
}
361
};
362
363
+ let peers = self.pending_messages.lock().unwrap().keys().copied().collect();
364
+
365
let destination = match reply_path {
366
Some(reply_path) => Destination::BlindedPath(reply_path),
367
None => {
@@ -371,7 +373,7 @@ where
371
373
},
372
374
375
- let path = match self.message_router.find_path(&sender, destination) {
376
+ let path = match self.message_router.find_path(sender, peers, destination) {
377
Ok(path) => path,
378
Err(()) => {
379
log_info!(
0 commit comments