This commit is contained in:
Christoph Jentzsch 2015-09-02 21:22:44 +00:00
commit f0bc80ed15

View file

@ -434,7 +434,7 @@ func (self *worker) commitNewWork() {
tstart := time.Now()
parent := self.chain.CurrentBlock()
tstamp := tstart.Unix()
if parent.Time().Cmp(new(big.Int).SetInt64(tstamp)) != 1 {
if parent.Time().Cmp(new(big.Int).SetInt64(tstamp)) != -1 {
tstamp = parent.Time().Int64() + 1
}
// this will ensure we're not going off too far in the future