From cbb1571a90dce4244946f5eff5d99c7a08091532 Mon Sep 17 00:00:00 2001 From: Danny Ryan Date: Mon, 28 Jan 2019 21:25:59 -0700 Subject: [PATCH] remove last ref to casper --- 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 4adcacdcc..a82985b37 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -1599,8 +1599,8 @@ Verify that `len(block.body.attester_slashings) <= MAX_ATTESTER_SLASHINGS`. For each `attester_slashing` in `block.body.attester_slashings`: -* Let `slashable_vote_1 = casper_slashing.slashable_vote_1`. -* Let `slashable_vote_2 = casper_slashing.slashable_vote_2`. +* Let `slashable_vote_1 = attester_slashing.slashable_vote_1`. +* Let `slashable_vote_2 = attester_slashing.slashable_vote_2`. * Let `intersection = [x for x in slashable_vote_1.validator_indices if x in slashable_vote_2.validator_indices]`. * Verify that `len(intersection) >= 1`. * Verify that `slashable_vote_1.data != slashable_vote_2.data`.