Merge pull request #671 from filecoin-project/fix/less-scary-error

Make ppe == 0 error less scary
This commit is contained in:
Łukasz Magiera 2019-11-22 10:28:30 -06:00 committed by GitHub
commit 5bfcc307e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ func (m *Miner) beginPosting(ctx context.Context) {
} }
if ppe == 0 { if ppe == 0 {
log.Errorf("Proving period end == 0") log.Warn("Not proving yet")
return return
} }