Conversation
The simulator returns "no state found for block <hash>" when its node knows the parent header but does not have that block on its head chain. A late parent, a reorg, or a lagging node causes this. `is_temporary` did not match the text, so the relay demoted the builder for a sim-side condition. Match the reth text and the builder's own "parent state is not available". Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
vladimir-ea
approved these changes
Sep 14, 2026
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.
Issue: none (small bug fix; say the word and I draft one)
What this PR does
The simulator returns
no state found for block <hash>when its node knows the parent header but does not have that block on its head chain (state_by_block_hashincrates/simulator/src/validation/mod.rs). A late parent block, a reorg, or a lagging node causes this.BlockSimError::is_temporarydid not match the text, sois_demotablereturnedtrueand the relay demoted the builder for a sim-side condition. This was seen on mainnet FR, slot 15185181, builder Titan.The fix matches the reth text with
starts_with, because the message carries the parent hash. It also matches our own builder validator'sparent state is not available, which is the same condition.What this PR deliberately does not do
It does not change the retry or pause behaviour: a temporary error already pauses the simulator tile and the submission retries. It does not touch the simulator node's own head-chain tracking, and it does not remove any past demotion from the database.
Tests
missing_parent_state_never_demotesincrates/common/src/simulator.rsholds the invariant: both texts are temporary and not demotable. The test came before the match arms. The change is a one-line-per-text classification fix, so no new integration test.Reviewer checklist
lint,unit-test) is green🤖 Generated with Claude Code