From 713af88c4311edb1b3ce23c231ddc8aac70f7b58 Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Thu, 17 Jan 2019 17:03:20 +0800 Subject: [PATCH] `proof_of_possession: Signature` --- specs/core/0_beacon-chain.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specs/core/0_beacon-chain.md b/specs/core/0_beacon-chain.md index 7a12c6a2a..56207a4ca 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -1293,7 +1293,7 @@ First, a helper function: ```python def validate_proof_of_possession(state: BeaconState, pubkey: bytes, - proof_of_possession: bytes, + proof_of_possession: Signature, withdrawal_credentials: Bytes32, randao_commitment: Bytes32, custody_commitment: Bytes32) -> bool: @@ -1323,7 +1323,7 @@ Now, to add a [validator](#dfn-validator) or top up an existing [validator](#dfn def process_deposit(state: BeaconState, pubkey: bytes, amount: int, - proof_of_possession: bytes, + proof_of_possession: Signature, withdrawal_credentials: Bytes32, randao_commitment: Bytes32, custody_commitment: Bytes32) -> None: