From 092617ec1e236a485b65f555bbfd99d1bcbb2f45 Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Sun, 9 Oct 2022 17:02:50 -0500 Subject: [PATCH] Remove duplicated definition of `Validator` --- specs/capella/beacon-chain.md | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/specs/capella/beacon-chain.md b/specs/capella/beacon-chain.md index 88c21d3fe..09d568f18 100644 --- a/specs/capella/beacon-chain.md +++ b/specs/capella/beacon-chain.md @@ -24,7 +24,6 @@ - [Extended Containers](#extended-containers) - [`ExecutionPayload`](#executionpayload) - [`ExecutionPayloadHeader`](#executionpayloadheader) - - [`Validator`](#validator) - [`BeaconBlockBody`](#beaconblockbody) - [`BeaconState`](#beaconstate) - [Helpers](#helpers) @@ -180,21 +179,6 @@ class ExecutionPayloadHeader(Container): withdrawals_root: Root # [New in Capella] ``` -#### `Validator` - -```python -class Validator(Container): - pubkey: BLSPubkey - withdrawal_credentials: Bytes32 # Commitment to pubkey for withdrawals - effective_balance: Gwei # Balance at stake - slashed: boolean - # Status epochs - activation_eligibility_epoch: Epoch # When criteria for activation were met - activation_epoch: Epoch - exit_epoch: Epoch - withdrawable_epoch: Epoch # When validator can withdraw funds -``` - #### `BeaconBlockBody` ```python