Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions specs/phase0/validator.md
Original file line number Diff line number Diff line change
Expand Up @@ -597,12 +597,12 @@ each epoch. The `committee`, assigned `index`, and assigned `slot` for which the
validator performs this role during an epoch are defined by
`get_committee_assignment(state, epoch, validator_index)`.

A validator should create and broadcast the `attestation` to the associated
attestation subnet when either (a) the validator has received a valid block from
the expected block proposer for the assigned `slot` or (b)
`1 / INTERVALS_PER_SLOT` of the `slot` has transpired
(`SECONDS_PER_SLOT / INTERVALS_PER_SLOT` seconds after the start of `slot`) --
whichever comes _first_.
A validator MUST create and broadcast the `attestation` to the associated
attestation subnet immediately upon receiving a valid block from the expected
block proposer for the assigned `slot`. If no valid block is received by
`1 / INTERVALS_PER_SLOT` of the `slot` transpiring
(`SECONDS_PER_SLOT / INTERVALS_PER_SLOT` seconds after the start of `slot`), the
validator MUST create and broadcast the attestation at that time.

*Note*: Although attestations during `GENESIS_EPOCH` do not count toward FFG
finality, these initial attestations do give weight to the fork choice, are
Expand Down