From: Jeffrey Czyz Date: Tue, 29 Mar 2022 15:20:39 +0000 (-0500) Subject: Restrict ChannelInfo::as_directed_from visibility X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=f4f087d89d3b429d4daaa5346ffe16a92b809571;p=rust-lightning Restrict ChannelInfo::as_directed_from visibility Bindings can't handle references in return types, so reduce the visibility to pub(crate). --- diff --git a/lightning/src/routing/gossip.rs b/lightning/src/routing/gossip.rs index 6226b773..06c45575 100644 --- a/lightning/src/routing/gossip.rs +++ b/lightning/src/routing/gossip.rs @@ -727,7 +727,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)