Merge pull request #1858 from hayeah/fix-miner-stale-tipset
Fix block production timing to avoid mining old tipset
This commit is contained in:
commit
f87054bde4
@ -190,7 +190,11 @@ func (m *Miner) mine(ctx context.Context) {
|
|||||||
log.Errorf("failed to submit newly mined block: %s", err)
|
log.Errorf("failed to submit newly mined block: %s", err)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
nextRound := time.Unix(int64(base.TipSet.MinTimestamp()+uint64(build.BlockDelay*base.NullRounds)), 0)
|
// Wait until the next epoch, plus the propagation delay, so a new tipset
|
||||||
|
// has enough time to form.
|
||||||
|
//
|
||||||
|
// See: https://github.com/filecoin-project/lotus/issues/1845
|
||||||
|
nextRound := time.Unix(int64(base.TipSet.MinTimestamp()+uint64(build.BlockDelay*base.NullRounds))+int64(build.PropagationDelay), 0)
|
||||||
|
|
||||||
select {
|
select {
|
||||||
case <-time.After(time.Until(nextRound)):
|
case <-time.After(time.Until(nextRound)):
|
||||||
|
Loading…
Reference in New Issue
Block a user