--- Day changed Tue Jun 28 2016 00:02 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 00:08 -!- moli [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 00:17 -!- kadoban [~mud@unaffiliated/kadoban] has quit [Ping timeout: 250 seconds] 00:19 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-qouklefpwwyguzav] has joined #bitcoin-core-dev 00:32 -!- xiangfu [~xiangfu@58.135.95.134] has quit [Ping timeout: 244 seconds] 00:57 < GitHub81> [bitcoin] laanwj closed pull request #8264: src: Fix spelling error in comment - tinyformat.h (master...bitcoiner-fix-typo-tinyformat) https://github.com/bitcoin/bitcoin/pull/8264 01:08 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has quit [Read error: Connection reset by peer] 01:11 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 01:12 < GitHub147> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/5a06ebbf2d5f...ff03c50c0048 01:12 < GitHub147> bitcoin/master 1acf1db Pieter Wuille: Do not ask a UI question from bitcoind 01:12 < GitHub147> bitcoin/master ff03c50 Wladimir J. van der Laan: Merge #8257: Do not ask a UI question from bitcoind... 01:12 < GitHub126> [bitcoin] laanwj closed pull request #8257: Do not ask a UI question from bitcoind (master...noask) https://github.com/bitcoin/bitcoin/pull/8257 01:22 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has quit [Quit: Leaving] 01:33 -!- CubicEarth [~cubiceart@c-50-159-126-21.hsd1.wa.comcast.net] has quit [] 02:20 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 02:35 < GitHub126> [bitcoin] ChoHag opened pull request #8278: Forking daemon (master...forking-daemon) https://github.com/bitcoin/bitcoin/pull/8278 02:42 -!- pedrobranco [~pedrobran@79.242.108.93.rev.vodafone.pt] has joined #bitcoin-core-dev 02:50 < GitHub193> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/ff03c50c0048...3b2dadc8d5bb 02:50 < GitHub193> bitcoin/master 9a227e9 Wladimir J. van der Laan: tx: change slug to `bitcoin.qt-translation-013x`... 02:50 < GitHub193> bitcoin/master 3b2dadc Wladimir J. van der Laan: qt: Periodic translations update 02:53 -!- roidster [~chatzilla@71-95-217-105.static.mtpk.ca.charter.com] has quit [Ping timeout: 240 seconds] 02:59 <@wumpus> morcos: thanks for the info; yes that makes sense, I think we should (separately) consider lowering the default mempool size 02:59 <@wumpus> but not for 0.13, maybe, as you say it warrants more testing 03:12 < phantomcircuit> sipa, i'd like to implement mempool sync using short ids 03:12 < phantomcircuit> looking at the trickle logic for this 03:12 < phantomcircuit> im thinking this is no longer trivial 03:12 < phantomcircuit> is there a shortcut you can point me towards? 03:12 < phantomcircuit> :) 03:14 < sipa> can you elaborate? 03:15 < phantomcircuit> sipa, the goal is to essentially prime the cache for compact block 03:16 < gmaxwell> phantomcircuit: the lack of any fetch by short ID might get in your way. :P 03:16 < phantomcircuit> peers request the top ~2MiB of a nodes mempool (ancestor index) and the node responds with short ids 03:17 < phantomcircuit> gmaxwell, well yeah i'd be adding that 03:17 < phantomcircuit> keyed on the last block the requestee had seen 03:17 < gmaxwell> perhaps better is to request a "fakeblock", and then use the getblocktxn mechenism? 03:17 < phantomcircuit> so if you weren't at the same tip you'd just get gibberish 03:18 < gmaxwell> why require same tip? just have the sender pick a nonce. 03:18 < phantomcircuit> because this can be cached by the node receiving the request 03:18 < gmaxwell> or even generate a block, cache it, and serve requests on it. 03:18 < gmaxwell> you can cache a generated block. 03:19 < phantomcircuit> hmm 03:20 < gmaxwell> what kind of timeframe do you think you'd do this in? for mempool sync in general, set reconcillation should be used. PinSketch is super easy to use C++ code, but we couldn't put it into production until rewriting it. (due to incompatible licensing and because NTL is huge) 03:23 < gmaxwell> set recon may or may not make sense for block relay, because the cpu time to decode is prohibitive enough to get in the way of latency... but for mempool sync no such issue exists. 03:23 < gmaxwell> and it sends data exactly equal in size to the symmetric difference. 03:25 < phantomcircuit> i'd like something really simple that we can do like 03:26 < phantomcircuit> nowish 03:26 < phantomcircuit> i have some private patches which are kind of stupid that do this for mining nodes 03:27 < phantomcircuit> there's a pretty significant advantage to having a mining node with a smaller mempool 03:27 < gmaxwell> If there is we should fix that. 03:29 < gmaxwell> because of the use of indexes I'd consider it a bug if createnew block was taking more than a tiny amount longer with a 100MB mempool than a 2MB one. 03:30 < phantomcircuit> it's removing conflicts that's slow 03:30 < phantomcircuit> but yeah i guess i should try to benchmark that first 03:30 < gmaxwell> I was wondering that as I commented, but that might just be the case where we're missing some index we should have. 03:31 < sipa> gmaxwell: the mempool remove of conflicts code copies CTransaction objects all over the place 03:31 < sipa> eh phantomcircuit 03:32 < phantomcircuit> gmaxwell, i'll benchmark it 03:32 < phantomcircuit> im prettttty sure it's slow 03:32 < gmaxwell> great. "we should fix that" 03:32 < sipa> we should switch that to shared_ptr based 03:32 < sipa> so it can return the deleted transactions without copying 03:34 < gmaxwell> phantomcircuit: I think mempool sync is useful and important, but it shouldn't be used to hack around even more important speed improvements. 03:36 < phantomcircuit> gmaxwell, the principle reason for it is to prime the cache for compact blocks 03:36 < phantomcircuit> but i guess that can just be a simple list of txids 03:36 < phantomcircuit> once per connect 03:37 < gmaxwell> yes, thats an initially useful application, though we should also be considering directing our attention toward reducing relay overhead, because with BIP152, it's now the biggest user of bandwidth on a listening node. 03:38 < phantomcircuit> ok well i guess i'll benchmark the conflict thing 03:40 < sipa> phantomcircuit: that would be very useful 03:41 < sipa> i can write a patch that i think will improve its performance significantly 03:44 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has joined #bitcoin-core-dev 04:03 -!- fengling [~fengling@58.135.95.133] has quit [Ping timeout: 240 seconds] 04:16 -!- harrymm [~wayne@104.237.91.12] has quit [Ping timeout: 246 seconds] 04:19 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has quit [Ping timeout: 260 seconds] 04:31 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Quit: :)] 04:32 -!- cryptapus [~cryptapus@unaffiliated/cryptapus] has joined #bitcoin-core-dev 04:35 -!- JackH [~Jack@79-73-186-51.dynamic.dsl.as9105.com] has quit [Ping timeout: 258 seconds] 04:36 -!- harrymm [~wayne@46.165.228.91] has joined #bitcoin-core-dev 04:50 -!- moli [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 04:59 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 05:14 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Ping timeout: 246 seconds] 05:18 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 05:21 -!- JackH [~Jack@31.55.63.252] has joined #bitcoin-core-dev 05:29 -!- Amnez777 [~Amnez777@37.157.216.155] has quit [Ping timeout: 246 seconds] 05:30 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Ping timeout: 244 seconds] 05:34 -!- fengling [~fengling@58.135.95.133] has joined #bitcoin-core-dev 05:39 -!- fengling [~fengling@58.135.95.133] has quit [Ping timeout: 240 seconds] 06:13 < phantomcircuit> sipa, uh first off it seems we're iterating vTx twice in removeForBlock for no reason? 06:27 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 260 seconds] 06:36 -!- fengling [~fengling@58.135.95.133] has joined #bitcoin-core-dev 06:37 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 06:40 -!- fengling [~fengling@58.135.95.133] has quit [Ping timeout: 240 seconds] 06:45 -!- Amnez777 [~Amnez777@37.157.216.155] has joined #bitcoin-core-dev 06:51 -!- cryptapus [~cryptapus@unaffiliated/cryptapus] has quit [Ping timeout: 276 seconds] 07:00 -!- kadoban [~mud@unaffiliated/kadoban] has joined #bitcoin-core-dev 07:00 -!- bsm117532 [~mcelrath@38.121.165.30] has quit [Read error: Connection reset by peer] 07:00 -!- JackH [~Jack@31.55.63.252] has quit [Ping timeout: 244 seconds] 07:05 < GitHub157> [bitcoin] laanwj pushed 4 new commits to 0.12: https://github.com/bitcoin/bitcoin/compare/9adad33938ec...080457c4ee97 07:05 < GitHub76> [bitcoin] laanwj closed pull request #8148: Backport leveldb build integration to 0.12 (0.12...0.12) https://github.com/bitcoin/bitcoin/pull/8148 07:05 < GitHub157> bitcoin/0.12 03c709b Johnathan Corgan: Backport leveldb build integration to 0.12... 07:05 < GitHub157> bitcoin/0.12 932aedd Johnathan Corgan: Cherry-pick of f59dceb (#7925) to 0.12.... 07:05 < GitHub157> bitcoin/0.12 9462e79 Johnathan Corgan: This is a cherry-pick of 89c844d back to 0.12.... 07:06 < GitHub19> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/3b2dadc8d5bb...3685e0c1da29 07:06 < GitHub19> bitcoin/master 2129fce Pavel Janík: The bit field is shown only when status is "started" 07:06 < GitHub19> bitcoin/master 3685e0c Wladimir J. van der Laan: Merge #8261: The bit field is shown only when status is "started"... 07:07 < GitHub152> [bitcoin] laanwj closed pull request #8261: The bit field is shown only when status is "started" (master...20160625_sw_getblockchaininfo_bit) https://github.com/bitcoin/bitcoin/pull/8261 07:11 < kanzure> https://petertodd.org/2016/segwit-consensus-critical-code-review 07:15 -!- MarcoFalke [~marco@host10-2.natpool.mwn.de] has joined #bitcoin-core-dev 07:25 -!- Giszmo [~leo@pc-122-14-46-190.cm.vtr.net] has joined #bitcoin-core-dev 07:37 -!- fengling [~fengling@58.135.95.133] has joined #bitcoin-core-dev 07:37 < GitHub17> [bitcoin] sdaftuar opened pull request #8280: Tests: Increase sync_blocks() timeouts in pruning.py (master...fix-pruning-test) https://github.com/bitcoin/bitcoin/pull/8280 07:39 -!- cryptapus [~cryptapus@unaffiliated/cryptapus] has joined #bitcoin-core-dev 07:42 -!- fengling [~fengling@58.135.95.133] has quit [Ping timeout: 240 seconds] 07:44 < sipa> petertodd: re your review the witness cost check is in contextual because we need to know whether segwit is enabled when seeing a block without context 07:48 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 244 seconds] 08:04 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 08:07 -!- cryptapus [~cryptapus@unaffiliated/cryptapus] has quit [Ping timeout: 276 seconds] 08:23 -!- zooko [~user@c-73-229-199-227.hsd1.co.comcast.net] has joined #bitcoin-core-dev 08:38 -!- fengling [~fengling@58.135.95.133] has joined #bitcoin-core-dev 08:43 -!- fengling [~fengling@58.135.95.133] has quit [Ping timeout: 240 seconds] 08:47 -!- cryptapus [~cryptapus@unaffiliated/cryptapus] has joined #bitcoin-core-dev 09:20 -!- zxzzt [~prod@static-100-38-11-146.nycmny.fios.verizon.net] has quit [Ping timeout: 252 seconds] 09:20 -!- morcos [~morcos@static-100-38-11-146.nycmny.fios.verizon.net] has quit [Ping timeout: 252 seconds] 09:21 -!- zxzzt [~prod@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #bitcoin-core-dev 09:21 -!- sdaftuar [~sdaftuar@unaffiliated/sdaftuar] has quit [Ping timeout: 252 seconds] 09:21 -!- morcos [~morcos@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #bitcoin-core-dev 09:21 -!- sdaftuar [~sdaftuar@unaffiliated/sdaftuar] has joined #bitcoin-core-dev 09:28 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 276 seconds] 09:32 < GitHub142> [bitcoin] laanwj opened pull request #8281: qt: Remove client name from debug window (master...2016_06_qt_remove_client_name) https://github.com/bitcoin/bitcoin/pull/8281 09:39 -!- fengling [~fengling@58.135.95.133] has joined #bitcoin-core-dev 09:44 -!- fengling [~fengling@58.135.95.133] has quit [Ping timeout: 240 seconds] 09:46 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has joined #bitcoin-core-dev 09:54 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has quit [Quit: Leaving.] 09:54 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has joined #bitcoin-core-dev 09:56 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has quit [Client Quit] 09:56 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has joined #bitcoin-core-dev 10:05 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 10:09 -!- Giszmo [~leo@pc-122-14-46-190.cm.vtr.net] has quit [Read error: Connection reset by peer] 10:11 -!- MarcoFalke [~marco@host10-2.natpool.mwn.de] has left #bitcoin-core-dev [] 10:12 -!- face [~face@mail.hmel.org] has joined #bitcoin-core-dev 10:19 < GitHub20> [bitcoin] EthanHeilman opened pull request #8282: net: Feeler connections to increase online addrs in the tried table. (master...feelers3) https://github.com/bitcoin/bitcoin/pull/8282 10:23 < paveljanik> FYI: github's download PR as a diff doesn't work: Pavels-MacBook-Pro:tmp pavel$ curl -L https://github.com/bitcoin/bitcoin/pull/8281.diff 10:23 < paveljanik> curl: (51) SSL: no alternative certificate subject name matches target host name 'patch-diff.githubusercontent.com' 10:23 < paveljanik> Pavels-MacBook-Pro:tmp pavel$ 10:23 < paveljanik> their cert doesn't contain proper SAN. 10:26 < paveljanik> reported to github 10:27 -!- Giszmo [~leo@pc-122-14-46-190.cm.vtr.net] has joined #bitcoin-core-dev 10:33 -!- spudowiar is now known as SPUDOWIAR 10:35 -!- bsm117532 [~mcelrath@38.121.165.30] has joined #bitcoin-core-dev 10:36 -!- SPUDOWIAR is now known as spudowiar 10:39 -!- pmienk [~pmienk@c-71-227-177-179.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 10:40 -!- fengling [~fengling@58.135.95.133] has joined #bitcoin-core-dev 10:45 -!- fengling [~fengling@58.135.95.133] has quit [Ping timeout: 240 seconds] 10:53 < petertodd> sipa: but my point is, currently the way that cost check is written is such that it's applied even if segwit isn't enabled, for non-segwit blocks 10:53 < petertodd> sipa: that said, I think you're right that the content of the footnote is wrong; I'll delete it 10:53 < sipa> petertodd: yes, but only after checking that there is no superfluous witness record, and that check is dependent on context 10:54 < sipa> thank you for the review though! 10:54 < sipa> the malleability to exceed size limits needs to be addressed 10:54 < petertodd> sipa: sure, the existing code I do believe works, I was concerned about problems if we ever add anything else to that cost check 10:56 < sipa> ah, ok 11:00 -!- molz [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 11:01 < petertodd> sipa: sorry if it's not clear, but most of my objections are semi-theoretical, "if we screw up x this will break", belt-and-suspenders stuff :) 11:03 < petertodd> speaking of, I just added this sentence to the summary: "Put another way, in a number of places we either have a belt, or suspenders, when given the importance of this code we’d rather have both a belt and suspenders." 11:04 -!- moli [~molly@unaffiliated/molly] has quit [Ping timeout: 244 seconds] 11:21 -!- pedrobranco [~pedrobran@79.242.108.93.rev.vodafone.pt] has quit [Remote host closed the connection] 11:21 -!- pedrobranco [~pedrobran@79.242.108.93.rev.vodafone.pt] has joined #bitcoin-core-dev 11:24 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 244 seconds] 11:24 -!- [Author] [~Author]@2401:a400:3202:2000:bad:d09:15:90d] has quit [Ping timeout: 240 seconds] 11:24 < bsm117532> Hey petertodd, I'm doing some stuff with your python-bitcoinlib. Have you had a chance to incorporate the new address types and whatnot for segwit? 11:25 < sipa> there are no new address tyoes 11:25 < sipa> tyoes 11:25 < sipa> tyPes 11:26 -!- pedrobranco [~pedrobran@79.242.108.93.rev.vodafone.pt] has quit [Ping timeout: 252 seconds] 11:28 < bsm117532> Oh I see, you embedded it in P2SH. 11:31 * bsm117532 does a little dance, and pushes the "segwit required from now on" button in his code. 11:35 < bsm117532> I have a use case which absolutely needs the txid to be immutable. In order to achieve that, is it necessary that the *inputs* to my transaction be *outputs* of a segwit transaction? 11:35 < sipa> yes 11:36 < bsm117532> Ok then I'll have to test the inputs. Thanks sipa. 11:39 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 11:42 -!- afk11 [~afk11@unaffiliated/afk11] has quit [Ping timeout: 264 seconds] 11:42 -!- fengling [~fengling@58.135.95.133] has joined #bitcoin-core-dev 11:47 -!- fengling [~fengling@58.135.95.133] has quit [Ping timeout: 240 seconds] 11:49 -!- afk11 [~afk11@109.255.154.81] has joined #bitcoin-core-dev 11:49 -!- afk11 [~afk11@109.255.154.81] has quit [Changing host] 11:49 -!- afk11 [~afk11@unaffiliated/afk11] has joined #bitcoin-core-dev 12:19 -!- pedrobranco [~pedrobran@167.225.61.94.rev.vodafone.pt] has joined #bitcoin-core-dev 12:23 -!- pedrobranco [~pedrobran@167.225.61.94.rev.vodafone.pt] has quit [Ping timeout: 260 seconds] 12:28 -!- molly [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 12:31 -!- molz [~molly@unaffiliated/molly] has quit [Ping timeout: 246 seconds] 12:36 -!- linton_s_dawson [~linton_s_@S01062c3033445753.vc.shawcable.net] has joined #bitcoin-core-dev 12:44 -!- fengling [~fengling@58.135.95.133] has joined #bitcoin-core-dev 12:47 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 260 seconds] 12:49 -!- fengling [~fengling@58.135.95.133] has quit [Ping timeout: 240 seconds] 12:52 -!- linton_s_dawson1 [linton_s_d@gateway/vpn/mullvad/x-fdgjexdgxveefljo] has joined #bitcoin-core-dev 12:52 -!- linton_s_dawson1 [linton_s_d@gateway/vpn/mullvad/x-fdgjexdgxveefljo] has left #bitcoin-core-dev [] 12:54 -!- linton_s_dawson [~linton_s_@S01062c3033445753.vc.shawcable.net] has quit [Ping timeout: 250 seconds] 13:01 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has quit [Quit: Leaving.] 13:07 -!- cryptapus [~cryptapus@unaffiliated/cryptapus] has quit [Ping timeout: 252 seconds] 13:08 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 13:19 < bsm117532> So the trick is that the scriptSig is only data pushes. Since the top of the stack is non-zero (unless you know a preimage that hashes to zero), pre-segwit considers it anyone can spend, and any following input with an empty scriptPubKey can spend it. No? 13:20 < sipa> in segwit scriptSig will e empty 13:20 < sipa> the scriptPubKey is just pushes 13:21 < sdaftuar> well, p2sh-wrapped-segwit won't have empty scriptsig 13:22 < sipa> right, it would just have a redeemScript 13:27 -!- molly [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 13:28 -!- moli [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 13:37 < petertodd> bsm117532: apparently someone else has been working on adding segwit to python-bitcoinlib; I haven't looked at their code yet, which afaik isn't public yet :( 13:42 -!- JackH [~Jack@79-73-186-51.dynamic.dsl.as9105.com] has joined #bitcoin-core-dev 13:45 -!- fengling [~fengling@58.135.95.133] has joined #bitcoin-core-dev 13:50 -!- fengling [~fengling@58.135.95.133] has quit [Ping timeout: 240 seconds] 13:51 -!- cryptapus_afk is now known as cryptapus 13:57 < GitHub58> [bitcoin] Mirobit opened pull request #8283: Move AdvertiseLocal debug output to net category (master...master) https://github.com/bitcoin/bitcoin/pull/8283 13:57 < bsm117532> I'm looking at P2SH-wrapped-segwit. And yes I mixed up scriptSig and scriptPubkey...I wish we could rename those... :-/ 13:57 < bsm117532> petertodd: If you have any further references, I'd be happy to try it out. 13:58 -!- bustd_soket [~weechat@unaffiliated/loteriety] has quit [Ping timeout: 264 seconds] 13:59 < bsm117532> or collaborate on a PR for python-bitcoinlib... 14:08 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 14:12 -!- bustd_soket [weechat@gateway/vpn/mullvad/x-zapvxkjvgzvslgwk] has joined #bitcoin-core-dev 14:22 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 264 seconds] 14:31 < gmaxwell> gmail is marking all erik's mail as spam, I was wondering why I was only seeing one half of the conversation. 14:32 < gmaxwell> "Be careful with this message. It contains content that's typically used to steal personal information." 14:32 < btcdrak> what's the header? 14:37 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 14:37 < btcdrak> gmaxwell if you mean Eric Voskuil, strangely my gmail isnt marking his messages as spam. 14:38 < gmaxwell> yes, I do. 14:39 -!- bsm117532 [~mcelrath@38.121.165.30] has quit [Remote host closed the connection] 14:40 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has joined #bitcoin-core-dev 14:41 -!- bsm117532 [~mcelrath@38.121.165.30] has joined #bitcoin-core-dev 14:42 -!- owowo [~ovovo@unaffiliated/ovovo] has quit [Ping timeout: 240 seconds] 14:47 -!- fengling [~fengling@58.135.95.133] has joined #bitcoin-core-dev 14:48 -!- owowo [~ovovo@unaffiliated/ovovo] has joined #bitcoin-core-dev 14:51 -!- moli [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 14:51 -!- fengling [~fengling@58.135.95.133] has quit [Ping timeout: 240 seconds] 15:13 -!- moli [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 15:23 -!- grubles [~grubles@unaffiliated/grubles] has quit [Ping timeout: 244 seconds] 15:48 -!- fengling [~fengling@58.135.95.133] has joined #bitcoin-core-dev 15:48 -!- cryptapus is now known as cryptapus_afk 15:53 -!- fengling [~fengling@58.135.95.133] has quit [Ping timeout: 240 seconds] 16:04 -!- hsmiths [~hsmiths@cpe-76-174-26-91.socal.res.rr.com] has quit [Read error: Connection reset by peer] 16:05 -!- hsmiths [~hsmiths@cpe-76-174-26-91.socal.res.rr.com] has joined #bitcoin-core-dev 16:06 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Read error: Connection reset by peer] 16:15 -!- grubles [~grubles@unaffiliated/grubles] has joined #bitcoin-core-dev 16:22 -!- xiangfu [~xiangfu@125.39.16.31] has joined #bitcoin-core-dev 16:23 -!- grubles [~grubles@unaffiliated/grubles] has quit [Ping timeout: 244 seconds] 16:27 -!- grubles [~grubles@unaffiliated/grubles] has joined #bitcoin-core-dev 16:50 -!- fengling [~fengling@58.135.95.133] has joined #bitcoin-core-dev 16:54 -!- fengling [~fengling@58.135.95.133] has quit [Ping timeout: 240 seconds] 17:05 -!- xiangfu [~xiangfu@125.39.16.31] has quit [Quit: leaving] 17:07 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 240 seconds] 17:15 -!- fengling [~fengling@58.135.95.133] has joined #bitcoin-core-dev 17:19 -!- davec_ [~davec@cpe-24-243-251-52.hot.res.rr.com] has quit [Read error: Connection reset by peer] 17:19 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 17:25 -!- davec_ [~davec@cpe-24-243-251-52.hot.res.rr.com] has joined #bitcoin-core-dev 17:27 -!- zooko [~user@c-73-229-199-227.hsd1.co.comcast.net] has quit [Ping timeout: 244 seconds] 17:27 -!- harrymm [~wayne@46.165.228.91] has quit [Quit: Leaving.] 17:31 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has quit [Quit: Leaving.] 17:52 < petertodd> bsm117532: pull-reqs accepted :) I'm gonna bother the guys who said they were doing a segwit pull later 17:57 -!- zooko [~user@2601:281:8000:8387:8539:261:6392:9406] has joined #bitcoin-core-dev 18:07 -!- pmienk [~pmienk@c-71-227-177-179.hsd1.wa.comcast.net] has quit [Ping timeout: 276 seconds] 18:07 -!- pmienk [~pmienk@c-71-227-177-179.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 18:11 -!- bsm117532 [~mcelrath@38.121.165.30] has quit [Killed (verne.freenode.net (Nickname regained by services))] 18:12 -!- bsm1175321 [~mcelrath@38.121.165.30] has joined #bitcoin-core-dev 18:26 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 240 seconds] 18:32 -!- foo1 [~foo@217.34.196.104.bc.googleusercontent.com] has joined #bitcoin-core-dev 18:36 -!- [Author] [~Author]@2401:a400:3202:2000:bad:d09:15:90d] has joined #bitcoin-core-dev 18:37 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 18:39 -!- pedrobranco [~pedrobran@167.225.61.94.rev.vodafone.pt] has joined #bitcoin-core-dev 18:43 -!- pedrobranco [~pedrobran@167.225.61.94.rev.vodafone.pt] has quit [Ping timeout: 260 seconds] 18:45 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-qouklefpwwyguzav] has quit [Quit: Connection closed for inactivity] 18:56 -!- bsm1175321 [~mcelrath@38.121.165.30] has quit [Remote host closed the connection] 19:06 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 244 seconds] 19:22 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 19:41 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 264 seconds] 20:28 < GitHub61> [bitcoin] jmcorgan opened pull request #8284: Backport remaining commits for out-of-tree builds from master to 0.12 branch (0.12...build-oot-0.12) https://github.com/bitcoin/bitcoin/pull/8284 20:29 -!- hsmiths [~hsmiths@cpe-76-174-26-91.socal.res.rr.com] has quit [Quit: END OF LINE] 20:32 -!- hsmiths [~hsmiths@cpe-76-174-26-91.socal.res.rr.com] has joined #bitcoin-core-dev 20:40 -!- netsin [~jiggalato@198.16.176.10] has joined #bitcoin-core-dev 20:41 -!- netsin [~jiggalato@198.16.176.10] has quit [Client Quit] 20:54 -!- pmienk [~pmienk@c-71-227-177-179.hsd1.wa.comcast.net] has quit [Ping timeout: 246 seconds] 20:58 -!- PaulCapestany [~PaulCapes@204.28.124.82] has quit [Quit: .] 21:00 -!- PaulCapestany [~PaulCapes@204.28.124.82] has joined #bitcoin-core-dev 21:06 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 21:07 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-core-dev 21:09 -!- pmienk [~pmienk@c-71-227-177-179.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 21:12 -!- whphhg [whphhg@gateway/vpn/mullvad/x-crratuutxgattqxw] has quit [Ping timeout: 260 seconds] 21:18 -!- netsin [~jiggalato@198.16.176.10] has joined #bitcoin-core-dev 21:22 -!- netsin [~jiggalato@198.16.176.10] has quit [Remote host closed the connection] 21:24 -!- netsin [~jiggalato@198.16.176.10] has joined #bitcoin-core-dev 22:11 -!- whphhg [whphhg@gateway/vpn/mullvad/x-gywnglrhegixusxx] has joined #bitcoin-core-dev 22:15 -!- pedrobranco [~pedrobran@167.225.61.94.rev.vodafone.pt] has joined #bitcoin-core-dev 22:17 -!- baldur [~baldur@pool-108-29-176-11.nycmny.fios.verizon.net] has quit [Ping timeout: 246 seconds] 22:20 -!- pedrobranco [~pedrobran@167.225.61.94.rev.vodafone.pt] has quit [Ping timeout: 244 seconds] 22:32 -!- kadoban [~mud@unaffiliated/kadoban] has quit [Ping timeout: 252 seconds] 22:37 -!- baldur [~baldur@pool-72-69-25-42.nycmny.fios.verizon.net] has joined #bitcoin-core-dev 22:42 -!- mkarrer [~mkarrer@48.red-83-47-111.dynamicip.rima-tde.net] has quit [] 22:46 -!- mkarrer [~mkarrer@48.red-83-47-111.dynamicip.rima-tde.net] has joined #bitcoin-core-dev 22:51 -!- moli [~molly@unaffiliated/molly] has quit [Read error: Connection reset by peer] 22:51 -!- moli [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 23:28 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has quit [Quit: Leaving] 23:43 -!- zooko [~user@2601:281:8000:8387:8539:261:6392:9406] has quit [Ping timeout: 250 seconds] 23:59 -!- netsin [~jiggalato@198.16.176.10] has quit []