-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 4844 upgrades Part 2 #8213
Merged
Merged
Changes from 31 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
9be9769
Add blob pricebump flag
14d105c
Merge branch 'devel' into txpool-4844-upgrades
e020355
Pass finalized block to txpool
32453f4
fmt
501bba3
Merge remote-tracking branch 'origin/devel' into txpool-4844-upgrades
21968b7
Update deps
b4abf8e
Update lib
394f803
Add pending blob fee to sc
5d54999
Merge remote-tracking branch 'origin/devel' into txpool-4844-upgrades
a5912a5
Merge fix
426fd85
Fix pending blob fee
7e976b8
Update lib
63c643e
Merge remote-tracking branch 'origin/devel' into txpool-4844-upgrades
b5219ec
Fix blob price calc
782b48b
Revert local
a9a518e
update lib
3b7a58c
go mod tidy
6b834c9
Add blob slots flag
f9b1295
Fmt
0cc86e7
Fix init excess blob gas
74bf8cc
Update lib version
c75e6ec
Merge remote-tracking branch 'origin/devel' into txpool-4844-upgrades
32dfc01
Merge remote-tracking branch 'origin/devel' into txpool-4844-upgrades
36fba72
Update lib
3e53c4b
Update lib
69bc185
update lib
0f6a49c
Update lib
b19e700
Merge branch 'devel' into txpool-4844-upgrades
somnathb1 78069b7
Bump lib ver
1384b4e
Add param min fee, update lib
5ca568b
Pending base fee in startup
a8adb06
Update lib
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
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
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.
If we are sending pending rather than current blobFee, it makes sense to do the same for baseFee (pending instead of current).
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, i will make that change as well. Meanwhile, in this case we are sending values (to txPool) with respect to the CurrentBlock, which is where the sync is at. Should we consider sending values for the canonical head instead?
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.
This piece of code looks like a kludge. I'd leave
currentBlock
as is since it seems to be doing the job.