mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
Merge pull request #469 from guggero/sweeper-pk-script
sweep: always send signed output's pk script
This commit is contained in:
commit
d1ba70e3fa
2 changed files with 5 additions and 1 deletions
|
|
@ -25,4 +25,7 @@ This file tracks release notes for the loop client.
|
|||
|
||||
#### Bug Fixes
|
||||
|
||||
* Loop now supports being hooked up to a remote signing pair of `lnd` nodes,
|
||||
as long as `lnd` is `v0.14.3-beta` or later.
|
||||
|
||||
#### Maintenance
|
||||
|
|
|
|||
|
|
@ -61,7 +61,8 @@ func (s *Sweeper) CreateSweepTx(
|
|||
signDesc := lndclient.SignDescriptor{
|
||||
WitnessScript: htlc.Script(),
|
||||
Output: &wire.TxOut{
|
||||
Value: int64(amount),
|
||||
Value: int64(amount),
|
||||
PkScript: htlc.PkScript,
|
||||
},
|
||||
HashType: txscript.SigHashAll,
|
||||
InputIndex: 0,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue