quality fixes after inventory issue resolve
This commit is contained in:
parent
c25ef395ad
commit
948ee91e04
|
@ -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' '''
|
||||
|
|
Reference in New Issue
Block a user