From bc9a481324e5fc90e23ed0bbf3b0cb0d8ca39b4f Mon Sep 17 00:00:00 2001 From: Alex Myers Date: Tue, 22 Aug 2023 14:51:32 -0500 Subject: [PATCH] REMOVE: temporarily ignore private channels in gossmap --- plugins/topology.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/topology.c b/plugins/topology.c index 77992608db76..54e906df3f61 100644 --- a/plugins/topology.c +++ b/plugins/topology.c @@ -642,6 +642,9 @@ static struct command_result *listprivateinbound_done(struct command *cmd, /* Entirely missing? Ignore. */ if (ourchan->cupdate_off[!dir] == 0) continue; + /* FIXME: Rip out once private gossip removed. */ + if (ourchan->private) + continue; /* We used to ignore if the peer said it was disabled, * but we have a report of LND telling us our unannounced * channel is disabled, so we still use them. */