aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist/gui.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-11-14 20:51:41 +0800
committerobscuren <geffobscura@gmail.com>2014-11-14 20:51:41 +0800
commit711be7009ef5b9ad77f37a4ccd0dffcc9286e1f8 (patch)
tree5442e685e308ffd3054b4197d9eefe989522e610 /cmd/mist/gui.go
parentf6e55962a8cadfb440dd03467017941b96838362 (diff)
downloaddexon-711be7009ef5b9ad77f37a4ccd0dffcc9286e1f8.tar.gz
dexon-711be7009ef5b9ad77f37a4ccd0dffcc9286e1f8.tar.zst
dexon-711be7009ef5b9ad77f37a4ccd0dffcc9286e1f8.zip
Version bump
Diffstat (limited to 'cmd/mist/gui.go')
-rw-r--r--cmd/mist/gui.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/mist/gui.go b/cmd/mist/gui.go
index 7e867395e..785962ea0 100644
--- a/cmd/mist/gui.go
+++ b/cmd/mist/gui.go
@@ -526,7 +526,7 @@ func (gui *Gui) setStatsPane() {
runtime.ReadMemStats(&memStats)
statsPane := gui.getObjectByName("statsPane")
- statsPane.Set("text", fmt.Sprintf(`###### Mist 0.6.8 (%s) #######
+ statsPane.Set("text", fmt.Sprintf(`###### Mist %s (%s) #######
eth %d (p2p = %d)
@@ -539,7 +539,7 @@ Heap Alloc: %d
CGNext: %x
NumGC: %d
-`, runtime.Version(),
+`, Version, runtime.Version(),
eth.ProtocolVersion, eth.P2PVersion,
runtime.NumCPU, runtime.NumGoroutine(), runtime.NumCgoCall(),
memStats.Alloc, memStats.HeapAlloc,