work on pow for public keys

master
Kevin Froman 2018-05-07 02:46:07 -05:00
parent d0994b8ef6
commit 5813190cc4
1 changed files with 4 additions and 1 deletions

View File

@ -457,7 +457,10 @@ class Core:
except TypeError: except TypeError:
pass pass
if getPow: if getPow:
peerList.append(self._crypto.pubKey + '-' + self._crypto.pubKeyPowToken) try:
peerList.append(self._crypto.pubKey + '-' + self._crypto.pubKeyPowToken)
except TypeError:
pass
else: else:
peerList.append(self._crypto.pubKey) peerList.append(self._crypto.pubKey)
conn.close() conn.close()