Rename and changed peer window

This commit is contained in:
obscuren
2014-09-17 15:58:44 +02:00
parent e4cc365e89
commit 01863ebff0
7 changed files with 56 additions and 17 deletions

View File

@ -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,
))