--- Day changed Fri Feb 19 2016 00:02 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 00:04 < wumpus> michagogo midnightmagic I don't think there's any way around it: for truly deterministic builds, a cache system cannot be used, everything has to be built every time. Kind of sad but ok 00:04 < wumpus> every time you cache an old build product it may have been built under different circumstances, with other packages, slightly perturbing the output ijn a non-reproducible way (at least with the info given in the assert) 00:05 < wumpus> I also wiped my caches, again, for the 0.12 final build. That probably should be common practice for -final. 00:05 < wumpus> this at least makes sure that the releases can be reproduced, given that you find the historical ubuntu packages... 00:06 -!- shea256 [~shea256@65.209.72.194] has quit [Ping timeout: 240 seconds] 00:09 < wumpus> the only solution would be to use a deterministic toolchain (and that isn't just the compiler - some other tools affect the results too, like tar) as well. A huge project I think. 00:16 < wumpus> in any case, despite the toolchain confusion, the gitian system still meets the requirement that N people build and get the same output, if they build reasonably close in time to each other. Everyone can check the binaries close to the release 00:17 < wumpus> It would be nice to be able to check old versions, say, 0.10.0, with full conviction, but I don't see a strong motivation for that 00:22 < midnightmagic> the solution to a related problem to this (non-byte-deterministic, customer support type purposes) way for commercial enterprises has been to version the entire build environment including OS and hardware descriptors, or in the case of most of the ones I had to work with, the entire VM guest. Even then, they would get screwed up with incompatible VM hosts that weren't able to simulate the o 00:23 < midnightmagic> ld environments properly. So, fwiw what you guys are doing is in many respects well ahead of what commercial environments do. they viewed the problem as only something to be mitigated -- not solved permanently. 00:24 < midnightmagic> and it was always very, very storage-heavy.. 00:29 < wumpus> yes, we could actually say 'we freeze and checkpoint ubuntu trusty here, at this point, and don't take upgrades anymore' 00:30 < wumpus> 'all 0.12 releases will be built with *exactly* this state'. On the other hand, it has to be reproducible by just downloading stuff from ubuntu itself, if we were to provide that image... that creates a way to undermine the whole system 01:01 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 01:04 < midnightmagic> i guess there's an archival something-or-other of packages one could access from.. debian I want to say. but. ehh. long as people trying to co-build can arrive at identical results.. and besides, for historical versions mine mostly match. 01:04 < midnightmagic> like when I build them way after everyone's already moved on. 01:05 -!- shea256 [~shea256@65.209.72.194] has quit [Ping timeout: 240 seconds] 01:14 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 01:16 < wumpus> good to hear it usually works 01:26 -!- randy-waterhouse [~kiwigb@opentransactions/dev/randy-waterhouse] has quit [Quit: Leaving.] 01:33 -!- arowser [~quassel@106.120.101.38] has quit [Quit: No Ping reply in 180 seconds.] 01:33 -!- arowser [~quassel@106.120.101.38] has joined #bitcoin-core-dev 01:36 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 01:37 < GitHub62> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/0e3ccbfb26b1...b6e00af8193f 01:37 < GitHub62> bitcoin/master 7eef1d0 Matthew Zipkin: Clarify description of blockindex... 01:37 < GitHub62> bitcoin/master b6e00af Wladimir J. van der Laan: Merge #7541: Clarify description of blockindex... 01:37 -!- adnn_ [adnn@gateway/vpn/mullvad/x-rconangvlsykbqch] has quit [Remote host closed the connection] 01:37 < GitHub176> [bitcoin] laanwj closed pull request #7541: Clarify description of blockindex (master...master) https://github.com/bitcoin/bitcoin/pull/7541 01:47 -!- xiangfu [~xiangfu@111.198.29.53] has quit [Ping timeout: 255 seconds] 01:47 -!- xiangfu [~xiangfu@111.198.29.53] has joined #bitcoin-core-dev 01:53 -!- wallet42 [~wallet42@unaffiliated/wallet42] has quit [Quit: Leaving.] 01:57 -!- _dR [6dff5aff@gateway/web/freenode/ip.109.255.90.255] has quit [Ping timeout: 252 seconds] 02:01 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 02:04 < michagogo> 10:29:36 yes, we could actually say 'we freeze and checkpoint ubuntu trusty here, at this point, and don't take upgrades anymore' | 10:30:50 'all 0.12 releases will be built with *exactly* this state'. On the other hand, it has to be reproducible by just downloading stuff from ubuntu itself, if we were to provide that image... that creates 02:04 < michagogo> a way to undermine the whole system 02:05 < michagogo> Um, until something that we use gets a critical bug... 02:05 -!- shea256 [~shea256@65.209.72.194] has quit [Ping timeout: 240 seconds] 02:05 < michagogo> Did this recent libc thing affect us? 02:06 < michagogo> If so, what if the news had come out the day after the tag, while people were building? 02:06 < wumpus> michagogo: yes, that's why it may not be realistic, there could be gcc bugs, or exploitable bugs on the VM, etc, necessitating an upgrade. And that all would have to be carefully checked, audited and babysitted... 02:07 < wumpus> michagogo: not much - libc is linked dynamically, so in every case a distro upgrade of libc will also fix bitcoin core 02:09 < wumpus> I'm very happy we didn't choose to release fully statically linked executables, which would have included the buggy code inside our executables 02:11 < michagogo> Is there anything (in the builds for any of the 3 platforms) that's statically linked from any of Ubuntu's packages? 02:11 < wumpus> yes. For linux at least libc++, for windows all of the mingw platform. 02:12 < michagogo> Hm, we have 5 builders 02:12 < michagogo> 5 sets of sigs* so far 02:12 < michagogo> And the two of us are the only ones for OS X… 02:13 < wumpus> uhm for linux libstdcxx, not libc++,that's the clang one 02:13 < michagogo> I guess we need cfields around anyway at some point to do the codesigning, so we have enough sigs to go ahead with that as soon as he gets around to building 02:13 < wumpus> yes, building OSX is less popular due to the officially-non-distributable input 02:13 < michagogo> Yeah, I know 02:14 < JackH> when do we have binaries out for 0.12? 02:15 < michagogo> wumpus: so yeah, all it takes is for some critical (or even not-so-critical but sufficiently annoying/impactful to the program) bug in any of those and we're screwed 02:16 < michagogo> JackH: pretty much whenever cfields gets around to building his 02:16 < michagogo> As soon as he's done that we'll have 3 sets of sigs on all platforms and can go ahead with codesigning and releasing 02:16 < JackH> so this is it right? 0.12 is officially ready now and there are no more changes? 02:17 < michagogo> JackH: but the code's final, so you can build it yourself if you want 02:17 < JackH> gotcha, very nice 02:17 < michagogo> And I can give you binaries now if you want 02:17 < JackH> sure 02:17 < michagogo> And yeah, unless some supercritical bug pops up (in which case 0.12.0 will be DOA and we'll probably do a 0.12.0.1), this is it 02:18 < michagogo> JackH: not at the computer now, but I'll upload mine soon 02:18 < JackH> nice, thanks michagogo 02:18 < michagogo> JackH: also, it'd be great if you set up gitian 02:19 < michagogo> Would let you easily build your own binaries, and then you could also help contribute to official releases 02:20 < JackH> so you have my own build compared to yours? 02:20 < p15> I tried to build but qt wouldn't install from homebrew :( 02:21 < michagogo> JackH: right 02:21 < JackH> I can try that michagogo 02:21 < michagogo> p15: have you tried the depends system? 02:21 < p15> no 02:21 < michagogo> It builds all the dependencies using our own system 02:22 < michagogo> I *think* you just need to cd depends && make 02:22 < michagogo> And then there's a ./configure argument that uses that 02:24 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Quit: :)] 02:24 < michagogo> p15: see https://github.com/bitcoin/bitcoin/blob/v0.12.0/depends/README.md 02:26 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-zptvqpyyahkycolx] has joined #bitcoin-core-dev 02:28 -!- anttea [~anttea@a88-112-146-73.elisa-laajakaista.fi] has joined #bitcoin-core-dev 02:43 < wumpus> michagogo: in all cases though, everything that is linked statically from the distro is a part of the toolchain (libgcc, libstdc++, mingw-wrappers-around-windows-libs). There are no ancillary Ubuntu packages statically linked. OSX build takes everything from custom inputs, so is expected to be the least sensitive to changes in the distro. 02:43 < wumpus> (in OSX's case even the compiler is taken from somewhere else) 02:44 < michagogo> Okay, that's good at least. 02:44 < michagogo> I guess that software should (I hope…) be well-maintained 02:44 < wumpus> the depends system is supposed to cover any non-toolchain, non-base-OS library 02:45 < wumpus> right, at some point there's nothing you can do but hope, unfortunatey 02:45 < wumpus> if there's anything to make potential attacks more difficult or more expensive, which doesn't take a lot of manpower to build/maintain, I'd of course like to know 02:47 < wumpus> is ubuntu itself going to switch to deterministic builds now that debian will? 02:48 < wumpus> if not, it would make sense to change the gitian VM to debian at some point, so that the distro can also be re-built deterministically 02:50 < wumpus> https://wiki.debian.org/ReproducibleBuilds 02:50 < wumpus> not quite there yet. 02:54 < wumpus> (although - in principle - it wouldn't need building the entire distro deterministically; just the 'trusted base set' of packages that we need) 02:55 < michagogo> wumpus: ask in #ubuntu 02:55 < michagogo> Or maybe -devel 02:55 < wumpus> I think it's still too theoretical now I've seen that debian isn't as far along as I thought 02:55 < cfields> wumpus: grr, just got to HK. I won't be able to sign until Monday :\ 02:56 < michagogo> cfields: are you the only one that can ATM? 02:56 < wumpus> cfields: well, makes sense to not carry the signing keys along on a visit to China ;) 02:57 < cfields> wumpus: yea, i make sure to wipe them when I travel 02:57 < jonasschnelli> Hmm.. not sure which keys are more imortant. Windows/OSX bin signing keys or the gitian signing key. 02:58 < jonasschnelli> IMO the second one has more value 02:59 < cfields> michagogo: yes, but imo that should change, for hit-by-bus reasons if nothing else 02:59 < michagogo> jonasschnelli: I disagree 03:00 < michagogo> The codesigning cert is all that you need to get an unsuspecting user's OS to trust a binary 03:00 < michagogo> It's also a single point of trust 03:01 < michagogo> If cfields wants, he can make a malicious bin and get many people to run it 03:01 < wumpus> I don't think it makes much to argue which one is more important, every link can be the weakest link. At least in the gitian case there are multiple signers, so one being compromised would be detected. 03:01 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 03:01 -!- p15 [~p15@15.91.145.64.client.static.strong-tk2.bringover.net] has quit [Ping timeout: 240 seconds] 03:01 < michagogo> The gitian key is- right. 03:01 < cfields> michagogo: i only create a detached sig, never upload the bins 03:01 < cfields> michagogo: it's easy enough to verify that the sig is only a sig 03:02 < wumpus> cfields signs, I upload the bins to bitcoin.org, good to not have one person do both 03:02 < michagogo> It's just one part of a process involving many people (3 at minimum) all matching 03:02 < michagogo> cfields: I know that 03:03 < cfields> wumpus: sorry about that. Since we didn't end up with it worked out until last sunday, I figured the tag would be coming Sunday/Monday 03:03 < michagogo> I'm saying though, you have the codesigning certs and therefore have the theoretical ability to sign anything you want and OSes will trust that 03:03 < wumpus> yes, but everyone can get a codesigning cert 03:04 < wumpus> if we relied on the OS' verification ability only, that'd indeed be a huge issue, but there are steps all the way from the source code to uploaded, signed binaries 03:05 -!- shea256 [~shea256@65.209.72.194] has quit [Ping timeout: 240 seconds] 03:08 < wumpus> would be nice if the OS-specific signing could also be distributed. For example with threshold signatures, but that would require either special OS support or reverse engineering combined with clever crypto. Or something like gitian-downloader built in the OS. One can dream :-) 03:09 -!- fanquake [~Adium@unaffiliated/fanquake] has joined #bitcoin-core-dev 03:10 < fanquake> wumpus just pushed my sigs up, so you've got a third osx sig now. 03:11 < michagogo> fanquake: 4th*, jonasschnelli also just PR'd 03:11 < wumpus> fanquake: good, thanks! (though we'll have to wait for monday for the upload, we planned this in the middle of cfields's HK weekend) 03:11 < michagogo> But unfortunately the release will have to wait until Monday, when cfields returns from Hong Kong 03:12 < fanquake> wumpus no worries. 03:12 < michagogo> (And yeah, that kinda illustrates the bus factor here... only temporarily, thankfully) 03:13 < michagogo> wumpus: is it just not having the key that prevents you from signing? Or is it a platform issue (e.g. needing a Mac)? 03:15 < wumpus> not sure it's fair to talk of a bus factor here. In principle someone else could sign, he doesn't have the one golden key that blocks bitcoin releases forever 03:16 < wumpus> it would just take some time for anyone else to get signing keys and get the process to work, in this case it makes sense to just wait for monday, but it's no absolute blocker 03:16 < wumpus> michagogo: just distribution of responsibilities 03:16 < michagogo> wumpus: okay, fair enough. 03:17 < michagogo> Maybe a minibus factor 03:17 < wumpus> hehe 03:17 < michagogo> Nothing critical, but definitely a major inconvenience 03:18 < fanquake> Given we wait ~6 months for a release, I'm sure everyone can handle 2 more days 03:19 < fanquake> Looking forward to the new merge phase now that 0.12.0 is done. 03:41 < wumpus> what kind of merge phase? master has been open for 0.13.0 changes for a while 03:42 < wumpus> and there's already some things that should be backported to 0.12.1 03:43 -!- e4xit [~e4xit@cpc92302-cmbg19-2-0-cust1369.5-4.cable.virginm.net] has quit [Ping timeout: 248 seconds] 03:48 -!- e4xit [~e4xit@cpc92302-cmbg19-2-0-cust1369.5-4.cable.virginm.net] has joined #bitcoin-core-dev 03:50 -!- p15x [~p15x@49.91.145.64.client.static.strong-tk2.bringover.net] has joined #bitcoin-core-dev 03:56 < wumpus> cfields: btw: I think you introduced the SCRIPT_ERR codes, does checking them in a test, as in https://github.com/bitcoin/bitcoin/pull/7517, make sense? 03:56 -!- e4xit [~e4xit@cpc92302-cmbg19-2-0-cust1369.5-4.cable.virginm.net] has quit [Ping timeout: 244 seconds] 04:00 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 04:01 -!- gevs [~greg@unaffiliated/gevs] has joined #bitcoin-core-dev 04:01 -!- e4xit [~e4xit@cpc92302-cmbg19-2-0-cust1369.5-4.cable.virginm.net] has joined #bitcoin-core-dev 04:05 -!- shea256 [~shea256@65.209.72.194] has quit [Ping timeout: 240 seconds] 04:07 -!- fanquake [~Adium@unaffiliated/fanquake] has quit [Quit: Leaving.] 05:00 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 05:04 -!- shea256 [~shea256@65.209.72.194] has quit [Ping timeout: 244 seconds] 05:07 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has quit [Ping timeout: 268 seconds] 05:18 -!- fanquake [~Adium@unaffiliated/fanquake] has joined #bitcoin-core-dev 05:18 -!- xiangfu [~xiangfu@111.198.29.53] has quit [Ping timeout: 240 seconds] 05:21 -!- dermoth [~thomas@dsl-66-36-134-19.mtl.aei.ca] has quit [Ping timeout: 276 seconds] 05:29 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 05:34 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 05:34 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 244 seconds] 05:37 -!- dermoth [~thomas@dsl-66-36-134-19.mtl.aei.ca] has joined #bitcoin-core-dev 05:39 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 248 seconds] 05:39 -!- JackH [~Jack@host-2-103-125-6.as13285.net] has quit [Remote host closed the connection] 05:40 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 05:44 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 05:45 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 248 seconds] 05:47 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 05:49 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 255 seconds] 05:51 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 05:51 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 05:52 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 240 seconds] 05:54 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 05:54 < GitHub98> [bitcoin] fanquake opened pull request #7559: [build-aux] Correct AC_PACKAGE_NAME brackets in bitcoin m4 scripts (master...correct-m4-brackets) https://github.com/bitcoin/bitcoin/pull/7559 05:55 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 05:56 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 248 seconds] 05:58 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 06:02 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 06:02 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 240 seconds] 06:03 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 06:03 -!- shea256 [~shea256@65.209.72.194] has quit [Ping timeout: 240 seconds] 06:03 -!- triplesl- [~triplesla@173-165-23-221-Illinois.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 06:05 -!- triplesl| [~triplesla@173-165-23-221-Illinois.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 06:05 -!- fanquake [~Adium@unaffiliated/fanquake] has quit [Quit: Leaving.] 06:06 < GitHub134> [bitcoin] jonasschnelli opened pull request #7560: [OSX] fix brew openssl detection (master...2016/02/osx_openssl) https://github.com/bitcoin/bitcoin/pull/7560 06:06 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 244 seconds] 06:07 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 250 seconds] 06:07 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 06:08 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 06:08 -!- triplesl- [~triplesla@173-165-23-221-Illinois.hfc.comcastbusiness.net] has quit [Ping timeout: 240 seconds] 06:10 -!- triplesl| [~triplesla@173-165-23-221-Illinois.hfc.comcastbusiness.net] has quit [Ping timeout: 240 seconds] 06:11 -!- triplesl- [~triplesla@173-165-23-221-Illinois.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 06:12 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 244 seconds] 06:12 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 240 seconds] 06:13 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 06:16 -!- triplesl- [~triplesla@173-165-23-221-Illinois.hfc.comcastbusiness.net] has quit [Ping timeout: 240 seconds] 06:18 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 250 seconds] 06:18 < GitHub85> [bitcoin] fanquake closed pull request #7559: [build-aux] Correct AC_PACKAGE_NAME brackets in bitcoin m4 scripts (master...correct-m4-brackets) https://github.com/bitcoin/bitcoin/pull/7559 06:18 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 06:22 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 06:23 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 240 seconds] 06:25 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 06:26 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 240 seconds] 06:29 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 06:30 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 240 seconds] 06:32 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 06:34 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 240 seconds] 06:36 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 06:38 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 276 seconds] 06:39 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 06:41 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 240 seconds] 06:42 -!- laurentmt [~Thunderbi@128-79-141-196.hfc.dyn.abo.bbox.fr] has joined #bitcoin-core-dev 06:46 < GitHub113> [bitcoin] fanquake reopened pull request #7559: [build-aux] Correct AC_PACKAGE_NAME brackets in bitcoin m4 scripts (master...correct-m4-brackets) https://github.com/bitcoin/bitcoin/pull/7559 06:46 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 06:51 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 06:51 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 255 seconds] 06:54 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 06:54 -!- triplesl- [~triplesla@173-165-23-221-Illinois.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 06:54 -!- treehug88 [~textual@static-108-30-103-59.nycmny.fios.verizon.net] has joined #bitcoin-core-dev 06:55 -!- triplesl| [~triplesla@173-165-23-221-Illinois.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 06:56 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 250 seconds] 06:56 -!- Chris_Stewart_5 [~Chris_Ste@lw.serv194.quikefall.com] has joined #bitcoin-core-dev 06:56 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 06:57 < Chris_Stewart_5> Documentation oriented pull requests for the bitcoin core code base is more than welcome right? 06:58 < Chris_Stewart_5> I.e. adding c++ docs for function calls 06:58 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 244 seconds] 06:58 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 06:59 -!- triplesl- [~triplesla@173-165-23-221-Illinois.hfc.comcastbusiness.net] has quit [Ping timeout: 240 seconds] 07:00 -!- triplesl| [~triplesla@173-165-23-221-Illinois.hfc.comcastbusiness.net] has quit [Ping timeout: 244 seconds] 07:00 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 248 seconds] 07:01 -!- shea256 [~shea256@65.209.72.194] has quit [Remote host closed the connection] 07:03 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 240 seconds] 07:04 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 07:05 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 07:09 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 255 seconds] 07:10 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 240 seconds] 07:11 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 07:12 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 07:16 < GitHub87> [bitcoin] btcdrak opened pull request #7561: IsSuperMajority() softfork for BIPs 68,112 and 113 (master...softfork) https://github.com/bitcoin/bitcoin/pull/7561 07:16 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 248 seconds] 07:29 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 07:33 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 07:33 -!- triplesl- [~triplesla@173-165-23-221-Illinois.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 07:34 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 240 seconds] 07:37 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 07:37 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 248 seconds] 07:39 -!- triplesl- [~triplesla@173-165-23-221-Illinois.hfc.comcastbusiness.net] has quit [Ping timeout: 276 seconds] 07:41 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 248 seconds] 07:44 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 07:46 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 07:48 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 255 seconds] 07:51 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 255 seconds] 07:58 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 08:06 -!- frankenmint [~frankenmi@174-25-38-39.ptld.qwest.net] has joined #bitcoin-core-dev 08:08 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 08:08 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 255 seconds] 08:14 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 08:15 -!- triplesl- [~triplesla@173-165-23-221-Illinois.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 08:16 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 276 seconds] 08:16 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 08:19 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 244 seconds] 08:20 -!- triplesl- [~triplesla@173-165-23-221-Illinois.hfc.comcastbusiness.net] has quit [Ping timeout: 250 seconds] 08:20 -!- shea256 [~shea256@65.209.72.194] has quit [Remote host closed the connection] 08:21 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 08:21 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 240 seconds] 08:22 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 08:25 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 08:26 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 240 seconds] 08:28 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 240 seconds] 08:28 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 08:33 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 08:33 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 255 seconds] 08:34 -!- skyraider_ [uid41097@gateway/web/irccloud.com/x-qjwojpjrmkommowe] has joined #bitcoin-core-dev 08:36 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 08:37 -!- triplesl| [~triplesla@173-165-23-221-Illinois.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 08:38 -!- [\\\] [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 244 seconds] 08:38 -!- triplesl| [~triplesla@173-165-23-221-Illinois.hfc.comcastbusiness.net] has quit [Read error: Connection reset by peer] 08:40 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Ping timeout: 244 seconds] 09:06 -!- Thireus [~Thireus@vps-92.197.170.217.stwvps.net] has quit [Quit: Leaving.] 09:27 -!- jamesob [~job_@50-201-192-26-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 09:32 < GitHub189> [bitcoin] btcdrak opened pull request #7562: Bump transaction version default to 2 (master...txversionbump) https://github.com/bitcoin/bitcoin/pull/7562 09:43 -!- PaulCapestany [~PaulCapes@204.28.124.82] has quit [Quit: .] 09:44 -!- wallet42 [~wallet42@unaffiliated/wallet42] has joined #bitcoin-core-dev 09:44 -!- PaulCapestany [~PaulCapes@204.28.124.82] has joined #bitcoin-core-dev 10:10 -!- shea256 [~shea256@65.209.72.194] has quit [Remote host closed the connection] 10:14 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 10:16 -!- gevs [~greg@unaffiliated/gevs] has quit [Remote host closed the connection] 10:23 -!- shea256 [~shea256@65.209.72.194] has quit [Remote host closed the connection] 10:25 -!- Netsplit *.net <-> *.split quits: xabbix, da2ce7_mobile, justanotheruser, d9b4bef9, mm_1, mkarrer, windsok, arichnad, AaronvanW, roasbeef, (+2 more, use /NETSPLIT to show all of them) 10:25 -!- Netsplit over, joins: arichnad 10:25 -!- Amnez777 [~Amnez777@37.157.216.147] has joined #bitcoin-core-dev 10:25 -!- Netsplit over, joins: roasbeef 10:25 -!- Netsplit over, joins: mm_1 10:25 -!- xabbix [~xabbix@bzq-79-180-39-230.red.bezeqint.net] has joined #bitcoin-core-dev 10:25 -!- xabbix [~xabbix@bzq-79-180-39-230.red.bezeqint.net] has quit [Changing host] 10:25 -!- xabbix [~xabbix@unaffiliated/xabbix] has joined #bitcoin-core-dev 10:26 -!- Netsplit over, joins: justanotheruser 10:26 -!- Netsplit over, joins: d9b4bef9 10:26 -!- Netsplit over, joins: mkarrer 10:26 -!- Netsplit over, joins: windsok 10:26 -!- Taek [~quassel@2001:41d0:1:472e::] has joined #bitcoin-core-dev 10:26 -!- Netsplit over, joins: da2ce7_mobile --- Log closed Fri Feb 19 10:27:21 2016 --- Log opened Fri Feb 19 10:27:39 2016 10:27 -!- kanzure [~kanzure@bryan.fairlystable.org] has joined #bitcoin-core-dev 10:27 -!- Irssi: #bitcoin-core-dev: Total of 122 nicks [0 ops, 0 halfops, 0 voices, 122 normal] 10:27 -!- bad_duck [~arthur@2001:bc8:c087:1001::1] has joined #bitcoin-core-dev 10:27 -!- Madars [~null@unaffiliated/madars] has joined #bitcoin-core-dev 10:28 -!- lclc [~lclc@unaffiliated/lclc] has joined #bitcoin-core-dev 10:28 -!- goregrind [~goregrind@unaffiliated/goregrind] has joined #bitcoin-core-dev 10:28 -!- AtashiCon [arnavion@unaffiliated/arnavion] has joined #bitcoin-core-dev 10:28 -!- sdaftuar [~sdaftuar@static-100-38-11-146.nycmny.fios.verizon.net] has joined #bitcoin-core-dev 10:28 -!- sdaftuar [~sdaftuar@static-100-38-11-146.nycmny.fios.verizon.net] has quit [Changing host] 10:28 -!- sdaftuar [~sdaftuar@unaffiliated/sdaftuar] has joined #bitcoin-core-dev 10:29 -!- Amnez777 [~Amnez777@37.157.216.147] has quit [Changing host] 10:29 -!- Amnez777 [~Amnez777@unaffiliated/amnez777] has joined #bitcoin-core-dev 10:29 -!- isis [~isis@abulafia.patternsinthevoid.net] has joined #bitcoin-core-dev 10:32 -!- haakonn [~haakonn@pdpc/supporter/active/haakonn] has joined #bitcoin-core-dev 10:35 -!- Irssi: Join to #bitcoin-core-dev was synced in 486 secs 10:38 -!- Thireus [~Thireus@vps-92.197.170.217.stwvps.net] has joined #bitcoin-core-dev 10:43 -!- AaronvanW [~ewout@h197077.upc-h.chello.nl] has joined #bitcoin-core-dev 10:43 -!- AaronvanW [~ewout@h197077.upc-h.chello.nl] has quit [Changing host] 10:43 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 11:03 -!- wumpus [~quassel@pdpc/supporter/professional/wumpus] has quit [Ping timeout: 276 seconds] 11:09 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 11:10 -!- Thireus [~Thireus@vps-92.197.170.217.stwvps.net] has quit [Ping timeout: 240 seconds] 11:14 -!- shea256 [~shea256@65.209.72.194] has quit [Ping timeout: 255 seconds] 11:14 -!- wumpus [~quassel@pdpc/supporter/professional/wumpus] has joined #bitcoin-core-dev 11:14 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 11:18 -!- adnn [~adnn@cpe-158-222-198-108.nyc.res.rr.com] has joined #bitcoin-core-dev 11:19 -!- shea256 [~shea256@65.209.72.194] has quit [Ping timeout: 252 seconds] 11:20 -!- adnn_ [adnn@gateway/vpn/mullvad/x-rvjyolmbzcawduvw] has joined #bitcoin-core-dev 11:23 -!- adnn [~adnn@cpe-158-222-198-108.nyc.res.rr.com] has quit [Ping timeout: 248 seconds] 11:26 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 11:27 -!- laurentmt [~Thunderbi@128-79-141-196.hfc.dyn.abo.bbox.fr] has quit [Quit: laurentmt] 11:31 -!- e4xit [~e4xit@cpc92302-cmbg19-2-0-cust1369.5-4.cable.virginm.net] has quit [Quit: Right I'm out!] 11:34 -!- shea256_ [~shea256@65.209.72.194] has joined #bitcoin-core-dev 11:35 -!- shea256_ [~shea256@65.209.72.194] has quit [Read error: Connection reset by peer] 11:35 -!- shea256_ [~shea256@65.209.72.194] has joined #bitcoin-core-dev 11:37 -!- shea256 [~shea256@65.209.72.194] has quit [Ping timeout: 248 seconds] 11:40 -!- shea256_ [~shea256@65.209.72.194] has quit [Remote host closed the connection] 11:43 -!- adnn [~adnn@cpe-158-222-198-108.nyc.res.rr.com] has joined #bitcoin-core-dev 11:47 -!- adnn_ [adnn@gateway/vpn/mullvad/x-rvjyolmbzcawduvw] has quit [Ping timeout: 255 seconds] 11:53 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 11:53 -!- shea256 [~shea256@65.209.72.194] has quit [Remote host closed the connection] 11:53 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 12:07 -!- Don_John [~Don@251-223-114-134.nat.resnet.nau.edu] has joined #bitcoin-core-dev 12:07 -!- wallet42 [~wallet42@unaffiliated/wallet42] has quit [Quit: Leaving.] 12:13 -!- wallet42 [~wallet42@unaffiliated/wallet42] has joined #bitcoin-core-dev 12:22 -!- Don_John [~Don@251-223-114-134.nat.resnet.nau.edu] has quit [Ping timeout: 255 seconds] 12:32 -!- wallet42 [~wallet42@unaffiliated/wallet42] has quit [Quit: Leaving.] 12:42 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 13:17 -!- BountyHunter [~BountyHun@178.73.210.252] has joined #bitcoin-core-dev 13:38 -!- raedah [~raedah@172.58.32.83] has quit [Ping timeout: 240 seconds] 13:40 -!- skyraider_ [uid41097@gateway/web/irccloud.com/x-qjwojpjrmkommowe] has quit [Quit: Connection closed for inactivity] 13:44 -!- murch [~murch@p4FE398C5.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 13:44 -!- BountyHunter [~BountyHun@178.73.210.252] has quit [Quit: Leaving] 13:48 -!- gevs [~greg@62.235.21.137] has joined #bitcoin-core-dev 13:48 -!- gevs [~greg@62.235.21.137] has quit [Changing host] 13:48 -!- gevs [~greg@unaffiliated/gevs] has joined #bitcoin-core-dev 13:55 -!- BHunter2012 [~BountyHun@178.73.210.252] has joined #bitcoin-core-dev 13:59 -!- BHunter2012 [~BountyHun@178.73.210.252] has quit [Quit: Leaving] 14:00 -!- BountyHunter [~BountyHun@178.73.210.252] has joined #bitcoin-core-dev 14:02 -!- BountyHunter [~BountyHun@178.73.210.252] has quit [Client Quit] 14:02 -!- BountyHunter [~BountyHun@178.73.210.252] has joined #bitcoin-core-dev 14:31 -!- BountyHunter [~BountyHun@178.73.210.252] has quit [Changing host] 14:31 -!- BountyHunter [~BountyHun@unaffiliated/bountyhunter] has joined #bitcoin-core-dev 14:31 -!- treehug88 [~textual@static-108-30-103-59.nycmny.fios.verizon.net] has quit [Quit: Textual IRC Client: www.textualapp.com] 14:33 -!- BountyHunter [~BountyHun@unaffiliated/bountyhunter] has quit [Quit: Leaving] 14:33 -!- BountyHunter [~BountyHun@unaffiliated/bountyhunter] has joined #bitcoin-core-dev 14:34 -!- guruvan [~guruvan@unaffiliated/guruvan] has quit [Ping timeout: 255 seconds] 14:36 -!- BananaLotus [~BananaLot@54.186.186.141] has quit [Ping timeout: 244 seconds] 14:54 -!- zooko [~user@c-73-229-199-227.hsd1.co.comcast.net] has joined #bitcoin-core-dev 15:01 -!- dermoth [~thomas@dsl-66-36-134-19.mtl.aei.ca] has quit [Ping timeout: 240 seconds] 15:12 -!- BountyHunter [~BountyHun@unaffiliated/bountyhunter] has quit [Quit: Leaving] 15:17 -!- PaulCapestany [~PaulCapes@204.28.124.82] has quit [Quit: .] 15:19 -!- gevs [~greg@unaffiliated/gevs] has quit [Ping timeout: 248 seconds] 15:19 -!- PaulCapestany [~PaulCapes@204.28.124.82] has joined #bitcoin-core-dev 15:32 -!- gevs [~greg@ip-62-235-151-38.dsl.scarlet.be] has joined #bitcoin-core-dev 15:32 -!- gevs [~greg@ip-62-235-151-38.dsl.scarlet.be] has quit [Changing host] 15:32 -!- gevs [~greg@unaffiliated/gevs] has joined #bitcoin-core-dev 15:39 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Quit: :)] 15:45 -!- dermoth [~thomas@dsl-66-36-134-19.mtl.aei.ca] has joined #bitcoin-core-dev 15:52 -!- dermoth [~thomas@dsl-66-36-134-19.mtl.aei.ca] has quit [Ping timeout: 276 seconds] 15:59 -!- Thireus [~Thireus@vps-92.197.170.217.stwvps.net] has joined #bitcoin-core-dev 16:00 -!- shea256 [~shea256@65.209.72.194] has quit [Remote host closed the connection] 16:03 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 16:13 -!- shea256 [~shea256@65.209.72.194] has quit [Remote host closed the connection] 16:16 -!- murch [~murch@p4FE398C5.dip0.t-ipconnect.de] has quit [Remote host closed the connection] 16:30 -!- adnn [~adnn@cpe-158-222-198-108.nyc.res.rr.com] has quit [] 16:36 -!- blur3d [~blur3d@d114-78-36-48.rdl805.qld.optusnet.com.au] has joined #bitcoin-core-dev 16:36 -!- blur3d [~blur3d@d114-78-36-48.rdl805.qld.optusnet.com.au] has quit [Client Quit] 16:36 -!- PRab [~chatzilla@c-68-34-102-231.hsd1.mi.comcast.net] has quit [Ping timeout: 248 seconds] 16:44 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has quit [Ping timeout: 268 seconds] 16:49 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 16:57 -!- shea256 [~shea256@65.209.72.194] has quit [Ping timeout: 244 seconds] 17:09 -!- blur3d [~blur3d@d114-78-36-48.rdl805.qld.optusnet.com.au] has joined #bitcoin-core-dev 17:24 -!- jon3ss [~jones@104.238.169.23] has joined #bitcoin-core-dev 17:28 < GitHub61> [bitcoin] jtimon opened pull request #7563: libconsensus-p2a: Decouple pow.o from chain.o and move it to the consensus package (master...libconsensus-p2a-chain-cpp-interface-0.12.99) https://github.com/bitcoin/bitcoin/pull/7563 17:29 -!- larrysalibra [~larry@202.83.241.113] has joined #bitcoin-core-dev 17:37 -!- jamesob [~job_@50-201-192-26-static.hfc.comcastbusiness.net] has quit [Ping timeout: 244 seconds] 17:37 < GitHub137> [bitcoin] jtimon opened pull request #7564: libconsensus-p2a: Preparations to decouple libconsensus from coins.o (master...libconsensus-p2a-coins-cpp-interface-0.12.99) https://github.com/bitcoin/bitcoin/pull/7564 17:46 -!- larrysalibra [~larry@202.83.241.113] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 17:48 -!- larrysalibra [~larry@202.83.241.113] has joined #bitcoin-core-dev 17:52 -!- Chris_Stewart_5 [~Chris_Ste@lw.serv194.quikefall.com] has quit [Ping timeout: 240 seconds] 17:54 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 17:56 -!- larrysalibra [~larry@202.83.241.113] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 17:58 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-zptvqpyyahkycolx] has quit [Quit: Connection closed for inactivity] 17:59 -!- shea256 [~shea256@65.209.72.194] has quit [Ping timeout: 250 seconds] 18:02 -!- Guest95153 [~chatzilla@97-90-24-187.dhcp.mtpk.ca.charter.com] has joined #bitcoin-core-dev 18:03 -!- Guest95153 is now known as [_smitty] 18:08 -!- PRab [~chatzilla@c-68-34-102-231.hsd1.mi.comcast.net] has joined #bitcoin-core-dev 18:09 -!- Chris_Stewart_5 [~Chris_Ste@108.61.228.170] has joined #bitcoin-core-dev 18:12 -!- p15x [~p15x@49.91.145.64.client.static.strong-tk2.bringover.net] has quit [Ping timeout: 250 seconds] 18:13 < GitHub176> [bitcoin] jtimon opened pull request #7565: bip9/bip113/libconsensus-p2a: Deployment preparations forBIP113 + #7552 + Introduce Consensus::VerifyTx() (master...libconsensus-p2a-verifytx-bip113-0.12.99) https://github.com/bitcoin/bitcoin/pull/7565 18:19 -!- dermoth [~thomas@dsl-66-36-134-19.mtl.aei.ca] has joined #bitcoin-core-dev 18:20 -!- wangchun [~wangchun@li414-193.members.linode.com] has quit [Quit: leaving] 18:21 -!- wangchun [~wangchun@li414-193.members.linode.com] has joined #bitcoin-core-dev 18:51 -!- jon3ss [~jones@104.238.169.23] has quit [Read error: Connection reset by peer] 18:52 -!- laurentmt [~Thunderbi@128-79-141-196.hfc.dyn.abo.bbox.fr] has joined #bitcoin-core-dev 18:52 -!- laurentmt [~Thunderbi@128-79-141-196.hfc.dyn.abo.bbox.fr] has quit [Client Quit] 18:54 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 18:54 -!- Chris_Stewart_5 [~Chris_Ste@108.61.228.170] has quit [Ping timeout: 240 seconds] 18:59 -!- shea256 [~shea256@65.209.72.194] has quit [Ping timeout: 276 seconds] 19:11 -!- PRab [~chatzilla@c-68-34-102-231.hsd1.mi.comcast.net] has quit [Remote host closed the connection] 19:25 < GitHub137> [bitcoin] jtimon opened pull request #7566: WIP: Implement BIP9 and get BIP113 to be deployed with it as an example (master...bip9-0.12.99) https://github.com/bitcoin/bitcoin/pull/7566 19:32 -!- PRab [~chatzilla@c-68-34-102-231.hsd1.mi.comcast.net] has joined #bitcoin-core-dev 19:33 -!- Thireus1 [~Thireus@vps-92.197.170.217.stwvps.net] has joined #bitcoin-core-dev 19:36 -!- Thireus [~Thireus@vps-92.197.170.217.stwvps.net] has quit [Ping timeout: 248 seconds] 19:49 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 19:53 -!- PRab [~chatzilla@c-68-34-102-231.hsd1.mi.comcast.net] has quit [Remote host closed the connection] 19:59 -!- shea256 [~shea256@65.209.72.194] has quit [Ping timeout: 255 seconds] 19:59 -!- jtimon [~quassel@46.31.134.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 20:08 -!- Chris_Stewart_5 [~Chris_Ste@108.61.228.11] has joined #bitcoin-core-dev 20:32 -!- Chris_Stewart_5 [~Chris_Ste@108.61.228.11] has quit [Ping timeout: 240 seconds] 20:48 -!- larrysalibra [~larry@202.83.241.113] has joined #bitcoin-core-dev 20:53 -!- [_smitty] [~chatzilla@97-90-24-187.dhcp.mtpk.ca.charter.com] has quit [Quit: ChatZilla 0.9.92 [SeaMonkey 2.39/20151103191810]] 20:56 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 21:00 -!- dermoth [~thomas@dsl-66-36-134-19.mtl.aei.ca] has quit [Read error: Connection reset by peer] 21:00 -!- shea256 [~shea256@65.209.72.194] has quit [Ping timeout: 240 seconds] 21:01 -!- dermoth [~thomas@dsl-66-36-134-19.mtl.aei.ca] has joined #bitcoin-core-dev 21:22 -!- zooko [~user@c-73-229-199-227.hsd1.co.comcast.net] has quit [Ping timeout: 240 seconds] 21:22 -!- larrysalibra [~larry@202.83.241.113] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 21:55 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 22:00 -!- shea256 [~shea256@65.209.72.194] has quit [Ping timeout: 276 seconds] 22:06 -!- raedah [~raedah@172.58.32.83] has joined #bitcoin-core-dev 22:19 -!- blur3d [~blur3d@d114-78-36-48.rdl805.qld.optusnet.com.au] has quit [Quit: blur3d] 22:33 -!- wallet42 [~wallet42@unaffiliated/wallet42] has joined #bitcoin-core-dev 22:38 -!- wallet42 [~wallet42@unaffiliated/wallet42] has quit [Quit: Leaving.] 22:56 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev 23:01 -!- shea256 [~shea256@65.209.72.194] has quit [Ping timeout: 252 seconds] 23:11 -!- blur3d [~blur3d@d114-78-36-48.rdl805.qld.optusnet.com.au] has joined #bitcoin-core-dev 23:15 -!- trippysalmon [~trippy@cyberdynesys.org] has joined #bitcoin-core-dev 23:45 -!- wallet42 [~wallet42@unaffiliated/wallet42] has joined #bitcoin-core-dev 23:55 -!- shea256 [~shea256@65.209.72.194] has joined #bitcoin-core-dev