Merge pull request #1351 from filecoin-project/fix/fpost
fixup fallback post
This commit is contained in:
commit
9c75c1365f
@ -157,6 +157,10 @@ func (s *FPoStScheduler) runPost(ctx context.Context, eps abi.ChainEpoch, ts *ty
|
||||
if err != nil {
|
||||
return nil, xerrors.Errorf("getting sorted sector info: %w", err)
|
||||
}
|
||||
if len(ssi) == 0 {
|
||||
log.Warn("attempted to run fpost without any sectors...")
|
||||
return nil, xerrors.Errorf("no sectors to run fpost on")
|
||||
}
|
||||
|
||||
log.Infow("running fPoSt",
|
||||
"chain-random", rand,
|
||||
@ -220,6 +224,7 @@ func (s *FPoStScheduler) sortedSectorInfo(ctx context.Context, ts *types.TipSet)
|
||||
sbsi[k] = abi.SectorInfo{
|
||||
SectorNumber: sector.Info.Info.SectorNumber,
|
||||
SealedCID: sector.Info.Info.SealedCID,
|
||||
RegisteredProof: sector.Info.Info.RegisteredProof,
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user