multi: update lnd compile-time dependency to v0.19.0

This commit is contained in:
Oliver Gugger 2025-03-06 14:03:27 +01:00
parent 800f0e0fba
commit 722ad8839d
No known key found for this signature in database
GPG key ID: 8E4256593F177720
29 changed files with 127 additions and 125 deletions

View file

@ -1,24 +1,12 @@
package test
import (
"os"
"github.com/btcsuite/btclog"
"github.com/lightningnetwork/lnd/build"
)
// log is a logger that is initialized with no output filters. This
// means the package will not perform any logging by default until the caller
// requests it.
var (
backendLog = btclog.NewBackend(logWriter{})
logger = backendLog.Logger("TEST")
logger = build.NewSubLogger("TEST", nil)
)
// logWriter implements an io.Writer that outputs to both standard output and
// the write-end pipe of an initialized log rotator.
type logWriter struct{}
func (logWriter) Write(p []byte) (int, error) {
os.Stdout.Write(p)
return len(p), nil
}

View file

@ -190,7 +190,7 @@ func (m *mockWalletKit) ListSweepsVerbose(ctx context.Context, _ int32) (
// used in a previous BumpFee call, then a transaction replacing the
// previous is broadcast, resulting in a replace-by-fee (RBF) scenario.
func (m *mockWalletKit) BumpFee(context.Context, wire.OutPoint,
chainfee.SatPerKWeight) error {
chainfee.SatPerKWeight, ...lndclient.BumpFeeOption) error {
return nil
}