Minor reorg

This commit is contained in:
Justin Drake 2019-06-22 22:51:04 +02:00
parent 181a2a876a
commit e6e90c7736
1 changed files with 2 additions and 3 deletions

View File

@ -540,11 +540,10 @@ class BeaconState(Container):
# Crosslinks # Crosslinks
previous_crosslinks: Vector[Crosslink, SHARD_COUNT] # Previous epoch snapshot previous_crosslinks: Vector[Crosslink, SHARD_COUNT] # Previous epoch snapshot
current_crosslinks: Vector[Crosslink, SHARD_COUNT] current_crosslinks: Vector[Crosslink, SHARD_COUNT]
# Justification # Finality
justification_bitfield: uint64 # Bit set for every recent justified epoch
previous_justified_checkpoint: Checkpoint # Previous epoch snapshot previous_justified_checkpoint: Checkpoint # Previous epoch snapshot
current_justified_checkpoint: Checkpoint current_justified_checkpoint: Checkpoint
justification_bitfield: uint64 # Bit set for every recent justified epoch
# Finality
finalized_checkpoint: Checkpoint finalized_checkpoint: Checkpoint
``` ```