mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
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:
parent
9c30101500
commit
977b72019d
5 changed files with 30 additions and 20 deletions
|
|
@ -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")
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue