fix(engine): remove redundant parent_to_child removal during eviction#18648
Merged
yongkangc merged 2 commits intoparadigmxyz:mainfrom Sep 25, 2025
Conversation
Contributor
Forostovec
commented
Sep 23, 2025
- Drop duplicate remove_from_parent call in insert_block eviction path; remove_block already handles it.
- No functional changes; micro-optimization and slight simplification.
- Tests and metrics unaffected; eviction remains FIFO via block_queue.
mattsse
approved these changes
Sep 23, 2025
Collaborator
mattsse
left a comment
There was a problem hiding this comment.
lgtm
but would like a sanity check from @yongkangc or @shekhirin perhaps
| if let Some(evicted_block) = self.remove_block(&evicted_hash) { | ||
| self.remove_from_parent(evicted_block.parent_hash(), &evicted_hash); | ||
| } | ||
| self.remove_block(&evicted_hash); |
Collaborator
There was a problem hiding this comment.
this is indeed redundant here
reth/crates/engine/tree/src/tree/block_buffer.rs
Lines 152 to 155 in 9856712
yongkangc
approved these changes
Sep 24, 2025
Contributor
Author
added test |
Member
|
sending |
yongkangc
pushed a commit
that referenced
this pull request
Sep 25, 2025
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.