-
Notifications
You must be signed in to change notification settings - Fork 40
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
Cleanup state locking and make JSON RPC calls like eth_call faster #1545
Comments
DmytroNazarenko
added
enhancement
New feature or request
Technical debt
and removed
enhancement
New feature or request
labels
Jun 27, 2023
Moving to 2.5 since we do not have time for this in 2.4 |
kladkogex
changed the title
Cleanup state locking in 2.3
Cleanup state locking and make read JSON RPC calls like eth_call faster
May 17, 2024
kladkogex
changed the title
Cleanup state locking and make read JSON RPC calls like eth_call faster
Cleanup state locking and make JSON RPC calls like eth_call faster
May 17, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Our current State locks are really convoluted and error prone.
They can potentially lead to performance degradation.
In particular Also eth_calls interfere with block commit. When there are many eth_call
requests, a block can not be committed since they fight for the same state lock.
The text was updated successfully, but these errors were encountered: