quality fixes after inventory issue resolve

This commit is contained in:
lakshyacis 2020-03-18 19:30:27 +05:30
parent c25ef395ad
commit 948ee91e04
No known key found for this signature in database
GPG Key ID: D2C539C8EC63E9EB
2 changed files with 6 additions and 5 deletions

View File

@ -1,7 +1,7 @@
"""
Thread for performing PoW
"""
# pylint: disable=protected-access,too-many-branches,too-many-statements
# pylint: disable=protected-access,too-many-branches,too-many-statements,unused-variable
# pylint: disable=no-self-use,too-many-lines,too-many-locals,relative-import
@ -477,6 +477,7 @@ class singleWorker(StoppableThread):
def sendOnionPeerObj(self, peer=None):
"""Send onionpeer object representing peer"""
# pylint: disable=redefined-argument-from-local
if not peer: # find own onionhostname
for peer in state.ownAddresses:
if peer.host.endswith('.onion'):
@ -684,7 +685,7 @@ class singleWorker(StoppableThread):
def sendMsg(self):
"""Send a message-type object (assemble the object, perform PoW and put it to the inv announcement queue)"""
# pylint: disable=too-many-nested-blocks
# pylint: disable=too-many-nested-blocks,logging-format-interpolation,unused-variable
# Reset just in case
sqlExecute(
'''UPDATE sent SET status='msgqueued' '''