diff --git a/release_notes.md b/release_notes.md index c3bb955..e28fea1 100644 --- a/release_notes.md +++ b/release_notes.md @@ -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 diff --git a/sweep/sweeper.go b/sweep/sweeper.go index c22b8da..0c409c3 100644 --- a/sweep/sweeper.go +++ b/sweep/sweeper.go @@ -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,