Replace `uint384` with `bytes48` for pubkey

This commit is contained in:
Hsiao-Wei Wang 2019-01-17 16:51:50 +08:00
parent 7005e5fd55
commit a588643661
No known key found for this signature in database
GPG Key ID: 95B070122902DEA4
1 changed files with 3 additions and 3 deletions

View File

@ -399,7 +399,7 @@ Unless otherwise indicated, code appearing in `this style` is to be interpreted
```python ```python
{ {
# BLS pubkey # BLS pubkey
'pubkey': 'uint384', 'pubkey': 'bytes48',
# Withdrawal credentials # Withdrawal credentials
'withdrawal_credentials': 'bytes32', 'withdrawal_credentials': 'bytes32',
# Initial RANDAO commitment # Initial RANDAO commitment
@ -530,7 +530,7 @@ Unless otherwise indicated, code appearing in `this style` is to be interpreted
```python ```python
{ {
# BLS public key # BLS public key
'pubkey': 'uint384', 'pubkey': 'bytes48',
# Withdrawal credentials # Withdrawal credentials
'withdrawal_credentials': 'bytes32', 'withdrawal_credentials': 'bytes32',
# RANDAO commitment # RANDAO commitment
@ -614,7 +614,7 @@ Unless otherwise indicated, code appearing in `this style` is to be interpreted
{ {
latest_registry_delta_root: 'bytes32', latest_registry_delta_root: 'bytes32',
validator_index: 'uint24', validator_index: 'uint24',
pubkey: 'uint384', pubkey: 'bytes48',
slot: 'uint64', slot: 'uint64',
flag: 'uint64', flag: 'uint64',
} }