From 1f793c60b9cb094f5f693904adc52941a2c20c8e 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 984518e01e72..8db51b315850 100644 --- a/plugins/topology.c +++ b/plugins/topology.c @@ -623,6 +623,9 @@ static struct command_result *listprivateinbound_done(struct command *cmd, struct amount_msat htlc_max; ourchan = gossmap_nth_chan(gossmap, me, i, &dir); + /* FIXME: Rip out once private gossip removed. */ + if (ourchan->private) + continue; /* Entirely missing? Ignore. */ if (ourchan->cupdate_off[!dir] == 0) continue;