You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 1, 2021. It is now read-only.
Add assertion for Verify that attestation.data.slot >= GENESIS_SLOT
# Can't submit attestations that are too far in history (or in prehistory) assertattestation.data.slot>=GENESIS_SLOTassertstate.slot<attestation.data.slot+SLOTS_PER_EPOCH# Can't submit attestations too quicklyassertattestation.data.slot+MIN_ATTESTATION_INCLUSION_DELAY<=state.slot
What is wrong?
https://github.com/ethereum/eth2.0-specs/blob/dev/specs/core/0_beacon-chain.md#attestations-1
Verify that attestation.data.slot >= GENESIS_SLOT
MIN_ATTESTATION_INCLUSION_DELAY
(Fix slot range for attestation inclusion consensus-specs#669)How can it be fixed
Fill this in if you know how to fix it.
The text was updated successfully, but these errors were encountered: