diff --git a/specs/beacon-chain.md b/specs/beacon-chain.md index 4962b2e1d..dee4ac0e6 100644 --- a/specs/beacon-chain.md +++ b/specs/beacon-chain.md @@ -445,7 +445,7 @@ First, set `recent_block_hashes` to the output of the following, where `parent_h ```python def append_to_recent_block_hashes(old_block_hashes, parent_slot, - current_slot, parent_hash): + current_slot, parent_hash): d = current_slot - parent_slot return old_block_hashes + [parent_hash] * min(d, len(old_block_hashes)) ```