1 2017-08-11 13:12:17 <aza3333> I'm having trouble getting a bloom filter to return relevant blocks. How can I minimise the false positive rate (I'm on testnet and no privacy concerns)?
2 2017-08-11 13:49:03 <belcher> aza3333 have you read this? https://bitcoin.org/en/developer-examples#creating-a-bloom-filter
3 2017-08-11 13:49:54 <belcher> in the limit of p -> 0, log(p) becomes infinitely large and negative so nFilterBytes = BYTES_MAX
4 2017-08-11 13:50:04 <belcher> so just set nFilterBytes = BYTES_MAX to get the smallest fp rate
5 2017-08-11 14:32:03 <nazarewk> how can i "safely" retrieve all transaction on my bitcoind node's wallet?
6 2017-08-11 14:32:24 <nazarewk> my node is instantly crashing on listsinceblock
7 2017-08-11 14:32:38 <nazarewk> and after a while of iterating over listtransactions 500 by 500
8 2017-08-11 14:32:59 <nazarewk> (i'm on t2.small and have few years worth of service transactions)
9 2017-08-11 17:59:10 <topi`> hi folks. any advice on how to debug locks/mutexes with the boost library? My C++ skills are probably 25 years behind times.