From b6349eefd421cab20635df42a9fd78e9ff4b8807 Mon Sep 17 00:00:00 2001 From: Danny Ryan Date: Sun, 25 Nov 2018 11:33:07 -0500 Subject: [PATCH] Update specs/core/0_beacon-chain.md Co-Authored-By: vbuterin --- specs/core/0_beacon-chain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/core/0_beacon-chain.md b/specs/core/0_beacon-chain.md index b29b41a5a..18173c1ab 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -597,7 +597,7 @@ def deposit(deposit_params: bytes[2048]): self.receipt_tree[index] = sha3(concat(self.receipt_tree[index * 2], self.receipt_tree[index * 2 + 1])) self.total_deposit_count += 1 if self.total_deposit_count == 16384: - timestamp_day_boundary = (block.timestamp - block.timestamp % 86400) + 86400 + timestamp_day_boundary: timestamp = (block.timestamp - block.timestamp % 86400) + 86400 timestamp_day_boundary_bytes8: bytes[8] = slice(convert(timestamp_day_boundary, 'bytes32'), 24, 8) log.ChainStart(self.receipt_tree[1], timestamp_day_boundary_bytes8 )