txpool_status

Returns statistics about the transaction pool including the number of pending and queued transactions.

Parameters

Returns


Request

{
  "jsonrpc": "2.0",
  "method": "txpool_status",
  "params": [],
  "id": 1
}

Response

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "pending": "0x1",
    "queued": "0x0"
  }
}

Last updated