RPC Browser

Arguments


Help Content

abortprivatebroadcast "id"

Abort private broadcast attempts for a transaction currently being privately broadcast.
The transaction will be removed from the private broadcast queue.

Arguments:
1. id    (string, required) A transaction identifier to abort. It will be matched against both txid and wtxid for all transactions in the private broadcast queue.
         If the provided id matches a txid that corresponds to multiple transactions with different wtxids, multiple transactions will be removed and returned.

Result:
{                               (json object)
  "removed_transactions" : [    (json array) Transactions removed from the private broadcast queue
    {                           (json object)
      "txid" : "hex",           (string) The transaction hash in hex
      "wtxid" : "hex",          (string) The transaction witness hash in hex
      "hex" : "hex"             (string) The serialized, hex-encoded transaction data
    },
    ...
  ]
}

Examples:
> bitcoin-cli abortprivatebroadcast "id"
> curl --user myusername --data-binary '{"jsonrpc": "2.0", "id": "curltest", "method": "abortprivatebroadcast", "params": ["id"]}' -H 'content-type: application/json' http://127.0.0.1:8332/

id

{
    "name": "id",
    "detailsLines": [
        "         If the provided id matches a txid that corresponds to multiple transactions with different wtxids, multiple transactions will be removed and returned."
    ],
    "properties": [
        "string",
        "required"
    ],
    "description": "A transaction identifier to abort. It will be matched against both txid and wtxid for all transactions in the private broadcast queue."
}

Recent (5)

Blockchain (38)

Control (6)

Mining (7)

Network (14)

Rawtransactions (20)

Signer (1)

Util (8)

Zmq (1)