fix incorrect types for eth in pow contract

This commit is contained in:
Danny Ryan 2018-11-27 12:18:32 -06:00 committed by GitHub
parent 4d3f388d28
commit 8b8253cdb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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