mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
build: bump lnd dependency to v0.17.4-beta
This commit is contained in:
parent
c6e8664281
commit
12f7956fd8
4 changed files with 27 additions and 25 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue