-
Notifications
You must be signed in to change notification settings - Fork 30
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
feat(levm): running all ef tests with revm and fixing problems #1275
Merged
Merged
Changes from 46 commits
Commits
Show all changes
48 commits
Select commit
Hold shift + click to select a range
4de7a5e
Do not skip `VMTests`
ilitteri 33b948f
Refactor runner
ilitteri 950f2aa
Isolate EF test parsing
ilitteri 9eaab48
Fix initial state loading
ilitteri cdc76d4
Fix types
ilitteri e389c73
Fix deserialization
ilitteri a28aa00
Refactor report module
ilitteri f72bd3f
Rename test file and modules
ilitteri 798ca19
Ignore report file
ilitteri 0df3e41
Chore
ilitteri 1391e03
Merge main
ilitteri 3e7ece3
Revert "Merge main"
ilitteri 50cf7af
Merge branch 'main' of github.com:lambdaclass/lambda_ethereum_rust in…
ilitteri 221990c
Update cmd/ef_tests/levm/runner/levm_runner.rs
ilitteri a437508
Fix
ilitteri 12333c1
Fix parsing
ilitteri 0e51cf8
Fix parsing
ilitteri b2160a0
change HashSet import
JereSalo 522ec08
Fix
ilitteri 15592c3
Improvements
ilitteri 0a904aa
Fix lint
ilitteri 6da1e57
start implementing runner revm (doesnt work well)
JereSalo 62d6cfb
finish implementing running with revm and add some debugs
JereSalo d6c3f37
add deserialization for other stuff in transaction
JereSalo f4779da
fix deserialize and add some things for debugging
JereSalo fc71b1d
change blob excess gas and price in revm
JereSalo c168c15
add quick simple fix for storing revmerrors, then change
JereSalo a18335d
add comments and temporary error typein VMError for debugging
JereSalo 9c316b6
set gas priority fee and max fee per blob gas, remove serde in EFTest…
JereSalo 9759734
comment stTimeConsuming and add things for debugging
JereSalo 9381ed6
add blob hashes
JereSalo c535e93
calculate effective gas price for revm setup
JereSalo 26e96c4
start with deserialization of access lists (doesn't work yet)
JereSalo 0899b57
partially fix access list deserializing
JereSalo fc73748
fix deserialize access lists
JereSalo 2c89323
finally implement and fix access lists (i think so)
JereSalo 84671af
leave some todos for tackling afterwards
JereSalo cd7502e
Merge branch 'main' into levm/running-ef-tests-revm
JereSalo 04d95ab
comment prints and run with levm
JereSalo 047a16c
simplify access lists deserializer
JereSalo d4ba11a
adapt PR for merging
JereSalo dfdef69
change some stuff in revm errors...
JereSalo d87f6ad
remove testing error in levm
JereSalo eb2df57
Merge branch 'main' into levm/running-ef-tests-revm
JereSalo 72892c1
comment revm execution
JereSalo be3d894
Merge branch 'levm/running-ef-tests-revm' of github.com:lambdaclass/l…
JereSalo f4891c0
remove comment and add description to run_with_revm
JereSalo 51ebf37
merge main
JereSalo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
If this is going to be merged to
main
we should remove this commented line and add documentation on the commented function explaining when to use it.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.
Done in f4891c0