pex/kex hopefully now working

This commit is contained in:
Kevin Froman 2018-04-03 16:47:48 -05:00
parent fdceb4be90
commit a611643526
No known key found for this signature in database
GPG key ID: 0D414D0FE405B63B
3 changed files with 22 additions and 9 deletions

View file

@ -359,8 +359,8 @@ class Core:
payload = 'SELECT * FROM peers;'
peerList = []
for i in c.execute(payload):
print('lol - ' + i[2])
peerList.append(i[2])
if type(i[2] != None):
peerList.append(i[2])
peerList.append(self._crypto.pubKey)
conn.close()
return peerList