Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterSurda committed May 29, 2017
1 parent 3a543ef commit 11d02b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/network/invthread.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ def run(self):
try:
data = invQueue.get(False)
if len(data) == 2:
BMConnectionPool().handleReceivedObject(self, data[0], data[1])
BMConnectionPool().handleReceivedObject(data[0], data[1])
else:
BMConnectionPool().handleReceivedObject(self, data[0], data[1], data[2])
BMConnectionPool().handleReceivedObject(data[0], data[1], data[2])
self.holdHash (stream, hash)
#print "Holding hash %i, %s" % (stream, hexlify(hash))
except Queue.Empty:
Expand Down

0 comments on commit 11d02b1

Please sign in to comment.