feat(txpool): announce blob txs within 1 fee-jump of execution#22878
Closed
figtracer wants to merge 1 commit into
Closed
feat(txpool): announce blob txs within 1 fee-jump of execution#22878figtracer wants to merge 1 commit into
figtracer wants to merge 1 commit into
Conversation
ab1a7ed to
5c6d3b9
Compare
Contributor
Author
|
might not be that relevant in practice but imo this is nice to keep things tidy |
5c6d3b9 to
4d03f34
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Blob transactions in the blob sub-pool were never announced to peers, only promoted txs in the pending pool were. This adds early announcements for blob txs with priority >= -1 (within 1 fee-jump of executable), giving peers earlier visibility on near-executable blob txs.
When fees change (new block), txs that cross into the threshold get announced. If fees spike and a tx falls below threshold, its announced flag resets so it can be re-announced when fees recover.
Reference: ethereum/go-ethereum#33893