mod+liquidity+test: update to latest lndclient+tapd

Required to build litd with the latest lnd+tapd.
This commit is contained in:
Oliver Gugger 2025-04-23 15:35:33 +02:00
parent 872137e3c7
commit c70dcc5449
No known key found for this signature in database
GPG key ID: 8E4256593F177720
5 changed files with 116 additions and 119 deletions

View file

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