Closed thpani closed 3 months ago
Currently, Init requires that all checkpoints c in view_votes satisfy c.chkp_slot > c.block_slot.
Init
c
view_votes
c.chkp_slot > c.block_slot
However, the checkpoint associated with the genesis block is defined as [ chkp_slot |-> 0, block_slot |-> 0, ... ].
[ chkp_slot |-> 0, block_slot |-> 0, ... ]
Following offline discussion with Roberto, we make an exemption for the genesis checkpoint.
Currently,
Init
requires that all checkpointsc
inview_votes
satisfyc.chkp_slot > c.block_slot
.However, the checkpoint associated with the genesis block is defined as
[ chkp_slot |-> 0, block_slot |-> 0, ... ]
.Following offline discussion with Roberto, we make an exemption for the genesis checkpoint.