Skip to content

Commit

Permalink
Add Kotlin API docs for Script.toBytes
Browse files Browse the repository at this point in the history
  • Loading branch information
thunderbiscuit committed Jun 12, 2023
1 parent 90f1845 commit 329052a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion api-docs/kotlin/src/main/kotlin/org/bitcoindevkit/bdk.kt
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,10 @@ data class TxBuilderResult (
/**
* 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.
Expand Down

0 comments on commit 329052a

Please sign in to comment.