From 3b625086103275893618b1c2a56d765332cc91d7 Mon Sep 17 00:00:00 2001 From: terence tsao Date: Thu, 29 Nov 2018 06:18:31 -0800 Subject: [PATCH] added link for BLS12-381 bls_verify spec --- specs/core/0_beacon-chain.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/specs/core/0_beacon-chain.md b/specs/core/0_beacon-chain.md index 82ecc658d..50ecc2e6c 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -904,7 +904,7 @@ def get_new_validators(current_validators: List[ValidatorRecord], val.balance += deposit_size return new_validators, index ``` - +`BLSVerify` is a function for verifying a BLS12-381 signature, defined in the [BLS12-381 spec](https://github.com/ethereum/eth2.0-specs/blob/master/specs/bls_verify.md). Now, to add a validator or top up an existing validator's balance: ```python @@ -939,7 +939,6 @@ def add_or_topup_validator(state: BeaconState, return index ``` -`BLSVerify` is a function for verifying a BLS12-381 signature, defined in the BLS12-381 spec. ### Routine for removing a validator