loopd: bump minimum lnd version to v0.15.1-beta

In this commit we bump the minimum LND version required to run loopd to
v0.15.1-beta in order to ensure that the underlying chain backend
supports taproot (https://github.com/lightningnetwork/lnd/pull/6798)
This commit is contained in:
Andras Banki-Horvath 2022-10-07 12:23:10 +02:00
parent 9c30101500
commit 977b72019d
No known key found for this signature in database
GPG key ID: 80E5375C094198D8
5 changed files with 30 additions and 20 deletions

View file

@ -33,7 +33,8 @@ func (s *mockSigner) SignOutputRaw(ctx context.Context, tx *wire.MsgTx,
}
func (s *mockSigner) ComputeInputScript(ctx context.Context, tx *wire.MsgTx,
signDescriptors []*lndclient.SignDescriptor) ([]*input.Script, error) {
signDescriptors []*lndclient.SignDescriptor,
prevOutputs []*wire.TxOut) ([]*input.Script, error) {
return nil, fmt.Errorf("unimplemented")
}

View file

@ -3,9 +3,11 @@ package test
import (
"context"
"errors"
"fmt"
"sync"
"time"
"github.com/btcsuite/btcd/btcec/v2"
"github.com/btcsuite/btcd/btcutil"
"github.com/btcsuite/btcd/btcutil/psbt"
"github.com/btcsuite/btcd/chaincfg"
@ -233,3 +235,10 @@ func (m *mockWalletKit) FinalizePsbt(_ context.Context, _ *psbt.Packet,
return nil, nil, nil
}
// ImportPublicKey imports a public key as watch-only into the wallet.
func (m *mockWalletKit) ImportPublicKey(ctx context.Context,
pubkey *btcec.PublicKey, addrType lnwallet.AddressType) error {
return fmt.Errorf("unimplemented")
}