Update Blockchain.broadcast doc to reflect no return type

This fixes #284
This commit is contained in:
Shobit Beltangdy 2022-12-18 14:17:34 -08:00
parent 12e9a18357
commit 34af88df6f
No known key found for this signature in database
GPG Key ID: ECDDED18A4204604

View File

@ -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 {}