aboutsummaryrefslogtreecommitdiffstats
path: root/miner
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-05-22 01:53:27 +0800
committerobscuren <geffobscura@gmail.com>2015-05-22 01:53:27 +0800
commit054abe20b81ada11a820405f4a42f59cea9f9199 (patch)
tree9d7cfd23c1103f55ebefd80bc56ab18a0fcfca18 /miner
parent8c25a837086c8e1f5471b4dc24afb6e5045e21cc (diff)
downloadgo-tangerine-054abe20b81ada11a820405f4a42f59cea9f9199.tar
go-tangerine-054abe20b81ada11a820405f4a42f59cea9f9199.tar.gz
go-tangerine-054abe20b81ada11a820405f4a42f59cea9f9199.tar.bz2
go-tangerine-054abe20b81ada11a820405f4a42f59cea9f9199.tar.lz
go-tangerine-054abe20b81ada11a820405f4a42f59cea9f9199.tar.xz
go-tangerine-054abe20b81ada11a820405f4a42f59cea9f9199.tar.zst
go-tangerine-054abe20b81ada11a820405f4a42f59cea9f9199.zip
miner: moved break INSIDE the switch ...
Diffstat (limited to 'miner')
-rw-r--r--miner/miner.go9
1 files changed, 5 insertions, 4 deletions
diff --git a/miner/miner.go b/miner/miner.go
index 4e99245f8..20ca81648 100644
--- a/miner/miner.go
+++ b/miner/miner.go
@@ -45,6 +45,7 @@ func New(eth core.Backend, mux *event.TypeMux, pow pow.PoW) *Miner {
// and halt your mining operation for as long as the DOS continues.
func (self *Miner) update() {
events := self.mux.Subscribe(downloader.StartEvent{}, downloader.DoneEvent{}, downloader.FailedEvent{})
+out:
for ev := range events.Chan() {
switch ev.(type) {
case downloader.StartEvent:
@@ -62,11 +63,11 @@ func (self *Miner) update() {
if shouldStart {
self.Start(self.coinbase, self.threads)
}
+ // unsubscribe. we're only interested in this event once
+ events.Unsubscribe()
+ // stop immediately and ignore all further pending events
+ break out
}
- // unsubscribe. we're only interested in this event once
- events.Unsubscribe()
- // stop immediately and ignore all further pending events
- break
}
}