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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it be better to put
bc.genesisBlock
here?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not convinced that would be correct. That would change the semantics, and make it appear as if the current block is genesis -- which has a different meaning than
nil
. The latter indicates it is simply not set (yet), the former indicates that all is in order, we should start importing from genesis.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is actually what is already done in
HeaderChain
forHeaderChain.currentHeader
, so I don't think this changes semantics.My understanding is that
BlockChain.loadLastState()
will overwrite this value because it reads directly from the database as well. IMHO there should be an invariant whereBlockChain.currentBlock
is always set.Also note that the code in #19286 is attempting to set the head to genesis block.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is also worth wondering how it got into this state. The chain configuration and genesis block were already present or
SetupGenesisBlockWithOverride
would have handled this, so maybe the "pull the plug" was when the head block hash key in the database got corrupted in #19286?