You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During apply_fork_choice (crates/blockchain/forkchoice) the check_order function is called to check correct ordering between the safe and head block and later on between the finalized and safe block. If the first block is None the check_order function returns Invalid fork choice state. Reason: ElementNotFound(Finalized) which doesn't make sense in the first case.
The text was updated successfully, but these errors were encountered:
During
apply_fork_choice
(crates/blockchain/forkchoice) thecheck_order
function is called to check correct ordering between the safe and head block and later on between the finalized and safe block. If the first block is None thecheck_order
function returnsInvalid fork choice state. Reason: ElementNotFound(Finalized)
which doesn't make sense in the first case.The text was updated successfully, but these errors were encountered: