cleanup leftover
This commit is contained in:
parent
a8d02685c2
commit
581a64be2b
|
@ -60,8 +60,7 @@ def tick_and_add_block(spec, store, signed_block, test_steps, valid=True,
|
||||||
block_time = pre_state.genesis_time + signed_block.message.slot * spec.config.SECONDS_PER_SLOT
|
block_time = pre_state.genesis_time + signed_block.message.slot * spec.config.SECONDS_PER_SLOT
|
||||||
while store.time < block_time:
|
while store.time < block_time:
|
||||||
time = pre_state.genesis_time + (spec.get_current_slot(store) + 1) * spec.config.SECONDS_PER_SLOT
|
time = pre_state.genesis_time + (spec.get_current_slot(store) + 1) * spec.config.SECONDS_PER_SLOT
|
||||||
if time > store.time:
|
on_tick_and_append_step(spec, store, time, test_steps)
|
||||||
on_tick_and_append_step(spec, store, time, test_steps)
|
|
||||||
|
|
||||||
post_state = yield from add_block(
|
post_state = yield from add_block(
|
||||||
spec, store, signed_block, test_steps,
|
spec, store, signed_block, test_steps,
|
||||||
|
@ -146,10 +145,9 @@ def get_blobs_file_name(blobs=None, blobs_root=None):
|
||||||
|
|
||||||
def on_tick_and_append_step(spec, store, time, test_steps):
|
def on_tick_and_append_step(spec, store, time, test_steps):
|
||||||
assert time >= store.time
|
assert time >= store.time
|
||||||
if store.time < time:
|
spec.on_tick(store, time)
|
||||||
spec.on_tick(store, time)
|
test_steps.append({'tick': int(time)})
|
||||||
test_steps.append({'tick': int(time)})
|
output_store_checks(spec, store, test_steps)
|
||||||
output_store_checks(spec, store, test_steps)
|
|
||||||
|
|
||||||
|
|
||||||
def run_on_block(spec, store, signed_block, valid=True):
|
def run_on_block(spec, store, signed_block, valid=True):
|
||||||
|
|
Loading…
Reference in New Issue