Add btc peers to list in UI

This commit is contained in:
Manfred Karrer 2015-12-31 18:19:33 +01:00
parent 67fb7aa825
commit 16baa3ec8d
7 changed files with 69 additions and 40 deletions

View file

@ -20,7 +20,7 @@ public abstract class AuthenticationMessage implements Message {
@Override
public String toString() {
return ", address=" + senderAddress.toString() +
return ", address=" + (senderAddress != null ? senderAddress.toString() : "") +
", networkId=" + networkId +
'}';
}