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=0c0383ce79f72fd3669e2b403f857689cfb5b6a4;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 e1cc24f83..7831e20fa 100644 --- a/lightning/src/routing/gossip.rs +++ b/lightning/src/routing/gossip.rs @@ -893,7 +893,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, outbound) = { if source == &self.node_one { (self.one_to_two.as_ref(), &self.node_two, true)