This commit is contained in:
Emilia Hane 2023-01-20 09:00:17 +01:00
parent 0bdc291490
commit d1b75e281f
No known key found for this signature in database
GPG Key ID: E73394F9C09206FA

View File

@ -768,7 +768,7 @@ where
.ok_or_else(|| Error::InvalidBlock(InvalidBlock::UnknownParent(block.parent_root())))?;
// Blocks cannot be in the future. If they are, their consideration must be delayed until
// the are in the past.
// they are in the past.
//
// Note: presently, we do not delay consideration. We just drop the block.
if block.slot() > current_slot {