-
Notifications
You must be signed in to change notification settings - Fork 0
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
txpool is stuck due to heavy transaction #40
Labels
enhancement
New feature or request
Comments
YoshihitoAso
changed the title
[FEATURE] Transaction pool stuck due to transactions with insufficient TxGasLimit
Transaction pool stuck due to transactions with insufficient TxGasLimit
May 9, 2023
YoshihitoAso
changed the title
Transaction pool stuck due to transactions with insufficient TxGasLimit
txpool is stuck due to heavy transaction
Jun 21, 2023
There is currently no effective solution to this problem. An immediate workaround is likely to be to set |
We are planning to incorporate |
YoshihitoAso
added a commit
that referenced
this issue
Mar 15, 2024
eth, miner: add timeout for building sealing block
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is your feature request related to a problem? Please describe.
If there is a transaction that takes a long time to process and the transaction GasLimit is set to a large value, the following error will occur and the transaction will not be included in the block.
As a result, the following situations can occur.
When such invalid Tx is stuck, it is necessary to manually clear the txpool on the Validator side, but we would like to eliminate such manual operation.
Describe the solution you'd like
We are planning to incorporate
NewPayloadTimeout
introduced in geth.Ref: ethereum/go-ethereum#25407
The text was updated successfully, but these errors were encountered: