Fixed MIN_DEPOSIT_AMOUNT

This commit is contained in:
vbuterin 2019-03-07 04:04:05 -06:00 committed by GitHub
parent be4b912373
commit f9a07f7653
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -209,10 +209,10 @@ Code snippets appearing in `this style` are to be interpreted as Python code.
| Name | Value | Unit |
| - | - | :-: |
| `MIN_DEPOSIT_AMOUNT` | `2**0 * 10**9` (= 2,000,000,000) | Gwei |
| `MIN_DEPOSIT_AMOUNT` | `10**9` (= 1,000,000,000) | Gwei |
| `MAX_DEPOSIT_AMOUNT` | `2**5 * 10**9` (= 32,000,000,000) | Gwei |
| `EJECTION_BALANCE` | `2**4 * 10**9` (= 16,000,000,000) | Gwei |
| `HIGH_BALANCE_INCREMENT` | `10 ** 9` (= 1,000,000,000) | Gwei |
| `HIGH_BALANCE_INCREMENT` | `10**9` (= 1,000,000,000) | Gwei |
### Initial values