]> git.bitcoin.ninja Git - rust-lightning/commitdiff
Hide `Direction::select_node_id` due to lifetimes
authorMatt Corallo <git@bluematt.me>
Sat, 11 May 2024 16:12:39 +0000 (16:12 +0000)
committerMatt Corallo <git@bluematt.me>
Mon, 14 Oct 2024 19:15:11 +0000 (19:15 +0000)
lightning/src/blinded_path/mod.rs

index 168bc7174d6b7a2ce3df070a126c8a4f43284fa0..fd1846492a13038a7d4d32f9e49bc0569db32767 100644 (file)
@@ -185,7 +185,7 @@ impl_writeable!(BlindedHop, {
 
 impl Direction {
        /// Returns the [`NodeId`] from the inputs corresponding to the direction.
-       pub fn select_node_id(&self, node_a: NodeId, node_b: NodeId) -> NodeId {
+       pub(crate) fn select_node_id(&self, node_a: NodeId, node_b: NodeId) -> NodeId {
                match self {
                        Direction::NodeOne => core::cmp::min(node_a, node_b),
                        Direction::NodeTwo => core::cmp::max(node_a, node_b),
@@ -193,7 +193,7 @@ impl Direction {
        }
 
        /// Returns the [`PublicKey`] from the inputs corresponding to the direction.
-       pub fn select_pubkey<'a>(&self, node_a: &'a PublicKey, node_b: &'a PublicKey) -> &'a PublicKey {
+       pub(crate) fn select_pubkey<'a>(&self, node_a: &'a PublicKey, node_b: &'a PublicKey) -> &'a PublicKey {
                let (node_one, node_two) = if NodeId::from_pubkey(node_a) < NodeId::from_pubkey(node_b) {
                        (node_a, node_b)
                } else {