This repository was archived by the owner on Jun 6, 2023. It is now read-only.

Description
PopExpiredSectors should check that all sectors popped from the expiration queue exist in the partition:
|
expiredSectors, err := bitfield.MergeBitFields(popped.OnTimeSectors, popped.EarlySectors) |
PopEarlyTerminations should check that all sectors processed in the early termination queue exist in the partition:
|
if err = earlyTerminatedQ.ForEach(func(epoch abi.ChainEpoch, sectors bitfield.BitField) error { |
|
toProcess := sectors |