pubkey: Bytes48

This commit is contained in:
Hsiao-Wei Wang
2019-01-17 19:40:26 +08:00
parent ba7bc29ce9
commit 18b97cf922

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,