Merge pull request #3720 from filecoin-project/fix/increase-precommit2-retry-counter

Increase the number of times precommit2 is attempted before moving back to precommit1
This commit is contained in:
Łukasz Magiera 2020-09-10 11:52:01 +02:00 committed by GitHub
commit f64bd55bc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,7 +62,7 @@ func (m *Sealing) handleSealPrecommit2Failed(ctx statemachine.Context, sector Se
return err
}
if sector.PreCommit2Fails > 1 {
if sector.PreCommit2Fails > 3 {
return ctx.Send(SectorRetrySealPreCommit1{})
}