From bf753a612090ba5d25c6f72fc501cb59e0760337 Mon Sep 17 00:00:00 2001 From: Akhila Raju Date: Wed, 19 Dec 2018 19:56:26 -0600 Subject: [PATCH] Remove line repeat in initiate_validator_exit --- specs/core/0_beacon-chain.md | 1 - 1 file changed, 1 deletion(-) diff --git a/specs/core/0_beacon-chain.md b/specs/core/0_beacon-chain.md index 137167abc..6bd60512e 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -1338,7 +1338,6 @@ def initiate_validator_exit(state: BeaconState, if validator.status != ACTIVE: return - validator = state.validator_registry[index] validator.status = ACTIVE_PENDING_EXIT validator.latest_status_change_slot = state.slot ```