getprivatebroadcastinfo

rawtransactions
getprivatebroadcastinfo

Returns information about transactions that are currently being privately broadcast.
This method is only available when running with -privatebroadcast enabled.

Result:
{                               (json object)
  "transactions" : [            (json array)
    {                           (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
      "time_added" : xxx,       (numeric) The time this transaction was added to the private broadcast queue (seconds since epoch)
      "peers" : [               (json array) Per-peer send and acknowledgment information for this transaction
        {                       (json object)
          "address" : "str",    (string) The address of the peer to which the transaction was sent
          "sent" : xxx,         (numeric) The time this transaction was picked for sending to this peer via private broadcast (seconds since epoch)
          "received" : xxx      (numeric, optional) The time this peer acknowledged reception of the transaction (seconds since epoch)
        },
        ...
      ]
    },
    ...
  ]
}

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