From 52de25048a20e79ee618396af17f4277c6347f2f Mon Sep 17 00:00:00 2001 From: Danny Ryan Date: Fri, 5 Jun 2020 09:35:09 -0600 Subject: [PATCH] fix lihth client refs in val guide --- specs/phase1/validator.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specs/phase1/validator.md b/specs/phase1/validator.md index c5d1cd868..243c21014 100644 --- a/specs/phase1/validator.md +++ b/specs/phase1/validator.md @@ -480,7 +480,7 @@ First, `light_aggregate_and_proof = get_light_aggregate_and_proof(state, validat ```python def get_light_aggregate_and_proof(state: BeaconState, aggregator_index: ValidatorIndex, - aggregate: Attestation, + aggregate: LightClientVote, privkey: int) -> LightAggregateAndProof: return LightAggregateAndProof( aggregator_index=aggregator_index, @@ -506,7 +506,7 @@ def get_light_aggregate_and_proof_signature(state: BeaconState, ```python class LightAggregateAndProof(Container): aggregator_index: ValidatorIndex - aggregate: Attestation + aggregate: LightClientVote selection_proof: BLSSignature ```