Merged
Conversation
…7473) Cherry pick erigontech#17445 into `release/3.2`
…oad/blockBuilding processing (erigontech#17480) cherry-pick/port of erigontech#17436 --- for issue 2 of erigontech#17435 (related to erigontech#17025 (comment))
…rigontech#17484) Cherry pick erigontech#17464 Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This fixes the issue we've had with proposing bad blocks on hoodi.
The majority of the changes here are tracing which I have ported from
main. The underlying cause of the issue turned out to be that for mining
we where not initializing block execution. Which effectively means not
calling system contracts. This is ok so long as there are no side
effects which are need by transactins in the block.
However we're now calling the:
```
"BEACON_ROOTS_ADDRESS": "0x000f3df6d732807ef1319fb7b8bb8522d0beac02",
```
And if a transaction needs to see the result of this and performs
processing based on it they will fail.
The fix is just to add:
```
core.InitializeBlockExecution(cfg.engine, chainReader, current.Header, cfg.chainConfig, ibs, &state.NoopWriter{}, logger, nil)
```
before we start processing blocks.
…17494) Cherry pick erigontech#17481 into `release/3.2`
…sis (erigontech#17503) Cherry pick erigontech#17501 into `release/3.2`
) cherry-pick of erigontech#17469 closes erigontech#17025 --- closes erigontech#17435 (related to erigontech#17025 (comment))
…#17523) Cherry-pick of : erigontech#17498 Co-authored-by: antonis19 <antonis19@users.noreply.github.com>
avalkov
approved these changes
Oct 27, 2025
kamuikatsurgi
approved these changes
Oct 27, 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.
Fetch upstream erigon v3.2.1