-
Notifications
You must be signed in to change notification settings - Fork 359
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
Fix eip2929 implementation #280
Merged
koushiro
merged 9 commits into
rust-ethereum:master
from
moonbeam-foundation:rq/gas-costs
Jun 4, 2024
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
1e31869
burn base fee after eip-1559 included in london fork
RomarQ 654fb20
feat: add Cancun configuration
RomarQ 80d2d3c
fix(eip-2929): some addresses were considered cold when they shouldn't
RomarQ 4d29b50
Merge branch 'master' into rq/gas-costs
RomarQ 6e9a7bd
Revert "feat: add Cancun configuration"
RomarQ 7430679
Revert "burn base fee after eip-1559 included in london fork"
RomarQ b6f5bb4
Merge branch 'master' into rq/gas-costs
RomarQ caed3bc
add eip-2929 test
RomarQ c931676
remove duplicated test
RomarQ 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
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
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.
I wonder is this move (from
interpreter
togasometer
), related to the fix?The reason why it was put in
interpreter
because the code is supposed to support custom gasometers. Otherwise with this change, any custom meters will not properly mark hot/cold.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.
Yes, in some circumstances, the addresses were not being considered as
warm
when they should. If the objective is to have the code as customisable as possible, probably having it in the gasometer is not that bad.