Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lightning/src/onion_message/messenger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,11 @@ impl Responder {
Responder { reply_path }
}

/// Returns the reply path for this [`Responder`].
pub fn reply_path(&self) -> &BlindedMessagePath {
&self.reply_path
}

/// Creates a [`ResponseInstruction`] for responding without including a reply path.
///
/// Use when the recipient doesn't need to send back a reply to us.
Expand Down
Loading