From 82a2c051bb28640570389fcefe101078b44200b6 Mon Sep 17 00:00:00 2001 From: a3284642 Date: Fri, 19 Sep 2014 17:17:57 +0000 Subject: [PATCH] Update class_receiveDataThread.py changed comments to clarify that a smaller value for the "POW" variable corresponds to a stronger proof of work --- src/class_receiveDataThread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/class_receiveDataThread.py b/src/class_receiveDataThread.py index bf65c4f8..0b4c2a04 100644 --- a/src/class_receiveDataThread.py +++ b/src/class_receiveDataThread.py @@ -300,7 +300,7 @@ class receiveDataThread(threading.Thread): numberOfObjectsInInvMessage = 0 payload = '' # Now let us start appending all of these hashes together. They will be - # sent out in a big inv message to our new peer in POW order + # sent out in a big inv message to our new peer with the stonger POW objects first for hash in sorted(bigInvList, key=bigInvList.__getitem__): payload += hash numberOfObjectsInInvMessage += 1