Add Kotlin API docs for Script.toBytes

This commit is contained in:
thunderbiscuit 2023-06-12 10:50:41 -04:00
parent 3cb2c2c394
commit 25033f6bd6
No known key found for this signature in database
GPG Key ID: 88253696EB836462

View File

@ -829,7 +829,10 @@ data class TxBuilderResult (
/** /**
* A bitcoin script. * A bitcoin script.
*/ */
class Script(rawOutputScript: List<UByte>) class Script(rawOutputScript: List<UByte>) {
/** Return the script as bytes. */
fun toBytes(): List<UByte> {}
}
/** /**
* A bitcoin address. * A bitcoin address.