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
This has been found while trying to sync an already-converted network: the syncing node creates its own block, which is at a timestamp > pragueTime, so it performs the transition. Then the CL starts, finds the rest of the network, and sends an FCU that triggers a reorg. But since the started value is already active in the StateDB, it will try to produce a block in verkle mode, when it should not, and the root mismatch error will be shown.
The text was updated successfully, but these errors were encountered:
pull spindevnets , and in fork-scheduler.sh, set VERGE_EPOCH=0, it will set transition at block 1 without making EL genesis verge
basically will set pragueTime > genesis timestamp but < network genesis time (actually 1 hour before network genesis time)
This has been found while trying to sync an already-converted network: the syncing node creates its own block, which is at a
timestamp
>pragueTime
, so it performs the transition. Then the CL starts, finds the rest of the network, and sends an FCU that triggers a reorg. But since thestarted
value is already active in theStateDB
, it will try to produce a block in verkle mode, when it should not, and theroot mismatch
error will be shown.The text was updated successfully, but these errors were encountered: