build: bump lnd dependency to v0.17.4-beta

This commit is contained in:
Andras Banki-Horvath 2024-02-09 18:08:13 +01:00
parent c6e8664281
commit 12f7956fd8
No known key found for this signature in database
GPG key ID: 80E5375C094198D8
4 changed files with 27 additions and 25 deletions

View file

@ -161,13 +161,15 @@ func (m *mockWalletKit) EstimateFeeRate(ctx context.Context,
}
// ListSweeps returns a list of the sweep transaction ids known to our node.
func (m *mockWalletKit) ListSweeps(_ context.Context) ([]string, error) {
func (m *mockWalletKit) ListSweeps(_ context.Context, _ int32) (
[]string, error) {
return m.lnd.Sweeps, nil
}
// ListSweepsVerbose returns a list of sweep transactions known to our node
// with verbose information about each sweep.
func (m *mockWalletKit) ListSweepsVerbose(ctx context.Context) (
func (m *mockWalletKit) ListSweepsVerbose(ctx context.Context, _ int32) (
[]lnwallet.TransactionDetail, error) {
return m.lnd.SweepsVerbose, nil