RPC Browser

Arguments

None

Help Content

getprioritisedtransactions

Returns a map of all user-created (see prioritisetransaction) fee deltas by txid, and whether the tx is present in mempool.

Result:
{                                 (json object) prioritisation keyed by txid
  "<transactionid>" : {           (json object)
    "fee_delta" : n,              (numeric) transaction fee delta in satooshis
    "in_mempool" : true|false,    (boolean) whether this transaction is currently in mempool
    "modified_fee" : n            (numeric, optional) modified fee in satooshis. Only returned if in_mempool=true
  },
  ...
}

Examples:
> bitcoinII-cli getprioritisedtransactions 
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id": "curltest", "method": "getprioritisedtransactions", "params": []}' -H 'content-type: text/plain;' http://127.0.0.1:8332/

Recent (1)

Blockchain (33)

Control (6)

Mining (7)

Network (14)

Rawtransactions (19)

Signer (1)

Util (8)

Wallet (66)

Zmq (1)