Merge pull request #3181 from filecoin-project/asr/cc-upgrade-fix
Do not try to replace CC sectors with a deal-less sector
This commit is contained in:
commit
fc41b72bb6
3
extern/storage-sealing/upgrade_queue.go
vendored
3
extern/storage-sealing/upgrade_queue.go
vendored
@ -44,6 +44,9 @@ func (m *Sealing) MarkForUpgrade(id abi.SectorNumber) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (m *Sealing) tryUpgradeSector(ctx context.Context, params *miner.SectorPreCommitInfo) big.Int {
|
func (m *Sealing) tryUpgradeSector(ctx context.Context, params *miner.SectorPreCommitInfo) big.Int {
|
||||||
|
if len(params.DealIDs) == 0 {
|
||||||
|
return big.Zero()
|
||||||
|
}
|
||||||
replace := m.maybeUpgradableSector()
|
replace := m.maybeUpgradableSector()
|
||||||
if replace != nil {
|
if replace != nil {
|
||||||
loc, err := m.api.StateSectorPartition(ctx, m.maddr, *replace, nil)
|
loc, err := m.api.StateSectorPartition(ctx, m.maddr, *replace, nil)
|
||||||
|
Loading…
Reference in New Issue
Block a user