We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b04ff83 commit d69e88fCopy full SHA for d69e88f
bitcoin/bloom.py
@@ -38,8 +38,8 @@ def MurmurHash3(nHashSeed, vDataToHash):
38
39
# body
40
i = 0
41
- while i < len(vDataToHash) - len(vDataToHash) % 4 \
42
- and len(vDataToHash) - i >= 4:
+ while (i < len(vDataToHash) - len(vDataToHash) % 4
+ and len(vDataToHash) - i >= 4):
43
44
k1 = struct.unpack(b"<L", vDataToHash[i:i+4])[0]
45
0 commit comments