1 2016-03-06 03:20:24 <BlueMatt> anyone feel like mining some testnet blocks?
 2 2016-03-06 03:23:14 <FjordPrefect> Hey guys, I was looking into blockchain programming and couldn't find many resources. Any suggestions?
 3 2016-03-06 03:23:56 <Lightsword> BlueMatt, on segnet or primary testnet?
 4 2016-03-06 03:24:03 <BlueMatt> Lightsword: normal testnet
 5 2016-03-06 03:24:14 <BlueMatt> oh, wait, nvm, someone found a block
 6 2016-03-06 03:24:18 <BlueMatt> thanks anonymous miner
 7 2016-03-06 03:24:31 <BlueMatt> argh, they didnt include my tx :(
 8 2016-03-06 03:24:37 <BlueMatt> fuckers
 9 2016-03-06 03:25:12 <BlueMatt> Lightsword: can you mine b40d476d2885bb32e62b35ee12829e6da2b774cba4d9e1768f888e52814513fb ?
10 2016-03-06 03:26:14 <Lightsword> BlueMatt, I think I only have segnet set up right now, I could point a miner at one of your nodes if you want
11 2016-03-06 03:26:49 <BlueMatt> hmm, dont have any stratum things set up...lemme see if I can guess patrick's hostname
12 2016-03-06 03:27:29 <BlueMatt> does stratum.testnet.mining.strateman.ninja
13 2016-03-06 03:27:31 <BlueMatt> do anything?
14 2016-03-06 03:31:54 <BlueMatt> Lightsword: ^?
15 2016-03-06 03:32:20 <Lightsword> BlueMatt, um, sec
16 2016-03-06 03:34:37 <BlueMatt> Lightsword: well, someone did
17 2016-03-06 03:34:39 <BlueMatt> thanks (?)
18 2016-03-06 03:34:48 <Lightsword> oh, wasn’t me
19 2016-03-06 04:20:38 <Lightsword> does this look correct for NODE_BLOOM detection in bitcoinj? https://github.com/bitcoinj/bitcoinj/compare/master...jameshilliard:detect-bloom-filters?expand=1
20 2016-03-06 04:51:04 <BlueMatt> Lightsword: I went to go look into implementing that stuff a while back and recall having like 4x more code than that
21 2016-03-06 04:51:24 <BlueMatt> Lightsword: but, the, I think there was some bug where the peergroup stuff wasnt even bothering to check isBloomFilteringSupported that needed fixing
22 2016-03-06 04:51:26 <Lightsword> BlueMatt, seems I missed some tests
23 2016-03-06 04:53:24 <Lightsword> BlueMatt, this assert is failing for me right now https://github.com/jameshilliard/bitcoinj/blob/315863d4e8a4aa67d69e6ea2a31c3e3ee545b3c5/core/src/test/java/org/bitcoinj/core/PeerGroupTest.java#L708
24 2016-03-06 05:04:42 <BlueMatt> Lightsword: yea, it assumes lots of shit...its not actually a trivial change :(
25 2016-03-06 05:05:44 <Lightsword> BlueMatt, have a copy of the code you have so far?
26 2016-03-06 05:05:53 <BlueMatt> Lightsword: hmmmmm
27 2016-03-06 05:05:54 <BlueMatt> lemme look
28 2016-03-06 05:06:50 <Lightsword> lots of bitcoinj clients keep trying to connect to my mining nodes and run bloom filters on them only to get kicked, trying to get them to stop doing that :P
29 2016-03-06 05:07:49 <BlueMatt> hmm, the only thing in my git logs is the same 4-line commit
30 2016-03-06 05:07:55 <BlueMatt> so...maybe I'm tripping?
31 2016-03-06 05:08:29 <BlueMatt> sorry :/
32 2016-03-06 05:08:40 <Lightsword> BlueMatt, could be :P is this the correct mask here for NODE_BLOOM? https://github.com/bitcoinj/bitcoinj/compare/master...jameshilliard:detect-bloom-filters?expand=1#diff-ac354c1e0c4f4ba65d2fc3fe77dfa41eR45
33 2016-03-06 05:09:50 <BlueMatt> localServices == NODE_BLOOM => (localServices & NODE_BLOOM) == NODE_BLOOM
34 2016-03-06 05:09:52 <BlueMatt> but, yea
35 2016-03-06 05:15:22 <Lightsword> BlueMatt, do I need to change localServices to (localServices & NODE_BLOOM)?
36 2016-03-06 05:15:28 <BlueMatt> no
37 2016-03-06 05:15:30 <BlueMatt> should not
38 2016-03-06 05:17:07 <Lightsword> BlueMatt, any idea why waitForPeersOfVersion is failing in the tests?
39 2016-03-06 05:18:23 <BlueMatt> probably asserting that it has a bloom-filter-supporting-peer?