Skip to content

Commit

Permalink
Import keys file bloom filter utility (uncommented pubkey checking) #319
Browse files Browse the repository at this point in the history
  • Loading branch information
James Calfee committed Oct 22, 2015
1 parent 8264825 commit 527813b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dl/programs/bloom_filter_wallet.js
Expand Up @@ -66,7 +66,7 @@ fs.readFile('bloom.dat', function (err, data) {
if( ! keys.public_keys) unsupportedJsonFormat()
var key = keys.public_keys[k]
if( /^GPH/.test(key) ) key = "BTS" + key.substring(3)
// if(in_bloom( key )) continue
if(in_bloom( key )) continue
var addresses = key_utils.addresses(key)
var addy_found = false
for(var i = 0; i < addresses.length; i++) {
Expand Down

0 comments on commit 527813b

Please sign in to comment.