fix source/target epochs in test_12

This commit is contained in:
Danny Ryan 2019-06-28 23:28:36 -06:00
parent f484b1e98c
commit 1885e285e3
No known key found for this signature in database
GPG Key ID: 2765A792E42CE07A
1 changed files with 2 additions and 2 deletions

View File

@ -187,8 +187,8 @@ def finalize_on_12(spec, state, epoch, support):
# checkpoints for the epochs ago:
# c4 = spec.Checkpoint(epoch=epoch - 4, root=b'\xaa' * 32)
# c3 = spec.Checkpoint(epoch=epoch - 3, root=b'\xaa' * 32)
c2 = spec.Checkpoint(epoch=epoch - 2, root=b'\xbb' * 32)
c1 = spec.Checkpoint(epoch=epoch - 1, root=b'\xcc' * 32)
c2 = spec.Checkpoint(epoch=epoch - 1, root=b'\xbb' * 32)
c1 = spec.Checkpoint(epoch=epoch, root=b'\xcc' * 32)
state.block_roots[spec.get_epoch_start_slot(c2.epoch) % spec.SLOTS_PER_HISTORICAL_ROOT] = c2.root
state.block_roots[spec.get_epoch_start_slot(c1.epoch) % spec.SLOTS_PER_HISTORICAL_ROOT] = c1.root