mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
multi: update lnd compile-time dependency to v0.19.0
This commit is contained in:
parent
800f0e0fba
commit
722ad8839d
29 changed files with 127 additions and 125 deletions
|
|
@ -12,7 +12,7 @@ import (
|
|||
"github.com/btcsuite/btcd/btcec/v2"
|
||||
"github.com/btcsuite/btcd/btcutil"
|
||||
"github.com/btcsuite/btcd/wire"
|
||||
"github.com/btcsuite/btclog"
|
||||
"github.com/btcsuite/btclog/v2"
|
||||
"github.com/lightninglabs/lndclient"
|
||||
"github.com/lightninglabs/loop/loopdb"
|
||||
"github.com/lightninglabs/loop/sweep"
|
||||
|
|
@ -258,9 +258,9 @@ func testCustomSweepConfTarget(t *testing.T) {
|
|||
defer test.Guard(t)()
|
||||
|
||||
// Setup logger for sweepbatcher.
|
||||
logger := btclog.NewBackend(os.Stdout).Logger("SWEEP")
|
||||
logger := btclog.NewSLogger(btclog.NewDefaultHandler(os.Stdout))
|
||||
logger.SetLevel(btclog.LevelTrace)
|
||||
sweepbatcher.UseLogger(logger)
|
||||
sweepbatcher.UseLogger(logger.SubSystem("SWEEP"))
|
||||
|
||||
lnd := test.NewMockLnd()
|
||||
ctx := test.NewContext(t, lnd)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue