diff options
author | obscuren <geffobscura@gmail.com> | 2015-02-14 00:23:18 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-02-14 00:23:18 +0800 |
commit | 00fca409398172811e71158e0ca9f6229e0f815b (patch) | |
tree | 8f7dc62676e519236b69a977c7af00d81b1e0406 /cmd/mist/gui.go | |
parent | 5c251b69282b3992512d0c17ed0063f294a0e663 (diff) | |
parent | 8a0f23915e4feb9aabe21bd075416bc0f32bbc43 (diff) | |
download | dexon-00fca409398172811e71158e0ca9f6229e0f815b.tar dexon-00fca409398172811e71158e0ca9f6229e0f815b.tar.gz dexon-00fca409398172811e71158e0ca9f6229e0f815b.tar.bz2 dexon-00fca409398172811e71158e0ca9f6229e0f815b.tar.lz dexon-00fca409398172811e71158e0ca9f6229e0f815b.tar.xz dexon-00fca409398172811e71158e0ca9f6229e0f815b.tar.zst dexon-00fca409398172811e71158e0ca9f6229e0f815b.zip |
Merge branch 'miner' into develop
Diffstat (limited to 'cmd/mist/gui.go')
-rw-r--r-- | cmd/mist/gui.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/mist/gui.go b/cmd/mist/gui.go index dee99859c..6d179eea1 100644 --- a/cmd/mist/gui.go +++ b/cmd/mist/gui.go @@ -452,7 +452,7 @@ func (gui *Gui) update() { case <-generalUpdateTicker.C: statusText := "#" + gui.eth.ChainManager().CurrentBlock().Number().String() lastBlockLabel.Set("text", statusText) - miningLabel.Set("text", "Mining @ "+strconv.FormatInt(gui.uiLib.miner.GetPow().GetHashrate(), 10)+"Khash") + miningLabel.Set("text", "Mining @ "+strconv.FormatInt(gui.uiLib.miner.HashRate(), 10)+"/Khash") /* blockLength := gui.eth.BlockPool().BlocksProcessed |