]> git.bitcoin.ninja Git - rust-lightning/commitdiff
Make `as_directed_to` non-public
authorMatt Corallo <git@bluematt.me>
Tue, 1 Mar 2022 03:46:52 +0000 (03:46 +0000)
committerMatt Corallo <git@bluematt.me>
Tue, 3 Sep 2024 14:00:23 +0000 (14:00 +0000)
...as the bindings generation does not currently have the ability
to map a reference to a `NodeId` inside a tuple.

lightning/src/routing/gossip.rs

index f1bc73110bf9d6a24065cb339e0f88141e2d7798..839c86873159211e30a3270e1795ad06a5d84efe 100644 (file)
@@ -955,7 +955,7 @@ impl PartialEq for ChannelInfo {
 impl ChannelInfo {
        /// Returns a [`DirectedChannelInfo`] for the channel directed to the given `target` from a
        /// returned `source`, or `None` if `target` is not one of the channel's counterparties.
-       pub fn as_directed_to(&self, target: &NodeId) -> Option<(DirectedChannelInfo, &NodeId)> {
+       pub(crate) fn as_directed_to(&self, target: &NodeId) -> Option<(DirectedChannelInfo, &NodeId)> {
                if self.one_to_two.is_none() || self.two_to_one.is_none() { return None; }
                let (direction, source, outbound) = {
                        if target == &self.node_one {