work on pow for public keys
parent
d0994b8ef6
commit
5813190cc4
|
@ -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()
|
||||||
|
|
Loading…
Reference in New Issue