diff options
author | Alexandre Van de Sande <alex.vandesande@ethdev.com> | 2015-03-03 05:39:07 +0800 |
---|---|---|
committer | Alexandre Van de Sande <alex.vandesande@ethdev.com> | 2015-03-03 05:39:07 +0800 |
commit | 21c373b55dc8543fb97ebf3c66128506d4f74d0a (patch) | |
tree | 35e73be31294b4726e6a42161ffcd513c8fe3807 /cmd/mist/gui.go | |
parent | dea65840186fe861017524c9cb59ae07ac97ed06 (diff) | |
download | go-tangerine-21c373b55dc8543fb97ebf3c66128506d4f74d0a.tar go-tangerine-21c373b55dc8543fb97ebf3c66128506d4f74d0a.tar.gz go-tangerine-21c373b55dc8543fb97ebf3c66128506d4f74d0a.tar.bz2 go-tangerine-21c373b55dc8543fb97ebf3c66128506d4f74d0a.tar.lz go-tangerine-21c373b55dc8543fb97ebf3c66128506d4f74d0a.tar.xz go-tangerine-21c373b55dc8543fb97ebf3c66128506d4f74d0a.tar.zst go-tangerine-21c373b55dc8543fb97ebf3c66128506d4f74d0a.zip |
Network Health Panel with mining
Diffstat (limited to 'cmd/mist/gui.go')
-rw-r--r-- | cmd/mist/gui.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/mist/gui.go b/cmd/mist/gui.go index 4af0cff43..e4b7a7ccb 100644 --- a/cmd/mist/gui.go +++ b/cmd/mist/gui.go @@ -419,8 +419,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().HashRate(), 10)+"/Khash") - + //miningLabel.Set("text", strconv.FormatInt(gui.uiLib.Miner().HashRate(), 10)) case <-statsUpdateTicker.C: gui.setStatsPane() } |