We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fe5ec7 commit 22e5b2fCopy full SHA for 22e5b2f
lib/bloom.js
@@ -42,7 +42,7 @@ Bloom.prototype.add = function (e) {
42
*/
43
Bloom.prototype.check = function (e) {
44
e = utils.sha3(e)
45
- var mask = 511 // binary 111111111
+ var mask = 2047 // binary 11111111111
46
var match = true
47
48
for (var i = 0; i < 3 && match; i++) {
0 commit comments