diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-02-27 00:48:39 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-02-29 17:24:58 +0800 |
commit | b534106cc81f4df3d1facb46450c775e2eb617b0 (patch) | |
tree | adcdb56904fc1b864b3d0fe37c7e20311b1aa60f /miner | |
parent | 85865a51b63cdbeaabb76a3729f9b8361a2616d7 (diff) | |
download | dexon-b534106cc81f4df3d1facb46450c775e2eb617b0.tar.gz dexon-b534106cc81f4df3d1facb46450c775e2eb617b0.tar.zst dexon-b534106cc81f4df3d1facb46450c775e2eb617b0.zip |
core, miner: add PendingStateEvent to track non-log updates
Diffstat (limited to 'miner')
-rw-r--r-- | miner/worker.go | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/miner/worker.go b/miner/worker.go index 71f22ef1c..f3e95cb5f 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -649,8 +649,15 @@ func (env *Work) commitTransactions(mux *event.TypeMux, transactions types.Trans coalescedLogs = append(coalescedLogs, logs...) } } - if len(coalescedLogs) > 0 { - go mux.Post(core.PendingLogsEvent{Logs: coalescedLogs}) + if len(coalescedLogs) > 0 || env.tcount > 0 { + go func(logs vm.Logs, tcount int) { + if len(logs) > 0 { + mux.Post(core.PendingLogsEvent{Logs: logs}) + } + if tcount > 0 { + mux.Post(core.PendingStateEvent{}) + } + }(coalescedLogs, env.tcount) } } |