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=292900fa06d9ee97b748be62b2b1cd045049fc89;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 d41866d2a..c88252a15 100644 --- a/lightning/src/routing/gossip.rs +++ b/lightning/src/routing/gossip.rs @@ -972,7 +972,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)> { if self.one_to_two.is_none() || self.two_to_one.is_none() { return None; } let (direction, target, outbound) = { if source == &self.node_one {