Skip to content

Commit b2dc66c

Browse files
committed
minor optimization
1 parent d276241 commit b2dc66c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

actors/miner/src/expiration_queue.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -806,8 +806,8 @@ impl<'db, BS: Blockstore> ExpirationQueue<'db, BS> {
806806
}
807807

808808
if !es.on_time_sectors.get(sector.sector_number) {
809-
// continue scan for this sector
810-
return Ok(true);
809+
// continue scan for this sector if not already at end_epoch
810+
return Ok(epoch < end_epoch);
811811
}
812812

813813
let group = group_expiration_set(

0 commit comments

Comments
 (0)