grab the full script instead of just the hash for the change addr
This commit is contained in:
parent
4f89f8719c
commit
6f9ba620a8
@ -381,8 +381,15 @@ func (l *LightningWallet) handleFundingReserveRequest(req *initFundingReserveMsg
|
||||
req.resp <- nil
|
||||
return
|
||||
}
|
||||
changeAddrScript := addrs[0].AddrHash()
|
||||
// TODO(roasbeef): re-enable after test are connected to real node.
|
||||
changeAddrScript, err := txscript.PayToAddrScript(addrs[0].Address())
|
||||
if err != nil {
|
||||
req.err <- err
|
||||
req.resp <- nil
|
||||
return
|
||||
}
|
||||
// TODO(roasbeef): re-enable after tests are connected to real node.
|
||||
// * or the change to btcwallet is made to reverse the dependancy
|
||||
// between chain-client and wallet.
|
||||
//changeAddr, err := l.wallet.NewChangeAddress(waddrmgr.DefaultAccountNum)
|
||||
|
||||
partialState.ourChange = append(partialState.ourChange,
|
||||
|
Loading…
Reference in New Issue
Block a user