--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 653bec01f0
commit dc1c5f8b1e

View File

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