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 {