fixup! Disable use of system time in tests

This commit is contained in:
Emilia Hane
2023-02-14 15:04:50 +01:00
parent 9e4abc79fb
commit 13efd47238
6 changed files with 19 additions and 20 deletions

View File

@@ -1926,8 +1926,9 @@ where
chain_dump
.iter()
.cloned()
.map(|checkpoint| checkpoint.beacon_state.finalized_checkpoint().root.into())
.filter(|block_hash| *block_hash != Hash256::zero().into())
.map(|checkpoint| checkpoint.beacon_state.finalized_checkpoint().root)
.filter(|block_hash| *block_hash != Hash256::zero())
.map(|hash| hash.into())
.collect()
}