class_singleWorker quality fixes

This commit is contained in:
lakshyacis 2019-11-04 20:21:22 +05:30
parent 80b2bc1c9a
commit 9923e97279
No known key found for this signature in database
GPG Key ID: D2C539C8EC63E9EB
1 changed files with 3 additions and 4 deletions

View File

@ -1,6 +1,5 @@
"""
src/class_singleWorker.py
=========================
Thread for performing PoW
"""
# pylint: disable=protected-access,too-many-branches,too-many-statements,no-self-use,too-many-lines,too-many-locals
@ -468,8 +467,8 @@ class singleWorker(StoppableThread):
def sendOnionPeerObj(self, peer=None):
"""Send onionpeer object representing peer"""
if not peer: # find own onionhostname
for peer in state.ownAddresses:
if peer.host.endswith('.onion'):
for peer_ in state.ownAddresses:
if peer_.host.endswith('.onion'):
break
else:
return