diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-02-03 19:56:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-03 19:56:00 +0800 |
commit | 7734ead52030a6c128613331ea4a24afd9d4173a (patch) | |
tree | 7bed2d0085c7a9cac97691ccf561976119f45c78 /miner | |
parent | 8b57c494908637a5c0e74f8f7a13b3218e026757 (diff) | |
parent | 1bed9b3fea9939581b03cae9d6b4984ced456748 (diff) | |
download | dexon-7734ead52030a6c128613331ea4a24afd9d4173a.tar.gz dexon-7734ead52030a6c128613331ea4a24afd9d4173a.tar.zst dexon-7734ead52030a6c128613331ea4a24afd9d4173a.zip |
Merge pull request #3605 from fjl/event-feed
event: add new Subscription type and related utilities
Diffstat (limited to 'miner')
-rw-r--r-- | miner/worker.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miner/worker.go b/miner/worker.go index 77e4e0205..49ac60253 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -90,7 +90,7 @@ type worker struct { // update loop mux *event.TypeMux - events event.Subscription + events *event.TypeMuxSubscription wg sync.WaitGroup agents map[Agent]struct{} |