multi: bump lndclient and lnd version to latest

Co-authored-by: Oliver Gugger <gugger@gmail.com>
This commit is contained in:
sputn1ck 2022-07-07 17:28:22 +02:00
parent 11ab596080
commit 0f924b36cd
No known key found for this signature in database
GPG key ID: 671103D881A5F0E4
6 changed files with 143 additions and 28 deletions

View file

@ -20,6 +20,7 @@ import (
"github.com/lightningnetwork/lnd/chainntnfs"
"github.com/lightningnetwork/lnd/channeldb"
"github.com/lightningnetwork/lnd/lnrpc/invoicesrpc"
"github.com/lightningnetwork/lnd/lnrpc/walletrpc"
"github.com/lightningnetwork/lnd/lntypes"
"github.com/lightningnetwork/lnd/lnwallet/chainfee"
"github.com/lightningnetwork/lnd/lnwire"
@ -978,7 +979,10 @@ func (s *loopInSwap) publishTimeoutTx(ctx context.Context,
if s.timeoutAddr == nil {
var err error
s.timeoutAddr, err = s.lnd.WalletKit.NextAddr(ctx)
s.timeoutAddr, err = s.lnd.WalletKit.NextAddr(
ctx, "", walletrpc.AddressType_WITNESS_PUBKEY_HASH,
false,
)
if err != nil {
return 0, err
}