Skip to content

Commit

Permalink
Merge pull request #220 from ethereum/fix-signature-type
Browse files Browse the repository at this point in the history
fix int384 to uint384 in DepositParametersRecord
  • Loading branch information
hwwhww committed Dec 4, 2018
2 parents 0f59a56 + c2227a5 commit bfe0e9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions specs/core/0_beacon-chain.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,9 +261,9 @@ When the contract publishes a `ChainStart` log, this initializes the chain, call
```python
{
# BLS pubkey
'pubkey': 'int384',
'pubkey': 'uint384',
# BLS proof of possession (a BLS signature)
'proof_of_possession': ['int384'],
'proof_of_possession': ['uint384'],
# Withdrawal credentials (TODO: define the format)
'withdrawal_credentials': 'hash32',
# The initial RANDAO commitment
Expand Down

0 comments on commit bfe0e9f

Please sign in to comment.