Merge branch 'validation' into beacon_block

This commit is contained in:
Paul Hauner 2018-10-15 15:29:29 +11:00
commit cd05616efa
No known key found for this signature in database
GPG Key ID: 303E4494BB28068C

View File

@ -102,8 +102,8 @@ impl<T> AttestationValidationContext<T>
}
/*
* The attestation must indicate that its last justified slot is the same as the last justified
* slot known to us.
* The attestation justified slot must not be higher than the last_justified_slot of the
* context.
*/
if a.justified_slot > self.last_justified_slot {
return Err(AttestationValidationError::JustifiedSlotIncorrect);