Fix the new `Eth1Data` fields to `bytes32`

This commit is contained in:
Hsiao-Wei Wang 2019-01-19 15:46:09 +08:00
parent 28ec5846de
commit ba8c44dd9a
No known key found for this signature in database
GPG Key ID: 95B070122902DEA4
1 changed files with 2 additions and 2 deletions

View File

@ -601,9 +601,9 @@ Unless otherwise indicated, code appearing in `this style` is to be interpreted
```python
{
# Root of the deposit tree
'deposit_root': 'hash32',
'deposit_root': 'bytes32',
# Block hash
'block_hash': 'hash32',
'block_hash': 'bytes32',
}
```