We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b25e8b7 commit 35806ccCopy full SHA for 35806cc
miner/worker.go
@@ -289,6 +289,10 @@ func (self *worker) push() {
289
func (self *worker) makeCurrent() {
290
block := self.chain.NewBlock(self.coinbase)
291
parent := self.chain.GetBlock(block.ParentHash())
292
+ // TMP fix for build server ...
293
+ if parent == nil {
294
+ return
295
+ }
296
297
if block.Time() <= parent.Time() {
298
block.Header().Time = parent.Header().Time + 1
0 commit comments