work on pm and fixed broken pex when none
This commit is contained in:
parent
8d261b03dc
commit
87a9ecf426
2 changed files with 2 additions and 4 deletions
|
@ -360,7 +360,7 @@ class Core:
|
|||
payload = 'SELECT * FROM peers;'
|
||||
peerList = []
|
||||
for i in c.execute(payload):
|
||||
if type(i[2] != None):
|
||||
if type(i[2]) != None:
|
||||
peerList.append(i[2])
|
||||
peerList.append(self._crypto.pubKey)
|
||||
conn.close()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue