Skip to content

Commit 1dc18c2

Browse files
committed
make blinded path public
1 parent ebdbee0 commit 1dc18c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lightning/src/blinded_path/message.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ use core::ops::Deref;
3838
/// A blinded path to be used for sending or receiving a message, hiding the identity of the
3939
/// recipient.
4040
#[derive(Clone, Debug, Hash, PartialEq, Eq)]
41-
pub struct BlindedMessagePath(pub(super) BlindedPath);
41+
pub struct BlindedMessagePath(pub BlindedPath);
4242

4343
impl Writeable for BlindedMessagePath {
4444
fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {

lightning/src/blinded_path/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ use crate::prelude::*;
2626
/// Onion messages and payments can be sent and received to blinded paths, which serve to hide the
2727
/// identity of the recipient.
2828
#[derive(Clone, Debug, Hash, PartialEq, Eq)]
29-
pub(crate) struct BlindedPath {
29+
pub struct BlindedPath {
3030
/// To send to a blinded path, the sender first finds a route to the unblinded
3131
/// `introduction_node`, which can unblind its [`encrypted_payload`] to find out the onion
3232
/// message or payment's next hop and forward it along.

0 commit comments

Comments
 (0)