--halt-at-slot 1 now halts at slot 1
This commit is contained in:
@ -561,10 +561,6 @@ fn process_pending_slots(
|
|||||||
allocated.since(initial_allocation)
|
allocated.since(initial_allocation)
|
||||||
);
|
);
|
||||||
|
|
||||||
if slot >= dev_halt_at_slot {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
process_next_slots(
|
process_next_slots(
|
||||||
&bank,
|
&bank,
|
||||||
&meta,
|
&meta,
|
||||||
@ -573,6 +569,10 @@ fn process_pending_slots(
|
|||||||
&mut pending_slots,
|
&mut pending_slots,
|
||||||
&mut fork_info,
|
&mut fork_info,
|
||||||
)?;
|
)?;
|
||||||
|
|
||||||
|
if slot >= dev_halt_at_slot {
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(fork_info)
|
Ok(fork_info)
|
||||||
|
Reference in New Issue
Block a user