From 5a3bcc093db873ad78bc9a9395aec0711e9dacf9 Mon Sep 17 00:00:00 2001 From: Nick Johnson Date: Wed, 26 Apr 2023 09:03:45 -0700 Subject: [PATCH] Add comment for private channel filter --- lnd/lnd.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lnd/lnd.go b/lnd/lnd.go index 99db57c..0e2c3fa 100644 --- a/lnd/lnd.go +++ b/lnd/lnd.go @@ -181,6 +181,8 @@ func (l Lnd) GetChannel(ctx context.Context, channelID lightning.ChannelID) (lig } // ListChannels of local node. +// +// Assumes we don't want to act on private channel liquidity management. func (l Lnd) ListChannels(ctx context.Context) (lightning.Channels, error) { channelInfos, err := l.c.ListChannels(ctx, false, true) if err != nil {