-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
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
Failed to get callTracer in Ethereum Holesky #10373
Comments
@yperbasis I will add another, probably related issue. This call in Ethereum Holesky (however mainnet has the same issue)
in Erigon 2.59.3 works and returns gas estimate, Erigon 2.60.0 returns error In case it is not related, let me know please and I will create a new issue for that. |
Failed to replicate the |
After [EIP-1559](https://eips.ethereum.org/EIPS/eip-1559) gas fee must be greater or equal to block's base fee – otherwise `eth_estimateGas` might fail with the fee defaulting to 0 (see #10373 (comment)). Also, this PR removes the `blockNrOrHash` argument from `eth_estimateGas`. geth doesn't have it. Moreover, it was effectively ignored by the previous code anyway with the exception of determining gas limit.
|
System information
Erigon version:
OS & Version: Linux
Chain/Network: Ethereum/Holesky
Steps to reproduce the behaviour
I used
debug_traceBlockByNumber
to query callTracer in block1170156
in Ethereum Holesky.However,
0x6c1649bfabf71cf716a2f567c252737751517eaf4a8b93da06e21795c18559b7
The following error is output from callTracer in the transaction(This tx is the last transaction in the block):However, there is no problem if you look up the callTracer through
debug_traceTransaction
:Also, if you look it up via debug_traceBlockByNumber on go-thereum, this is also not a problem.
The text was updated successfully, but these errors were encountered: