don't crash when stringifying nil peerinfo

This commit is contained in:
Dmitriy Ryajov 2020-02-12 09:40:54 -05:00
parent 4faf35c52c
commit 6316b07e81
1 changed files with 5 additions and 1 deletions

View File

@ -105,9 +105,13 @@ proc publicKey*(p: PeerInfo): Option[PublicKey] {.inline.} =
result = some(p.privateKey.getKey())
proc id*(p: PeerInfo): string {.inline.} =
result = p.peerId.pretty()
if not isNil(p):
result = p.peerId.pretty()
proc `$`*(p: PeerInfo): string =
if isNil(p):
return ""
result.add("PeerID: ")
result.add(p.id & "\n")