diff --git a/lnd/lnd.go b/lnd/lnd.go index c192c71..99db57c 100644 --- a/lnd/lnd.go +++ b/lnd/lnd.go @@ -182,7 +182,7 @@ func (l Lnd) GetChannel(ctx context.Context, channelID lightning.ChannelID) (lig // ListChannels of local node. func (l Lnd) ListChannels(ctx context.Context) (lightning.Channels, error) { - channelInfos, err := l.c.ListChannels(ctx, false, false) + channelInfos, err := l.c.ListChannels(ctx, false, true) if err != nil { return nil, err }