aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist/gui.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-02-20 05:46:15 +0800
committerobscuren <geffobscura@gmail.com>2015-02-20 05:46:15 +0800
commit000658539136645e743d83d57a8106b2a9796b93 (patch)
treeca37fb68b6b7574d7c888968813598e68d301659 /cmd/mist/gui.go
parentfa4cbad315609e41d88c59ecbce7c6c6169fc57a (diff)
parent639ac5c3daa253f36d41672165a5727d8eba207e (diff)
downloaddexon-000658539136645e743d83d57a8106b2a9796b93.tar.gz
dexon-000658539136645e743d83d57a8106b2a9796b93.tar.zst
dexon-000658539136645e743d83d57a8106b2a9796b93.zip
Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop
Diffstat (limited to 'cmd/mist/gui.go')
-rw-r--r--cmd/mist/gui.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/mist/gui.go b/cmd/mist/gui.go
index afddeb8f6..4af0cff43 100644
--- a/cmd/mist/gui.go
+++ b/cmd/mist/gui.go
@@ -453,7 +453,7 @@ NumGC: %d
))
}
-type qmlpeer struct{ Addr, NodeID, Caps string }
+type qmlpeer struct{ Addr, NodeID, Name, Caps string }
type peersByID []*qmlpeer
@@ -468,6 +468,7 @@ func (gui *Gui) setPeerInfo() {
qpeers[i] = &qmlpeer{
NodeID: p.ID().String(),
Addr: p.RemoteAddr().String(),
+ Name: p.Name(),
Caps: fmt.Sprint(p.Caps()),
}
}