multi: bump lndclient to v0.12.0-13

To allow code with more up-to-date dependencies to import loop, we
bump our lndclient version. The minimum loop version remains 11.1
since we're not using any new apis.
This commit is contained in:
carla 2021-10-24 10:08:23 +02:00
parent 4c58d0c5e8
commit cca5926263
No known key found for this signature in database
GPG key ID: 4CA7FE54A6213C91
5 changed files with 10 additions and 7 deletions

View file

@ -181,7 +181,7 @@ func (h *mockLightningClient) ListTransactions(
}
// ListChannels retrieves all channels of the backing lnd node.
func (h *mockLightningClient) ListChannels(ctx context.Context) (
func (h *mockLightningClient) ListChannels(ctx context.Context, _, _ bool) (
[]lndclient.ChannelInfo, error) {
return h.lnd.Channels, nil