From 34af88df6fe02cdae0ba299ab60c78714838d1c7 Mon Sep 17 00:00:00 2001 From: Shobit Beltangdy Date: Sun, 18 Dec 2022 14:17:34 -0800 Subject: [PATCH] Update Blockchain.broadcast doc to reflect no return type This fixes #284 --- api-docs/kotlin/src/main/kotlin/org/bitcoindevkit/bdk.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-docs/kotlin/src/main/kotlin/org/bitcoindevkit/bdk.kt b/api-docs/kotlin/src/main/kotlin/org/bitcoindevkit/bdk.kt index 5accca1..837ebe4 100644 --- a/api-docs/kotlin/src/main/kotlin/org/bitcoindevkit/bdk.kt +++ b/api-docs/kotlin/src/main/kotlin/org/bitcoindevkit/bdk.kt @@ -246,7 +246,7 @@ class Blockchain( config: BlockchainConfig ) { /** Broadcast a transaction. */ - fun broadcast(psbt: PartiallySignedBitcoinTransaction): String {} + fun broadcast(psbt: PartiallySignedBitcoinTransaction) {} /** Get the current height of the blockchain. */ fun getHeight(): UInt {}