From 01863ebff06d620c9d3a8cf9195d72caeb11dc19 Mon Sep 17 00:00:00 2001 From: obscuren Date: Wed, 17 Sep 2014 15:58:44 +0200 Subject: Rename and changed peer window --- Mist/gui.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Mist/gui.go') diff --git a/Mist/gui.go b/Mist/gui.go index 208157d69..538719703 100644 --- a/Mist/gui.go +++ b/Mist/gui.go @@ -491,7 +491,9 @@ func (gui *Gui) setStatsPane() { runtime.ReadMemStats(&memStats) statsPane := gui.getObjectByName("statsPane") - statsPane.Set("text", fmt.Sprintf(`###### Ethereal 0.6.4 (%s) ####### + statsPane.Set("text", fmt.Sprintf(`###### Mist 0.6.4 (%s) ####### + +eth %d (p2p = %d) CPU: # %d Goroutines: # %d @@ -502,7 +504,9 @@ Heap Alloc: %d CGNext: %x NumGC: %d -`, runtime.Version(), runtime.NumCPU, runtime.NumGoroutine(), runtime.NumCgoCall(), +`, runtime.Version(), + eth.ProtocolVersion, eth.P2PVersion, + runtime.NumCPU, runtime.NumGoroutine(), runtime.NumCgoCall(), memStats.Alloc, memStats.HeapAlloc, memStats.NextGC, memStats.NumGC, )) -- cgit