Update extern/storage-sealing/states_sealing.go

fix sector precommitted but expired judgment

Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
This commit is contained in:
llifezou 2021-07-02 11:44:46 +08:00 committed by Łukasz Magiera
parent 101d152540
commit d5b7e81b09

View File

@ -150,7 +150,7 @@ func (m *Sealing) getTicket(ctx statemachine.Context, sector SectorInfo) (abi.Se
}
}
if allocated { // allocated is true, sector precommitted but expired, will SectorCommitFailed or SectorRemove
if pci == nil && allocated { // allocated is true, sector precommitted but expired, will SectorCommitFailed or SectorRemove
return nil, 0, allocated, xerrors.Errorf("sector %s precommitted but expired", sector.SectorNumber)
}