For the complete documentation index, see llms.txt. This page is also available as Markdown.

tx_pool_ready - Nervos

Example code for the tx_pool_ready JSON-RPC method. Complete guide on how to use tx_pool_ready JSON-RPC in GetBlock Web3 documentation.

Returns whether the tx pool service is started and ready for requests. Returns true once the pool has finished its initialization phase after node start.

Parameters

  • None

Request Example

curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "tx_pool_ready",
    "params": [],
    "id": "getblock.io"
}'

Response Example

{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": true
}

Response Parameters

Field
Type
Description

result

boolean

true if pool is ready

Use Cases

  • Node-startup readiness probes

  • Avoiding transaction submission to a node still initializing

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid <ACCESS-TOKEN>

-32602

Invalid params

Request parameters are missing or malformed

-32601

Method not found

Method does not exist or is not enabled on this node

-32603

Internal error

Server-side error while processing the request

429

Too Many Requests

Rate limit exceeded for your plan

SDK Integration

Was this helpful?