Skip to content

Commit

Permalink
Demote BestMiningCandidate error to wanning
Browse files Browse the repository at this point in the history
  • Loading branch information
magik6k committed Dec 2, 2019
1 parent 28ddc90 commit b255b57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miner/miner.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ eventLoop:
continue
}
if base.ts.Equals(lastBase.ts) && lastBase.nullRounds == base.nullRounds {
log.Errorf("BestMiningCandidate from the previous round: %s (nulls:%d)", lastBase.ts.Cids(), lastBase.nullRounds)
log.Warnf("BestMiningCandidate from the previous round: %s (nulls:%d)", lastBase.ts.Cids(), lastBase.nullRounds)
time.Sleep(build.BlockDelay * time.Second)
continue
}
Expand Down

0 comments on commit b255b57

Please sign in to comment.