--halt-at-slot 1 now halts at slot 1

This commit is contained in:
Michael Vines 2020-01-23 02:49:32 -07:00
parent 6b5172d002
commit 7ca0109732
1 changed files with 4 additions and 4 deletions

View File

@ -718,10 +718,6 @@ fn process_pending_slots(
allocated.since(initial_allocation)
);
if slot >= dev_halt_at_slot {
break;
}
process_next_slots(
&bank,
&meta,
@ -730,6 +726,10 @@ fn process_pending_slots(
&mut pending_slots,
&mut fork_info,
)?;
if slot >= dev_halt_at_slot {
break;
}
}
Ok(fork_info)