From 8b8253cdb214fd223dcbe65fe65c8c8ad2b891ad Mon Sep 17 00:00:00 2001 From: Danny Ryan Date: Tue, 27 Nov 2018 12:18:32 -0600 Subject: [PATCH] fix incorrect types for eth in pow contract --- specs/core/0_beacon-chain.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specs/core/0_beacon-chain.md b/specs/core/0_beacon-chain.md index 884c87041..67561245a 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -585,8 +585,8 @@ The beacon chain is initialized when a condition is met inside a contract on the ```python DEPOSITS_FOR_CHAIN_START: constant(uint256) = 2**14 -DEPOSIT_SIZE: constant(wei_value) = 32 -MIN_TOPUP_SIZE: constant(wei_value) = 1 +DEPOSIT_SIZE: constant(uint256) = 32 # ETH +MIN_TOPUP_SIZE: constant(uint256) = 1 # ETH GWEI_PER_ETH: constant(uint256) = 10**9 POW_CONTRACT_MERKLE_TREE_DEPTH: constant(uint256) = 32 SECONDS_PER_DAY: constant(uint256) = 86400