[FIX] Return executed blocks sorted on execution error #772
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.
Description
Fixes missing blocks on testnet, caused by:
BlockImport.revertChainReorganisationto be called with theexecutedBlocks=[1505: 0b, 1504: 0b, 1503: 5a, 1502: 8a]removeBlocksUntil(0b, 1502), meaning that all blocks from the db were deletedOmmersNotValidError. As this was the chain followed by the two other miners, the testnet irrevocably forkedSimple scenario to reproduce:
Pre-requisites:
ValidationAfterExecError(s"Block has invalid state root hash, expected ${Hex.toHexString(header.stateRoot.toArray)} but got ${Hex.toHexString(stateRootHash.toArray)}")validation has to be disabledBlockExecution.executeAndValidateBlockso that all blocks with number 13 are considered invalidReproducing it
Proposed Solution
Return the executedBlocks in proper order
Testing