pubkey: Bytes48

This commit is contained in:
Hsiao-Wei Wang 2019-01-17 19:40:26 +08:00
parent ba7bc29ce9
commit 18b97cf922
No known key found for this signature in database
GPG Key ID: 95B070122902DEA4
1 changed files with 2 additions and 2 deletions

View File

@ -1303,7 +1303,7 @@ First, a helper function:
```python
def validate_proof_of_possession(state: BeaconState,
pubkey: bytes,
pubkey: Bytes48,
proof_of_possession: Signature,
withdrawal_credentials: Bytes32,
randao_commitment: Bytes32,
@ -1332,7 +1332,7 @@ Now, to add a [validator](#dfn-validator) or top up an existing [validator](#dfn
```python
def process_deposit(state: BeaconState,
pubkey: bytes,
pubkey: Bytes48,
amount: int,
proof_of_possession: Signature,
withdrawal_credentials: Bytes32,