From 5b31268abcd5652f30f1e2be784d75bb3b2199eb Mon Sep 17 00:00:00 2001 From: Danny Ryan Date: Thu, 4 Oct 2018 12:53:53 -0500 Subject: [PATCH] [fix-recent_block_hashes] fix formatting --- specs/beacon-chain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) ```