--halt-at-slot 1 now halts at slot 1
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user