From 5e3c0107ef2404e5564d00f003fbd1486324a1b7 Mon Sep 17 00:00:00 2001 From: Roberto Saltini <38655434+saltiniroberto@users.noreply.github.com> Date: Sun, 18 Jun 2023 19:07:35 +1000 Subject: [PATCH] Review change Co-authored-by: Hsiao-Wei Wang --- specs/phase0/fork-choice.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/phase0/fork-choice.md b/specs/phase0/fork-choice.md index ea8b9a57d..b541f7022 100644 --- a/specs/phase0/fork-choice.md +++ b/specs/phase0/fork-choice.md @@ -178,7 +178,7 @@ def get_current_slot(store: Store) -> Slot: #### `get_current_store_epoch` ```python -def get_current_store_epoch(store: Store) -> Slot: +def get_current_store_epoch(store: Store) -> Epoch: return compute_epoch_at_slot(get_current_slot(store)) ```