Make sure we're not mining on an invalid TS

pull/632/merge
obscuren 10 years ago
parent c20d04ca67
commit 2683aac9b0
  1. 3
      miner/worker.go

@ -207,6 +207,9 @@ func (self *worker) commitNewWork() {
defer self.uncleMu.Unlock() defer self.uncleMu.Unlock()
block := self.chain.NewBlock(self.coinbase) block := self.chain.NewBlock(self.coinbase)
if block.Time() == self.chain.CurrentBlock().Time() {
block.Header().Time++
}
self.current = env(block, self.eth) self.current = env(block, self.eth)
for _, ancestor := range self.chain.GetAncestors(block, 7) { for _, ancestor := range self.chain.GetAncestors(block, 7) {

Loading…
Cancel
Save