lnwallet: export GenTaprootHtlcScript

This commit is contained in:
Oliver Gugger 2024-04-11 14:23:59 +02:00
parent 8f73c014ad
commit 91579829f2
No known key found for this signature in database
GPG Key ID: 8E4256593F177720

View File

@ -1325,9 +1325,9 @@ func genSegwitV0HtlcScript(chanType channeldb.ChannelType,
}, nil
}
// genTaprootHtlcScript generates the HTLC scripts for a taproot+musig2
// GenTaprootHtlcScript generates the HTLC scripts for a taproot+musig2
// channel.
func genTaprootHtlcScript(isIncoming, ourCommit bool, timeout uint32,
func GenTaprootHtlcScript(isIncoming, ourCommit bool, timeout uint32,
rHash [32]byte, keyRing *CommitmentKeyRing,
auxLeaf input.AuxTapLeaf) (*input.HtlcScriptTree, error) {
@ -1397,7 +1397,7 @@ func genHtlcScript(chanType channeldb.ChannelType, isIncoming, ourCommit bool,
)
}
return genTaprootHtlcScript(
return GenTaprootHtlcScript(
isIncoming, ourCommit, timeout, rHash, keyRing, auxLeaf,
)
}