mod: bump LND and lndclient to include musig2 1.0rc2 changes

This commit bumps LND and lndclient to make it possible to upgrade
taproot HTLC construction with a MuSig2 version. This is required to
support both old (MuSig2 0.4) and new (MuSig2 1.0) clients.
This commit is contained in:
Andras Banki-Horvath 2023-01-09 16:36:52 +01:00
parent d5336adbeb
commit a7451622e5
No known key found for this signature in database
GPG key ID: 80E5375C094198D8
14 changed files with 266 additions and 106 deletions

View file

@ -11,7 +11,7 @@ import (
"github.com/lightninglabs/lndclient"
"github.com/lightninglabs/loop/loopdb"
"github.com/lightninglabs/loop/test"
"github.com/lightningnetwork/lnd/channeldb"
invpkg "github.com/lightningnetwork/lnd/invoices"
"github.com/lightningnetwork/lnd/lntypes"
"github.com/lightningnetwork/lnd/lnwire"
"github.com/lightningnetwork/lnd/routing/route"
@ -170,7 +170,7 @@ func (s *serverMock) NewLoopInSwap(_ context.Context, swapHash lntypes.Hash,
// cancel the probe payment.
probeSub := <-s.lnd.SingleInvoiceSubcribeChannel
probeSub.Update <- lndclient.InvoiceUpdate{
State: channeldb.ContractAccepted,
State: invpkg.ContractAccepted,
}
<-s.lnd.FailInvoiceChannel