Restrict ChannelInfo::as_directed_from visibility
[rust-lightning] / lightning / src / routing / gossip.rs
index daff872309877510ebcd2a1df42473c38f29401d..44c2e5ba0d0b85b41f057fc45666f1a55b566d7b 100644 (file)
@@ -683,7 +683,7 @@ impl ChannelInfo {
 
        /// Returns a [`DirectedChannelInfo`] for the channel directed from the given `source` to a
        /// returned `target`, or `None` if `source` is not one of the channel's counterparties.
-       pub fn as_directed_from(&self, source: &NodeId) -> Option<(DirectedChannelInfo, &NodeId)> {
+       pub(crate) fn as_directed_from(&self, source: &NodeId) -> Option<(DirectedChannelInfo, &NodeId)> {
                let (direction, target) = {
                        if source == &self.node_one {
                                (self.one_to_two.as_ref(), &self.node_two)