This commit is contained in:
Danny Ryan 2021-11-22 11:33:03 -07:00
parent 282d85b9e7
commit ea09df50db
No known key found for this signature in database
GPG Key ID: 2765A792E42CE07A
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
- [Introduction](#introduction) - [Introduction](#introduction)
- [Fork choice](#fork-choice) - [Fork choice](#fork-choice)
- [Constant](#constant)
- [Preset](#preset) - [Preset](#preset)
- [Configuration](#configuration) - [Configuration](#configuration)
- [Helpers](#helpers) - [Helpers](#helpers)

View File

@ -724,7 +724,7 @@ def test_proposer_score_boost_same_slot_untimely_block(spec, state):
# Process block on untimely arrival in the same slot # Process block on untimely arrival in the same slot
spec.on_tick(store, store.genesis_time + block.slot * spec.config.SECONDS_PER_SLOT + spec.on_tick(store, store.genesis_time + block.slot * spec.config.SECONDS_PER_SLOT +
spec.config.SECONDS_PER_SLOT // spec.ATTESTATION_OFFSET_QUOTIENT) spec.config.SECONDS_PER_SLOT // spec.INTERVALS_PER_SLOT)
yield from tick_and_add_block(spec, store, signed_block, test_steps) yield from tick_and_add_block(spec, store, signed_block, test_steps)
assert store.proposer_score_boost.root == spec.Root() assert store.proposer_score_boost.root == spec.Root()