Skip to content

Commit

Permalink
REMOVE: temporarily ignore private channels in gossmap
Browse files Browse the repository at this point in the history
  • Loading branch information
endothermicdev committed Aug 25, 2023
1 parent e693f01 commit 1f793c6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions plugins/topology.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1f793c6

Please sign in to comment.