Fix trailing whitespace

This commit is contained in:
Ben Edgington 2023-03-09 11:07:01 +00:00
parent ccfe576dcc
commit 7f74a08a6c

View File

@ -388,7 +388,7 @@ def on_tick(store: Store, time: uint64) -> None:
# Update store.justified_checkpoint if a better checkpoint on the store.finalized_checkpoint chain
if store.best_justified_checkpoint.epoch > store.justified_checkpoint.epoch:
finalized_slot = compute_start_slot_at_epoch(store.finalized_checkpoint.epoch)
finalized_slot = compute_start_slot_at_epoch(store.finalized_checkpoint.epoch)
ancestor_at_finalized_slot = get_ancestor(store, store.best_justified_checkpoint.root, finalized_slot)
if ancestor_at_finalized_slot == store.finalized_checkpoint.root:
store.justified_checkpoint = store.best_justified_checkpoint