From 0c5a747ef1e9f64f7c5627256b87ed47d23438db Mon Sep 17 00:00:00 2001 From: Maran Date: Fri, 18 Jul 2014 12:29:14 +0200 Subject: [PATCH] Add mining hash to GUI --- ethereal/gui.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ethereal/gui.go b/ethereal/gui.go index cfe5e2269..d816a774f 100644 --- a/ethereal/gui.go +++ b/ethereal/gui.go @@ -14,6 +14,7 @@ import ( "github.com/ethereum/go-ethereum/utils" "github.com/go-qml/qml" "math/big" + "strconv" "strings" "time" ) @@ -369,11 +370,14 @@ func (gui *Gui) update() { } case <-generalUpdateTicker.C: + statusText := "#" + gui.eth.BlockChain().CurrentBlock.Number.String() if gui.miner != nil { pow := gui.miner.GetPow() - fmt.Println("HashRate from miner", pow.GetHashrate()) + if pow.GetHashrate() != 0 { + statusText = "Mining @ " + strconv.FormatInt(pow.GetHashrate(), 10) + "Khash - " + statusText + } } - lastBlockLabel.Set("text", "#"+gui.eth.BlockChain().CurrentBlock.Number.String()) + lastBlockLabel.Set("text", statusText) } } }