aboutsummaryrefslogtreecommitdiff
path: root/miner
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2019-08-13 13:05:44 -0400
committerDeterminant <ted.sybil@gmail.com>2019-08-13 13:05:44 -0400
commit42099d3ff72c5a10a70c94caffd64d1d774b2902 (patch)
tree02a299f9973fb6f3b2521451c96154ff84b1737d /miner
parent58e92e428ae82b8a028d06f563da420ed954100c (diff)
use correct nonce
Diffstat (limited to 'miner')
-rw-r--r--miner/worker.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/miner/worker.go b/miner/worker.go
index f5357f3..b5448d3 100644
--- a/miner/worker.go
+++ b/miner/worker.go
@@ -605,6 +605,7 @@ func (w *worker) resultLoop() {
// Broadcast the block and announce chain insertion event
w.mux.Post(core.NewMinedBlockEvent{Block: block})
+ //w.chain.FastSyncCommitHead(block.Hash())
var events []interface{}
switch stat {