--- Day changed Sun Apr 02 2017 00:04 < bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/1a5aaabb8a3d...427d2fd04eee 00:04 < bitcoin-git> bitcoin/master 3f098cc Jeremy Rubin: Decrease testcase sizes in cuckoocache tests 00:04 < bitcoin-git> bitcoin/master 427d2fd Wladimir J. van der Laan: Merge #10128: Speed Up CuckooCache tests... 00:04 < bitcoin-git> [bitcoin] laanwj closed pull request #10128: Speed Up CuckooCache tests (master...cuckoo-tests-faster) https://github.com/bitcoin/bitcoin/pull/10128 00:05 -!- fengling [~fengling@223.223.187.142] has joined #bitcoin-core-dev 00:07 < fanquake> wumpus #10036 is a trivial merge if your merging things. 00:07 < gribble> https://github.com/bitcoin/bitcoin/issues/10036 | Fix init README format to render correctly on github by jlopp · Pull Request #10036 · bitcoin/bitcoin · GitHub 00:26 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-mphksolljpfifmmr] has joined #bitcoin-core-dev 00:28 < wumpus> fanquake: thanks 00:28 < bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/427d2fd04eee...fbf36cae3a46 00:28 < bitcoin-git> bitcoin/master b99fbad Jameson Lopp: Fix init README format to render correctly on github 00:28 < bitcoin-git> bitcoin/master fbf36ca Wladimir J. van der Laan: Merge #10036: Fix init README format to render correctly on github... 00:28 < bitcoin-git> [bitcoin] laanwj closed pull request #10036: Fix init README format to render correctly on github (master...readmeFormatting) https://github.com/bitcoin/bitcoin/pull/10036 00:46 < sipa> wumpus: btw, LevelDB .20 adds hw accelerated crc for intel 00:46 < gmaxwell> \O/ 00:48 < wumpus> sipa: good to know 00:49 < wumpus> yep https://github.com/google/leveldb/blob/master/port/port_posix_sse.cc 00:49 < wumpus> that will really help our performance (on supported hw0 00:50 < gmaxwell> should probably do that upgrade sooner rather than later in 0.15 to give time to find any compatiblity issues. 00:50 < sipa> we may want to add arm code to do the same ourselves 00:51 < wumpus> indeed 00:57 < wumpus> yes would make sense to bump our leveldb in master to that soon 00:58 < sipa> we'll need some build process integration to detect and pass down the SSE defines 00:58 < sipa> as we bypass their build system 00:58 < wumpus> would also get https://github.com/bitcoin-core/leveldb/pull/17 00:59 < wumpus> isn't the SSE stuff at runtime? 00:59 < wumpus> I'd hope so :( 00:59 < gmaxwell> at least on intel runtime autodetection is simple-- and as I've mentioned before, recent g++ has a sensible looking function overrides based way of doing the substitution. 00:59 < gmaxwell> but leveldb didn't implement runtime? lameo. 01:00 < sipa> yes, they detect at runtime 01:00 < wumpus> they for fact have runtime detection, I saw HaveSSE42 in the file I linked 01:00 < wumpus> dunno if they use it 01:00 < sipa> but you still need a compiler that has support for it 01:01 < wumpus> "In a separate source file to allow this accelerated CRC32C function to be compiled with the appropriate compiler flags to enable x86 SSE 4.2instructions." 01:01 < wumpus> indeed 01:01 < wumpus> that specific file needs special compiler flags 01:02 < sipa> they use intel instrinsics in gcc, not native assembly 01:03 < gmaxwell> yea thats a pretty normal approach, you have one file compiled with -msse4.2 and dispatch elsewhere calls into it only on the right hardware. 01:04 < gmaxwell> I think some of the examples for the function overriding stuff used pragmas to push the compiler flags just for that function, so if I'm not misremembering apparently that works. 01:09 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Ping timeout: 256 seconds] 01:47 < wumpus> cfields: do you have time to look at integrating the leveldb sse42 stuff into our build system? if not, no problem I'll take a look at it, it doesn't seem particularly difficult though I wouldn't know the autoconf/automake incantation for compiling a file with different flags 01:47 < sipa> i think i can do it 01:48 < sipa> ah, nvm, you only want that single file to have -msse4 01:48 < wumpus> yep, that's the challenge :) 01:48 < sipa> that i fon't know 01:48 < sipa> *don't 01:50 < sipa> probably needs a separate .a file? 01:51 < wumpus> sse4.2 isn't yet widely available enough to compile everything with it, unlike sse2 for example which every 64-bit processor has 01:51 < wumpus> every 64-bit *x86* processor sorry :) 01:51 < wumpus> sipa: not sure, maybe the attributes can be added per .o file too 02:00 < sipa> wumpus: as leveldb upstream does not look like they'll pick up my barrier patch anytime soon, i'll submit it to our leveldb repo instead? 02:02 -!- e4xit [~textual@cpc1-cmbg20-2-0-cust188.5-4.cable.virginm.net] has joined #bitcoin-core-dev 02:02 < wumpus> sipa: sounds good to me 02:09 -!- voyager_ [~voyager@ip70-185-195-78.ok.ok.cox.net] has quit [Ping timeout: 260 seconds] 02:10 -!- voyager_ [~voyager@ip68-13-250-112.ok.ok.cox.net] has joined #bitcoin-core-dev 02:23 -!- chjj [~chjj@unaffiliated/chjj] has quit [Ping timeout: 268 seconds] 02:28 -!- vicenteH [~user@96.235.15.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 02:29 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 02:39 -!- Victor_sueca is now known as Victorsueca 02:43 < fanquake> Opened #10138 to track the above 02:43 < gribble> https://github.com/bitcoin/bitcoin/issues/10138 | LevelDB 1.20 · Issue #10138 · bitcoin/bitcoin · GitHub 02:51 < wumpus> good idea 02:55 < bitcoin-git> [bitcoin] fanquake closed pull request #9402: Allow per network configuration file (master...PerNetworkConfig) https://github.com/bitcoin/bitcoin/pull/9402 02:58 < sipa> fanquake: thanks! 03:00 < bitcoin-git> [bitcoin] fanquake closed pull request #9418: [Net] Refactor: exit when no direct fetch (master...ExitWhenNoDirectFetch) https://github.com/bitcoin/bitcoin/pull/9418 03:02 < bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/fbf36cae3a46...2b477e6aa196 03:02 < bitcoin-git> bitcoin/master e9a6461 Russell Yanofsky: Make qt wallet test compatible with qt4... 03:02 < bitcoin-git> bitcoin/master 2b477e6 Wladimir J. van der Laan: Merge #10098: Make qt wallet test compatible with qt4... 03:02 < bitcoin-git> [bitcoin] laanwj closed pull request #10098: Make qt wallet test compatible with qt4 (master...pr/wqt4) https://github.com/bitcoin/bitcoin/pull/10098 03:02 -!- CubicEarthh [~cubiceart@2002:329f:7e15:0:ec81:85b6:8a6d:6e5d] has quit [Remote host closed the connection] 03:33 -!- midnightmagic [~midnightm@unaffiliated/midnightmagic] has quit [Ping timeout: 240 seconds] 03:47 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 03:54 < bitcoin-git> [bitcoin] MarcoFalke pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/2b477e6aa196...12af74b289f8 03:54 < bitcoin-git> bitcoin/master 1f3d78b John Newbery: Wait for connection to open in bip9-softforks.py... 03:54 < bitcoin-git> bitcoin/master a4fd89f John Newbery: Make forknotify.py more robust... 03:54 < bitcoin-git> bitcoin/master 12af74b MarcoFalke: Merge #10072: Remove sources of unreliablility in extended functional tests... 03:55 < bitcoin-git> [bitcoin] MarcoFalke closed pull request #10072: Remove sources of unreliablility in extended functional tests (master...extended_test_unreliablility) https://github.com/bitcoin/bitcoin/pull/10072 03:56 -!- midnightmagic [~midnightm@unaffiliated/midnightmagic] has joined #bitcoin-core-dev 03:58 -!- n1ce [~n1ce@unaffiliated/n1ce] has joined #bitcoin-core-dev 04:03 -!- CubicEarthh [~cubiceart@2002:329f:7e15:0:ec81:85b6:8a6d:6e5d] has joined #bitcoin-core-dev 04:07 -!- arubi [~ese168@gateway/tor-sasl/ese168] has quit [Remote host closed the connection] 04:08 -!- CubicEarthh [~cubiceart@2002:329f:7e15:0:ec81:85b6:8a6d:6e5d] has quit [Ping timeout: 258 seconds] 04:08 -!- arubi [~ese168@gateway/tor-sasl/ese168] has joined #bitcoin-core-dev 04:19 -!- midnightmagic [~midnightm@unaffiliated/midnightmagic] has quit [Ping timeout: 240 seconds] 04:42 -!- midnightmagic [~midnightm@unaffiliated/midnightmagic] has joined #bitcoin-core-dev 04:42 -!- chjj [~chjj@unaffiliated/chjj] has joined #bitcoin-core-dev 04:46 -!- voyager_ [~voyager@ip68-13-250-112.ok.ok.cox.net] has quit [Ping timeout: 240 seconds] 04:47 -!- voyager_ [~voyager@ip68-13-250-112.ok.ok.cox.net] has joined #bitcoin-core-dev 05:02 -!- laurentmt [~Thunderbi@176.158.157.202] has joined #bitcoin-core-dev 05:04 -!- CubicEarthh [~cubiceart@2002:329f:7e15:0:ec81:85b6:8a6d:6e5d] has joined #bitcoin-core-dev 05:04 -!- laurentmt [~Thunderbi@176.158.157.202] has quit [Client Quit] 05:09 -!- CubicEarthh [~cubiceart@2002:329f:7e15:0:ec81:85b6:8a6d:6e5d] has quit [Ping timeout: 260 seconds] 05:11 -!- jtimon [~quassel@70.30.134.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 05:16 -!- alpalp [~alpalp@2605:6000:f4cb:b700:5816:6ce2:79c0:40c7] has joined #bitcoin-core-dev 05:16 -!- alpalp [~alpalp@2605:6000:f4cb:b700:5816:6ce2:79c0:40c7] has quit [Changing host] 05:16 -!- alpalp [~alpalp@unaffiliated/alpalp] has joined #bitcoin-core-dev 05:28 -!- To7 [~theo@cpe-158-222-192-214.nyc.res.rr.com] has quit [Quit: Whatever] 05:31 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 05:53 -!- str4d [~str4d@27.110.123.92] has quit [Ping timeout: 260 seconds] 05:59 -!- jtimon [~quassel@70.30.134.37.dynamic.jazztel.es] has quit [Ping timeout: 260 seconds] 06:04 -!- CubicEarthh [~cubiceart@2002:329f:7e15:0:ec81:85b6:8a6d:6e5d] has joined #bitcoin-core-dev 06:10 -!- CubicEarthh [~cubiceart@2002:329f:7e15:0:ec81:85b6:8a6d:6e5d] has quit [Ping timeout: 256 seconds] 06:28 < da2ce7> I have an updated commit for the UASF, I would really appreciate some builds and code review. 06:28 < da2ce7> https://github.com/da2ce7/bitcoin/commit/d2bdbb07816f3fc63f0007c53359b4e118368724 06:31 < da2ce7> this commit is based upon bitcoin knots 06:39 < bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/12af74b289f8...ebfd65379811 06:39 < bitcoin-git> bitcoin/master fa697b7 MarcoFalke: [qa] Add setnetworkactive smoke test 06:39 < bitcoin-git> bitcoin/master ebfd653 Wladimir J. van der Laan: Merge #10077: [qa] Add setnetworkactive smoke test... 06:40 < bitcoin-git> [bitcoin] laanwj closed pull request #10077: [qa] Add setnetworkactive smoke test (master...Mf1703-toggleNet) https://github.com/bitcoin/bitcoin/pull/10077 06:47 -!- Giszmo [~leo@pc-240-13-215-201.cm.vtr.net] has joined #bitcoin-core-dev 06:52 -!- dcousens [~anon@c110-22-219-15.sunsh4.vic.optusnet.com.au] has quit [Ping timeout: 268 seconds] 06:53 < bitcoin-git> [bitcoin] practicalswift opened pull request #10139: [rpc] Remove auth cookie on shutdown (master...delete-auth-cookies) https://github.com/bitcoin/bitcoin/pull/10139 06:53 -!- dcousens [~anon@c110-22-219-15.sunsh4.vic.optusnet.com.au] has joined #bitcoin-core-dev 07:05 -!- CubicEarthh [~cubiceart@c-50-159-126-21.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 07:08 -!- jouke [~worst@unaffiliated/komkommer] has quit [Remote host closed the connection] 07:09 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Quit: :)] 07:10 -!- jouke [~worst@2001:1c02:1600:5a00:508c:5a2e:8853:75d2] has joined #bitcoin-core-dev 07:10 -!- CubicEarthh [~cubiceart@c-50-159-126-21.hsd1.wa.comcast.net] has quit [Ping timeout: 260 seconds] 07:10 -!- jouke [~worst@2001:1c02:1600:5a00:508c:5a2e:8853:75d2] has quit [Changing host] 07:10 -!- jouke [~worst@unaffiliated/komkommer] has joined #bitcoin-core-dev 07:48 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 240 seconds] 07:55 -!- To7 [~theo@cpe-158-222-192-214.nyc.res.rr.com] has joined #bitcoin-core-dev 08:01 -!- n1ce [~n1ce@unaffiliated/n1ce] has quit [Ping timeout: 240 seconds] 08:06 -!- CubicEarthh [~cubiceart@2002:329f:7e15:0:ec81:85b6:8a6d:6e5d] has joined #bitcoin-core-dev 08:11 -!- CubicEarthh [~cubiceart@2002:329f:7e15:0:ec81:85b6:8a6d:6e5d] has quit [Ping timeout: 260 seconds] 08:26 -!- jcorgan [~jcorgan@unaffiliated/jcorgan] has quit [Quit: ZNC - 1.6.0 - http://znc.in] 08:29 -!- belcher [~belcher@unaffiliated/belcher] has quit [Ping timeout: 240 seconds] 08:33 -!- fanquake [~fanquake@unaffiliated/fanquake] has quit [Quit: Leaving.] 08:34 -!- jcorgan [~jcorgan@unaffiliated/jcorgan] has joined #bitcoin-core-dev 08:35 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 08:37 -!- belcher [~belcher@unaffiliated/belcher] has joined #bitcoin-core-dev 08:45 -!- e4xit [~textual@cpc1-cmbg20-2-0-cust188.5-4.cable.virginm.net] has quit [Quit: e4xit] 08:48 -!- dcousens [~anon@c110-22-219-15.sunsh4.vic.optusnet.com.au] has quit [Ping timeout: 260 seconds] 08:53 -!- PRab [~chatzilla@c-68-62-95-247.hsd1.mi.comcast.net] has quit [Ping timeout: 256 seconds] 08:54 -!- voyager_ [~voyager@ip68-13-250-112.ok.ok.cox.net] has quit [Ping timeout: 268 seconds] 08:57 -!- CubicEarthh [~cubiceart@2002:329f:7e15:0:ec81:85b6:8a6d:6e5d] has joined #bitcoin-core-dev 09:08 -!- nanotube [~nanotube@unaffiliated/nanotube] has quit [Ping timeout: 246 seconds] 09:19 -!- nanotube [~nanotube@unaffiliated/nanotube] has joined #bitcoin-core-dev 09:19 -!- e4xit [~textual@cpc1-cmbg20-2-0-cust188.5-4.cable.virginm.net] has joined #bitcoin-core-dev 09:31 -!- arubi [~ese168@gateway/tor-sasl/ese168] has quit [Remote host closed the connection] 09:31 -!- wasi [~wasi@gateway/tor-sasl/wasi] has quit [Read error: Connection reset by peer] 09:31 -!- arubi [~ese168@gateway/tor-sasl/ese168] has joined #bitcoin-core-dev 09:32 -!- arubi [~ese168@gateway/tor-sasl/ese168] has quit [Remote host closed the connection] 09:34 -!- arubi [~ese168@gateway/tor-sasl/ese168] has joined #bitcoin-core-dev 09:47 < Naphex> found a segfault when submitting invalid blocks with submitblock, tracking back to see the reason 09:48 < Naphex> [4761171.418546] bitcoin-httpwor[39240]: segfault at 0 ip 0000002314a2a1b7 sp 00000393b3f1f4f0 error 4 in bitcoind[23148a2000+550000] 10:07 -!- mol [~molly@unaffiliated/molly] has quit [Read error: Connection reset by peer] 10:07 -!- moli_ [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 10:10 -!- wasi [~wasi@gateway/tor-sasl/wasi] has joined #bitcoin-core-dev 10:29 -!- jcorgan [~jcorgan@unaffiliated/jcorgan] has quit [Quit: ZNC - 1.6.0 - http://znc.in] 10:31 -!- jcorgan [~jcorgan@unaffiliated/jcorgan] has joined #bitcoin-core-dev 10:31 -!- jcorgan [~jcorgan@unaffiliated/jcorgan] has quit [Client Quit] 10:32 -!- jcorgan [~jcorgan@unaffiliated/jcorgan] has joined #bitcoin-core-dev 10:32 -!- jcorgan [~jcorgan@unaffiliated/jcorgan] has quit [Client Quit] 10:33 -!- jcorgan [~jcorgan@unaffiliated/jcorgan] has joined #bitcoin-core-dev 10:57 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 11:02 -!- mol [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 11:03 -!- moli_ [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 11:07 -!- Sosumi [~Leon@bl10-113-190.dsl.telepac.pt] has joined #bitcoin-core-dev 11:25 -!- riemann [~riemann@ip-222-88.ists.pl] has joined #bitcoin-core-dev 11:28 -!- CubicEarthh [~cubiceart@2002:329f:7e15:0:ec81:85b6:8a6d:6e5d] has quit [Remote host closed the connection] 11:39 < jonasschnelli> Naphex: can you post the full stacktrace as a github issue? 11:53 -!- molz_ [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 11:56 -!- mol [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 12:40 -!- riemann [~riemann@ip-222-88.ists.pl] has quit [Quit: Leaving] 12:57 -!- Sosumi [~Leon@bl10-113-190.dsl.telepac.pt] has quit [Quit: Bye] 13:13 -!- str4d [~str4d@27.110.123.92] has joined #bitcoin-core-dev 13:19 -!- juscamarena [~justin@47.148.176.74] has quit [Remote host closed the connection] 13:20 -!- juscamarena [~justin@47.148.176.74] has joined #bitcoin-core-dev 13:44 -!- dacox [b8471b7a@gateway/web/freenode/ip.184.71.27.122] has joined #bitcoin-core-dev 13:49 -!- voyager_ [~voyager@ip68-13-250-112.ok.ok.cox.net] has joined #bitcoin-core-dev 14:27 -!- wangchun [~wangchun@li414-193.members.linode.com] has quit [Quit: leaving] 14:28 -!- wangchun [~wangchun@li414-193.members.linode.com] has joined #bitcoin-core-dev 14:35 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Read error: Connection reset by peer] 14:36 -!- dacox [b8471b7a@gateway/web/freenode/ip.184.71.27.122] has quit [Ping timeout: 260 seconds] 14:37 -!- condomitti [~condomitt@179.35.242.220] has joined #bitcoin-core-dev 14:45 -!- condomitti [~condomitt@179.35.242.220] has quit [Quit: Leaving] 14:45 -!- condomitti [~condomitt@179.35.242.220] has joined #bitcoin-core-dev 14:57 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 256 seconds] 15:15 -!- juscamarena [~justin@47.148.176.74] has quit [Remote host closed the connection] 15:18 -!- juscamarena [~justin@47.148.176.74] has joined #bitcoin-core-dev 15:27 -!- jtimon [~quassel@70.30.134.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 15:30 -!- jtimon [~quassel@70.30.134.37.dynamic.jazztel.es] has quit [Remote host closed the connection] 15:31 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 16:12 -!- fanquake [~fanquake@unaffiliated/fanquake] has joined #bitcoin-core-dev 16:18 -!- juscamarena [~justin@47.148.176.74] has quit [Ping timeout: 246 seconds] 16:24 -!- juscamarena [~justin@47.148.176.74] has joined #bitcoin-core-dev 16:30 -!- goksinen [~goksinen@2604:2000:c591:8400:b51f:db56:525e:78c0] has joined #bitcoin-core-dev 16:31 -!- dodomojo [~goksinen@2604:2000:c591:8400:31b0:5e1b:b1fc:57b6] has joined #bitcoin-core-dev 16:34 -!- goksinen [~goksinen@2604:2000:c591:8400:b51f:db56:525e:78c0] has quit [Ping timeout: 246 seconds] 16:42 -!- dcousens [~anon@c110-22-219-15.sunsh4.vic.optusnet.com.au] has joined #bitcoin-core-dev 16:53 < bitcoin-git> [bitcoin] jnewbery reopened pull request #10123: Allow debug logs to be excluded from specified component (master...debugexclude) https://github.com/bitcoin/bitcoin/pull/10123 16:54 < bitcoin-git> [bitcoin] jnewbery closed pull request #10123: Allow debug logs to be excluded from specified component (master...debugexclude) https://github.com/bitcoin/bitcoin/pull/10123 16:56 < bitcoin-git> [bitcoin] jnewbery reopened pull request #10123: Allow debug logs to be excluded from specified component (master...debugexclude) https://github.com/bitcoin/bitcoin/pull/10123 17:02 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 17:03 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 17:08 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 17:14 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-mphksolljpfifmmr] has quit [Quit: Connection closed for inactivity] 17:20 -!- str4d [~str4d@27.110.123.92] has quit [Ping timeout: 258 seconds] 17:20 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 17:20 -!- str4d [~str4d@27.110.123.91] has joined #bitcoin-core-dev 17:35 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 256 seconds] 17:41 -!- waxwing__ [waxwing@gateway/vpn/mullvad/x-nitvbbhdefpzhfii] has joined #bitcoin-core-dev 17:42 -!- waxwing [waxwing@gateway/vpn/mullvad/x-kyfvxmgekqkztusj] has quit [Ping timeout: 240 seconds] 17:45 -!- Giszmo [~leo@pc-240-13-215-201.cm.vtr.net] has quit [Quit: Leaving.] 17:45 -!- Giszmo [~leo@pc-240-13-215-201.cm.vtr.net] has joined #bitcoin-core-dev 17:46 -!- dcousens [~anon@c110-22-219-15.sunsh4.vic.optusnet.com.au] has quit [Ping timeout: 246 seconds] 17:48 -!- dcousens [~anon@c110-22-219-15.sunsh4.vic.optusnet.com.au] has joined #bitcoin-core-dev 17:50 -!- chjj [~chjj@unaffiliated/chjj] has quit [Ping timeout: 258 seconds] 18:32 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 18:37 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 260 seconds] 18:47 -!- dacox [b8471b7a@gateway/web/freenode/ip.184.71.27.122] has joined #bitcoin-core-dev 18:47 -!- dacox [b8471b7a@gateway/web/freenode/ip.184.71.27.122] has quit [Client Quit] 18:47 -!- dacox [b8471b7a@gateway/web/freenode/ip.184.71.27.122] has joined #bitcoin-core-dev 19:00 -!- dermoth [~thomas@dsl-66-36-129-165.mtl.aei.ca] has quit [Read error: Connection reset by peer] 19:00 -!- dermoth [~thomas@dsl-66-36-129-165.mtl.aei.ca] has joined #bitcoin-core-dev 19:27 -!- alpalp [~alpalp@unaffiliated/alpalp] has quit [Ping timeout: 246 seconds] 19:30 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 19:38 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 246 seconds] 19:41 -!- kadoban [~mud@unaffiliated/kadoban] has joined #bitcoin-core-dev 19:44 -!- fanquake [~fanquake@unaffiliated/fanquake] has quit [Quit: Leaving.] 19:58 -!- Alina-malina [~Alina-mal@unaffiliated/alina-malina] has quit [Ping timeout: 240 seconds] 20:09 -!- justan0theruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 20:10 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 240 seconds] 20:22 -!- juscamarena_ [~justin@47.148.176.74] has joined #bitcoin-core-dev 20:23 -!- juscamarena [~justin@47.148.176.74] has quit [Ping timeout: 240 seconds] 20:55 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 20:59 -!- midnightmagic [~midnightm@unaffiliated/midnightmagic] has quit [Ping timeout: 260 seconds] 21:00 -!- davec [~davec@cpe-24-243-249-218.hot.res.rr.com] has quit [Ping timeout: 240 seconds] 21:03 -!- davec [~davec@cpe-24-243-249-218.hot.res.rr.com] has joined #bitcoin-core-dev 21:03 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 260 seconds] 21:08 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 21:13 -!- midnightmagic [~midnightm@unaffiliated/midnightmagic] has joined #bitcoin-core-dev 21:18 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 21:19 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 21:30 -!- dodomojo [~goksinen@2604:2000:c591:8400:31b0:5e1b:b1fc:57b6] has quit [Remote host closed the connection] 21:31 -!- goksinen [~goksinen@2604:2000:c591:8400:31b0:5e1b:b1fc:57b6] has joined #bitcoin-core-dev 21:35 -!- goksinen [~goksinen@2604:2000:c591:8400:31b0:5e1b:b1fc:57b6] has quit [Ping timeout: 246 seconds] 21:40 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 21:40 -!- goksinen [~goksinen@cpe-74-71-4-175.nyc.res.rr.com] has joined #bitcoin-core-dev 21:42 -!- goksinen [~goksinen@cpe-74-71-4-175.nyc.res.rr.com] has quit [Remote host closed the connection] 21:42 -!- goksinen [~goksinen@cpe-74-71-4-175.nyc.res.rr.com] has joined #bitcoin-core-dev 21:47 -!- goksinen [~goksinen@cpe-74-71-4-175.nyc.res.rr.com] has quit [Ping timeout: 260 seconds] 22:15 -!- waxwing__ is now known as waxwing 22:35 -!- goksinen [~goksinen@2604:2000:c591:8400:6dee:1f3b:b7e7:2ae6] has joined #bitcoin-core-dev 22:39 -!- goksinen [~goksinen@2604:2000:c591:8400:6dee:1f3b:b7e7:2ae6] has quit [Ping timeout: 246 seconds] 22:48 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-wigoqbyciuiawatx] has joined #bitcoin-core-dev 22:51 -!- IRCFrEAK [~gk.1wm.su@185.93.181.102] has joined #bitcoin-core-dev 22:53 -!- IRCFrEAK [~gk.1wm.su@185.93.181.102] has left #bitcoin-core-dev [] 22:56 -!- Alina-malina [~Alina-mal@37.157.223.80] has joined #bitcoin-core-dev 23:03 -!- kadoban [~mud@unaffiliated/kadoban] has quit [Quit: bye] 23:22 -!- CubicEarthh [~cubiceart@2002:329f:7e15:0:e0e4:1fd6:5609:483f] has joined #bitcoin-core-dev 23:27 -!- CubicEarthh [~cubiceart@2002:329f:7e15:0:e0e4:1fd6:5609:483f] has quit [Ping timeout: 256 seconds] 23:29 -!- goksinen [~goksinen@2604:2000:c591:8400:6dee:1f3b:b7e7:2ae6] has joined #bitcoin-core-dev 23:32 -!- CubicEarthh [~cubiceart@c-50-159-126-21.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 23:33 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 23:33 -!- goksinen [~goksinen@2604:2000:c591:8400:6dee:1f3b:b7e7:2ae6] has quit [Ping timeout: 246 seconds] 23:34 -!- CubicEarthh [~cubiceart@c-50-159-126-21.hsd1.wa.comcast.net] has quit [Read error: Connection reset by peer] 23:34 -!- CubicEarthh [~cubiceart@c-50-159-126-21.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 23:38 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 268 seconds] 23:41 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 23:46 -!- BashCo_ [~BashCo@unaffiliated/bashco] has quit [Remote host closed the connection] 23:53 < bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/ebfd65379811...e6033e00b164 23:53 < bitcoin-git> bitcoin/master 4b87973 practicalswift: [rpc] Remove auth cookie on shutdown... 23:53 < bitcoin-git> bitcoin/master e6033e0 Wladimir J. van der Laan: Merge #10139: [rpc] Remove auth cookie on shutdown... 23:53 < bitcoin-git> [bitcoin] laanwj closed pull request #10139: [rpc] Remove auth cookie on shutdown (master...delete-auth-cookies) https://github.com/bitcoin/bitcoin/pull/10139 23:55 < bitcoin-git> [bitcoin] laanwj pushed 1 new commit to 0.14: https://github.com/bitcoin/bitcoin/commit/f15268db3bf1a8c4ea410f4f63c6187b45e06ded 23:55 < bitcoin-git> bitcoin/0.14 f15268d practicalswift: [rpc] Remove auth cookie on shutdown... 23:59 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds]