[FIX] Return executed blocks sorted on execution error#772
Merged
Conversation
mirkoAlic
reviewed
Nov 4, 2020
| (executedBlocks.reverse, None) | ||
| } else if (error.isDefined) { | ||
| (executedBlocks, error) | ||
| (executedBlocks.reverse, error) |
Contributor
There was a problem hiding this comment.
i'm struggling with this analysis in the code. Maybe as a work arround we could add a suffix at variables name level, in order to know if the list is in incremental or decremental order. WDYT?
ex.
remainingBlocks -> remainingBlocksIncOrder // [bn=1, bn=2, bn=3]
executedBlocks -> executedBlocksDecOrder // [bn=3, bn=2, bn=1]
And also add a comment regarding the order of the list returned by this function
Contributor
|
wdyt about adding a regression test at least at integration test level? |
9977286 to
64b1b41
Compare
Author
|
Regression test at an integration level wasn't that easy, I finally added one at unit level that was quite straightforward to add |
0a406e4 to
58ad5d5
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.
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