invthread flake8 fixes

This commit is contained in:
lakshyacis 2019-09-04 19:54:27 +05:30
parent 28e954902d
commit 97cbe43294
No known key found for this signature in database
GPG Key ID: D2C539C8EC63E9EB
1 changed files with 4 additions and 4 deletions

View File

@ -37,11 +37,11 @@ class InvThread(StoppableThread):
def handleLocallyGenerated(self, stream, hashId):
Dandelion().addHash(hashId, stream=stream)
for connection in \
BMConnectionPool().inboundConnections.values() + \
BMConnectionPool().inboundConnections.values() + \
BMConnectionPool().outboundConnections.values():
if state.dandelion and connection != Dandelion().objectChildStem(hashId):
continue
connection.objectsNewToThem[hashId] = time()
if state.dandelion and connection != Dandelion().objectChildStem(hashId):
continue
connection.objectsNewToThem[hashId] = time()
def run(self):
while not state.shutdown: