Commit 2382da41 authored by Péter Szilágyi's avatar Péter Szilágyi

cmd/mist: fix a stale error message

parent 54db5493
...@@ -105,7 +105,7 @@ func (ui *UiLib) Connect(button qml.Object) { ...@@ -105,7 +105,7 @@ func (ui *UiLib) Connect(button qml.Object) {
func (ui *UiLib) ConnectToPeer(nodeURL string) { func (ui *UiLib) ConnectToPeer(nodeURL string) {
if err := ui.eth.AddPeer(nodeURL); err != nil { if err := ui.eth.AddPeer(nodeURL); err != nil {
guilogger.Infoln("TrustPeer error: " + err.Error()) guilogger.Infoln("AddPeer error: " + err.Error())
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment