mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
multi: bump all dependency to use lnd 0.15.0-beta.rc4
This commit bumps all dependencies to be in line with what's required for the current release candidate of lnd 0.15.0-beta.
This commit is contained in:
parent
14dfdc8521
commit
d5952f1202
9 changed files with 103 additions and 38 deletions
|
|
@ -72,7 +72,7 @@ func (s *Sweeper) CreateSweepTx(
|
|||
}
|
||||
|
||||
rawSigs, err := s.Lnd.Signer.SignOutputRaw(
|
||||
globalCtx, sweepTx, []*lndclient.SignDescriptor{&signDesc},
|
||||
globalCtx, sweepTx, []*lndclient.SignDescriptor{&signDesc}, nil,
|
||||
)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("signing: %v", err)
|
||||
|
|
@ -97,7 +97,7 @@ func (s *Sweeper) GetSweepFee(ctx context.Context,
|
|||
btcutil.Amount, error) {
|
||||
|
||||
// Get fee estimate from lnd.
|
||||
feeRate, err := s.Lnd.WalletKit.EstimateFee(ctx, sweepConfTarget)
|
||||
feeRate, err := s.Lnd.WalletKit.EstimateFeeRate(ctx, sweepConfTarget)
|
||||
if err != nil {
|
||||
return 0, fmt.Errorf("estimate fee: %v", err)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue