-
Notifications
You must be signed in to change notification settings - Fork 256
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
Evm daemon #891
Evm daemon #891
Conversation
Starting the interpreter repeatedly probably takes a ton of time. By starting a single process and reusing it, tests should be faster, especially with JIT.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## forks/cancun #891 +/- ##
================================================
- Coverage 69.96% 69.64% -0.32%
================================================
Files 610 611 +1
Lines 34295 34898 +603
================================================
+ Hits 23993 24306 +313
- Misses 10302 10592 +290
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
blob_gas_used += self._module( | ||
"vm.gas" | ||
).calculate_total_blob_gas(tx) | ||
ensure( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
By @gurukamath in #889:
Based on the EIP, this check has to happen once outside the for loop, after all the transactions have been processed. But tbh, this makes more sense imo unless I am missing something.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
No description provided.