diff options
| author | Determinant <ted.sybil@gmail.com> | 2019-08-13 13:05:44 -0400 |
|---|---|---|
| committer | Determinant <ted.sybil@gmail.com> | 2019-08-13 13:05:44 -0400 |
| commit | 42099d3ff72c5a10a70c94caffd64d1d774b2902 (patch) | |
| tree | 02a299f9973fb6f3b2521451c96154ff84b1737d /miner | |
| parent | 58e92e428ae82b8a028d06f563da420ed954100c (diff) | |
use correct nonce
Diffstat (limited to 'miner')
| -rw-r--r-- | miner/worker.go | 1 |
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 { |