lnwallet/script_utils: expose CommitScriptUnencumbered

This commit is contained in:
Conner Fromknecht 2018-07-11 15:04:10 -07:00 committed by Conner Fromknecht
parent e0baa49690
commit afd8dfb9b4
No known key found for this signature in database
GPG Key ID: E7D737B67FA592C7

@ -953,10 +953,10 @@ func CommitScriptToSelf(csvTimeout uint32, selfKey, revokeKey *btcec.PublicKey)
return builder.Script()
}
// commitScriptUnencumbered constructs the public key script on the commitment
// CommitScriptUnencumbered constructs the public key script on the commitment
// transaction paying to the "other" party. The constructed output is a normal
// p2wkh output spendable immediately, requiring no contestation period.
func commitScriptUnencumbered(key *btcec.PublicKey) ([]byte, error) {
func CommitScriptUnencumbered(key *btcec.PublicKey) ([]byte, error) {
// This script goes to the "other" party, and it spendable immediately.
builder := txscript.NewScriptBuilder()
builder.AddOp(txscript.OP_0)