We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Erigon version:
{ "id": 67, "jsonrpc": "2.0", "result": "erigon/2.60.10/linux-amd64/go1.22.8" }
Chain/Network: Ethereum mainnet
Erigon should respond with proper block traces for query
{ "jsonrpc": "2.0", "method": "trace_block", "params": [ "0x144c724" ], "id": 1 }
{ "id": 1, "jsonrpc": "2.0", "error": { "code": -32000, "message": "first run for txIndex 59 error: insufficient funds for gas * price + value: address 0x0b92619DdE55C0cbf828d32993a7fB004E00c84B have 1217128811150211237 want 1217129447495431237" } }
curl --location --request POST 'your-awesome-node' --header 'Content-Type: application/json' --data-raw '{ "jsonrpc": "2.0", "method": "trace_block", "params": [ "0x144c724" ], "id": 1 }'
Similar issue was raised for Polygon in 2022 #4784
The text was updated successfully, but these errors were encountered:
Same issue was a month earlier: #12432
Upd: I've got same error in older versions with this block today, but in 2.60.10 there is no such error for 0x144c724 block
Sorry, something went wrong.
You can use method web3_clientVersion to check node version by RPC call
That's what I posted in the Erigon version: section :)
All our nodes are 2.60.10. Hit with the same issue.
2.60.10
I have no name!@ethereum-mainnet-archive-a-0:/home/erigon$ curl -s --location --request POST $URL --header 'Content-Type: application/json' --data-raw '{"id":67,"jsonrpc":"2.0","method":"web3_clientVersion"}' | jq . { "jsonrpc": "2.0", "id": 67, "result": "erigon/2.60.10/linux-amd64/go1.22.8" }
I have no name!@ethereum-mainnet-archive-a-0:/home/erigon$ curl -s --location --request POST $URL --header 'Content-Type: application/json' --data-raw '{ "jsonrpc": "2.0", "method": "trace_block", "params": [ "0x144c724" ], "id": 1 }' | jq . { "jsonrpc": "2.0", "id": 1, "error": { "code": -32000, "message": "first run for txIndex 59 error: insufficient funds for gas * price + value: address 0x0b92619DdE55C0cbf828d32993a7fB004E00c84B have 1217128811150211237 want 1217129447495431237" } }
No branches or pull requests
System information
Erigon version:
Chain/Network: Ethereum mainnet
Expected behaviour
Erigon should respond with proper block traces for query
Actual behaviour
Steps to reproduce the behaviour
Similar issue was raised for Polygon in 2022 #4784
The text was updated successfully, but these errors were encountered: