aboutsummaryrefslogtreecommitdiffstats
path: root/miner/miner.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-01 06:09:49 +0800
committerobscuren <geffobscura@gmail.com>2015-03-01 06:09:49 +0800
commit65cad14f9b27db396d036f47814d4843d947ac43 (patch)
tree89395b2035f38d9dd851c0d50a064387469355eb /miner/miner.go
parentfdf939a6f9b5360d76415c7118969d92af2774f9 (diff)
downloaddexon-65cad14f9b27db396d036f47814d4843d947ac43.tar
dexon-65cad14f9b27db396d036f47814d4843d947ac43.tar.gz
dexon-65cad14f9b27db396d036f47814d4843d947ac43.tar.bz2
dexon-65cad14f9b27db396d036f47814d4843d947ac43.tar.lz
dexon-65cad14f9b27db396d036f47814d4843d947ac43.tar.xz
dexon-65cad14f9b27db396d036f47814d4843d947ac43.tar.zst
dexon-65cad14f9b27db396d036f47814d4843d947ac43.zip
Report debug hash rate
Diffstat (limited to 'miner/miner.go')
-rw-r--r--miner/miner.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/miner/miner.go b/miner/miner.go
index 0cc2361c8..6b416be8e 100644
--- a/miner/miner.go
+++ b/miner/miner.go
@@ -52,10 +52,5 @@ func (self *Miner) Stop() {
}
func (self *Miner) HashRate() int64 {
- var tot int64
- for _, agent := range self.worker.agents {
- tot += agent.Pow().GetHashrate()
- }
-
- return tot
+ return self.worker.HashRate()
}