I have access to a Geth node running with the following options:
geth \
--http \
--http.addr 0.0.0.0 \
--http.port 8545 \
--http.api eth,net,web3,txpool \
--http.corsdomain '*'
The node has been synced with the mode: snap
.
Why do all my txpool
API requests return "empty" responses?
- txpool_content:
curl http://IP:PORT -X POST -H "Content-Type: application/json" --data '{"jsonrpc": "2.0", "method": "txpool_content", "params": [], "id": 0}'
->{"jsonrpc":"2.0","id":0,"result":{"pending":{},"queued":{}}}
- txpool_inspect:
curl http://IP:PORT -X POST -H "Content-Type: application/json" --data '{"jsonrpc": "2.0", "method": "txpool_inspect", "params": [], "id": 0}'
->{"jsonrpc":"2.0","id":0,"result":{"pending":{},"queued":{}}}
- txpool_status:
curl http://IP:PORT -X POST -H "Content-Type: application/json" --data '{"jsonrpc": "2.0", "method": "txpool_status", "params": [], "id": 0}'
->{"jsonrpc":"2.0","id":0,"result":{"pending":"0x0","queued":"0x0"}}
Thank you!