make sure `clearanceState` builds on top of `headState` in chain stall (#6108)
The `clearanceState` points to the latest resolved block, regardless of whether that block is canonical according to fork choice. If chain is stalled and we want to prepare for resuming validator duties, we need a recent state according to fork choice to avoid lag spikes and missing slot timings.
This commit is contained in:
parent
e75b209076
commit
eb5acdb7dd
|
@ -143,6 +143,12 @@ proc advanceClearanceState*(
|
|||
# epoch transition ahead of time.
|
||||
# Notably, we use the clearance state here because that's where the block will
|
||||
# first be seen - later, this state will be copied to the head state!
|
||||
|
||||
if chainIsDegraded and dag.clearanceState.latest_block_id != dag.head.bid:
|
||||
# The last block that was resolved may not be canonical.
|
||||
# If that's the case, we first have to copy `headState` to `clearanceState`
|
||||
assign(dag.clearanceState, dag.headState)
|
||||
|
||||
let advanced = withState(dag.clearanceState):
|
||||
forkyState.data.slot > forkyState.data.latest_block_header.slot
|
||||
if not advanced or chainIsDegraded:
|
||||
|
|
Loading…
Reference in New Issue