--- Day changed Mon Apr 17 2017 00:01 -!- NewLiberty_ [~NewLibert@2602:306:b8e0:8160:c092:439b:71e3:67d1] has joined #bitcoin-core-dev 00:01 -!- d_t_ [~textual@108-65-78-188.lightspeed.sntcca.sbcglobal.net] has joined #bitcoin-core-dev 00:03 -!- NewLiberty [~NewLibert@2602:306:b8e0:8160:a495:97b1:54a1:89c3] has quit [Ping timeout: 245 seconds] 00:04 -!- d_t [~textual@108-65-78-188.lightspeed.sntcca.sbcglobal.net] has quit [Ping timeout: 252 seconds] 00:10 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 00:17 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 00:17 -!- d_t_ [~textual@108-65-78-188.lightspeed.sntcca.sbcglobal.net] has quit [Quit: Textual IRC Client: www.textualapp.com] 00:18 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 00:31 -!- vicenteH [~user@135.234.15.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 00:42 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Read error: Connection timed out] 00:43 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 01:08 <@wumpus> is it just me or is test_runner.py really slow now on master? 01:09 <@wumpus> huh only happens on one vm, must be me 01:19 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 01:19 <@wumpus> what I don't understand is that this is a much faster machine just much slower at running the tests 01:20 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 01:20 < sipa> slow i/9? 01:20 < sipa> i/o? 01:24 < MarcoFalke> we should really collect statistics about the tests such as run time and then plot them over time. 01:25 < MarcoFalke> I think we had a regression in the wallet once that made the wallet test run really slow... 01:25 <@wumpus> fast/old computer: 3.98user 1.26system 0:33.90elapsed 15%CPU (0avgtext+0avgdata 57976maxresident)k 8inputs+42776outputs (0major+107146minor)pagefaults 0swaps 01:25 <@wumpus> slow/new computer: 7.29user 2.48system 1:42.07elapsed 9%CPU (0avgtext+0avgdata 57904maxresident)k 0inputs+45776outputs (0major+108208minor)pagefaults 0swaps 01:25 <@wumpus> (both for fundrawtransaction test) 01:26 <@wumpus> to me it looks like it's just spending more time waiting 01:27 -!- tw2006 [~tw2006@2601:187:8480:2770:1ef:6535:9e2:264d] has joined #bitcoin-core-dev 01:27 < MarcoFalke> tearing down the nodes takes ages for tiny tests compared to the test's actual run time 01:29 < gmaxwell> unfortunately with the test running on shared vm infrastructure timings are probably not all that useful. 01:31 -!- tw2006 [~tw2006@2601:187:8480:2770:1ef:6535:9e2:264d] has quit [Ping timeout: 245 seconds] 01:34 -!- CubicEarth [~cubiceart@c-67-168-4-85.hsd1.wa.comcast.net] has quit [] 01:41 <@wumpus> it probably doesn't help rpc performance from python that authproxy calls log.debug for all data that comes in and goes out, pretty-printing everything even though usually it's discarded 01:41 <@wumpus> (not likely the cause of my slowdown, just noticed) 01:42 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 245 seconds] 01:45 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 01:55 < MarcoFalke> Indeed, no wall clock, but maybe cpu_time, memory_peak and io could help. 01:55 <@wumpus> I'm on to something maybe, a getnewaddress call takes 0.013565 on the one system, 0.168683 (more than ten times as much) on the other. Could be slow i/o, but that slow? 01:56 <@wumpus> this does not seem to extend to most other RPC calls (though havne't looked at them all) 01:56 < gmaxwell> well getnewaddress is syncing the wallet... so fsync time? 01:56 < sipa> we do a db sync operatiom after every new address 01:56 < sipa> jinx 01:57 <@wumpus> if so we need a flag to disable that for the tests 01:58 <@wumpus> fsync slow makes sense, I've noticed that before, I think it tries to sync the entire partition image 01:58 < gmaxwell> there is that eatmydata thing that could be used with tests. 01:59 <@wumpus> cool, didn't know about that one 02:02 < sipa> s/partition/filesystem 02:03 < sipa> i think? or is literally the disk block cache? 02:03 <@wumpus> yes, filesystem 02:04 <@wumpus> or not sure really 02:04 <@wumpus> it might as well be trying to sync the entire virtual disk to disk 02:06 < sipa> but syncing of a filesystem needs dependency information between sectors, or you may end up with an inonsistent state 02:06 <@wumpus> I suspect it's something like that at least: fsync() inside the VM has file granularity, but qemu calling fsync() has complete file system granularity 02:06 < sipa> so even if it's a disk level cache, it needs information from the filesystem to order the wrotes 02:07 <@wumpus> so not only the wallet is fsynced, but also all the other things the tests do such as writing tons of log files 02:07 <@wumpus> anyhow I'll try with the eatmydata and see if it resolves the slowdown 02:08 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 02:09 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 02:10 <@wumpus> yes! 02:11 <@wumpus> old computer: 3.73user 1.04system 0:39.09elapsed 12%CPU (0avgtext+0avgdata 61112maxresident)k 8inputs+9064outputs (0major+45873minor)pagefaults 0swaps 02:11 <@wumpus> new computer: 3.24user 0.78system 0:33.70elapsed 11%CPU (0avgtext+0avgdata 57832maxresident)k 0inputs+10472outputs (0major+108842minor)pagefaults 0swaps 02:12 <@wumpus> more than three times as fast as before 02:12 <@wumpus> wonder if this will help travis too 02:14 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-suxbfjmvxetqfcyy] has joined #bitcoin-core-dev 02:20 < bitcoin-git> [bitcoin] laanwj opened pull request #10220: Experiment: test: Disable fsync in travis tests (master...2017_04_tests_eatmydata) https://github.com/bitcoin/bitcoin/pull/10220 02:25 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 02:42 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 02:57 -!- Guest80673 [~user@94.2.198.226] has quit [Quit: Leaving] 02:57 -!- belcher [~user@2a02:c7d:b93f:2300:cc1b:b932:7a0a:b048] has joined #bitcoin-core-dev 02:58 -!- belcher [~user@2a02:c7d:b93f:2300:cc1b:b932:7a0a:b048] has quit [Changing host] 02:58 -!- belcher [~user@unaffiliated/belcher] has joined #bitcoin-core-dev 03:00 -!- To7 [~theo@cpe-158-222-192-214.nyc.res.rr.com] has quit [Quit: Whatever] 03:12 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has quit [Remote host closed the connection] 03:13 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has joined #bitcoin-core-dev 03:15 -!- tw2006 [~tw2006@c-24-91-234-215.hsd1.nh.comcast.net] has joined #bitcoin-core-dev 03:20 -!- tw2006 [~tw2006@c-24-91-234-215.hsd1.nh.comcast.net] has quit [Ping timeout: 240 seconds] 03:28 -!- belcher [~user@unaffiliated/belcher] has quit [Quit: Leaving] 03:54 -!- btcdrak [uid165369@gateway/web/irccloud.com/x-peqnnsmucjigodno] has quit [Quit: Connection closed for inactivity] 04:03 -!- btcdrak [uid165369@gateway/web/irccloud.com/x-eukgzwldmpboxsbw] has joined #bitcoin-core-dev 04:03 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Quit: :)] 04:18 <@wumpus> so apparently on travis, eatmydata gives a 2x gain (thanks for testing MarcoFalke), not as good as in my VM (I may have some misconfiguration) but still nice 04:19 < sipa> nice indeed! 04:21 -!- jannes [~jannes@095-097-246-234.static.chello.nl] has joined #bitcoin-core-dev 04:30 < SopaXorzTaker> offtopic PSA 04:30 < SopaXorzTaker> wumpus, sipa, the large bitcoin collider client script is untrustworthy 04:30 < SopaXorzTaker> refrain from running it until the author gives explanations 04:30 -!- laurentmt [~Thunderbi@176.158.157.202] has joined #bitcoin-core-dev 04:31 < sipa> don't worry, i had no intention of running it 04:33 -!- RubenSomsen [~RubenSoms@5ED2CA1D.cm-7-3d.dynamic.ziggo.nl] has quit [Ping timeout: 268 seconds] 04:34 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 04:35 < SopaXorzTaker> PSA on reddit: https://www.reddit.com/r/Bitcoin/comments/65uoaq/do_not_run_the_large_bitcoin_collider_client_its/ 04:35 < SopaXorzTaker> just FYI 04:38 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 04:43 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 04:52 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 04:52 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 04:55 -!- jtimon [~quassel@14.red-88-5-22.dynamicip.rima-tde.net] has joined #bitcoin-core-dev 04:58 < bitcoin-git> [bitcoin] sipa pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/f4db00f9a548...c5e9e428a919 04:58 < bitcoin-git> bitcoin/master 45f0961 Gregory Maxwell: Prevent integer overflow in ReadVarInt.... 04:58 < bitcoin-git> bitcoin/master c5e9e42 Pieter Wuille: Merge #9693: Prevent integer overflow in ReadVarInt.... 04:59 < bitcoin-git> [bitcoin] sipa closed pull request #9693: Prevent integer overflow in ReadVarInt. (master...varint_maxsize) https://github.com/bitcoin/bitcoin/pull/9693 05:00 -!- laurentmt [~Thunderbi@176.158.157.202] has quit [Ping timeout: 240 seconds] 05:04 -!- tw2006 [~tw2006@2601:187:8480:2770:41bb:5e81:412c:d0e6] has joined #bitcoin-core-dev 05:09 -!- tw2006 [~tw2006@2601:187:8480:2770:41bb:5e81:412c:d0e6] has quit [Ping timeout: 245 seconds] 05:16 < bitcoin-git> [bitcoin] sipa pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/c5e9e428a919...a077a90da88f 05:16 < bitcoin-git> bitcoin/master b2c9254 Matt Corallo: Check interruptNet during dnsseed lookups 05:16 < bitcoin-git> bitcoin/master a077a90 Pieter Wuille: Merge #10215: Check interruptNet during dnsseed lookups... 05:16 < bitcoin-git> [bitcoin] sipa closed pull request #10215: Check interruptNet during dnsseed lookups (master...2017-04-dnsseed-break) https://github.com/bitcoin/bitcoin/pull/10215 05:41 -!- laurentmt [~Thunderbi@176.158.157.202] has joined #bitcoin-core-dev 05:46 < bitcoin-git> [bitcoin] laanwj pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/a077a90da88f...2584925077f9 05:46 < bitcoin-git> bitcoin/master d89f8ad Matt Corallo: Make DisconnectBlock and ConnectBlock static in validation.cpp 05:46 < bitcoin-git> bitcoin/master 9fececb Matt Corallo: Remove CValidationInterface::UpdatedTransaction... 05:46 < bitcoin-git> bitcoin/master 2584925 Wladimir J. van der Laan: Merge #10178: Remove CValidationInterface::UpdatedTransaction... 05:47 < bitcoin-git> [bitcoin] laanwj closed pull request #10178: Remove CValidationInterface::UpdatedTransaction (master...2017-01-wallet-cache-inmempool-2) https://github.com/bitcoin/bitcoin/pull/10178 06:07 -!- dermoth [~thomas@dsl-66-36-144-121.mtl.aei.ca] has joined #bitcoin-core-dev 06:18 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 06:27 -!- tw2006 [~tw2006@2601:187:8480:2770:1d37:6081:c9b:ea37] has joined #bitcoin-core-dev 06:35 -!- cryptapus_afk is now known as cryptapus 06:39 <@wumpus> SopaXorzTaker: good sleuthing, but no, you don't have to be afraid I run random scripts from the internet on anything important, let alone bitcoin-related ones 06:39 -!- d9b4bef9 [~d9b4bef9@207.38.86.239] has quit [Remote host closed the connection] 06:40 -!- d9b4bef9 [~d9b4bef9@207.38.86.239] has joined #bitcoin-core-dev 06:50 < SopaXorzTaker> wumpus, yeah 06:50 < SopaXorzTaker> but this script actually does remote code execution 06:53 <@wumpus> the whole premise is a bit scammy; it reminds me of the trojans in the 90's whose control component had a trojan too. So everyone using the trojan to grief other people got owned themselves too... 06:55 < luke-jr> what is it even supposed to do? 06:55 <@wumpus> people running this script try to steal coins by generating random private keys. This is incredibly unlikely, and if it worked it'd be wrong in various ways 06:55 < luke-jr> lol 06:55 < luke-jr> bruteforcing privkeys is just ridiculous to attempt, but to do it with *Perl code*? lololol 06:56 < luke-jr> at face value, it's obvious the only purpose is to be a backdoor 06:56 < SopaXorzTaker> luke-jr, well 06:56 < SopaXorzTaker> it's actually done with an inner C program which is natively compiled by the script 06:57 < SopaXorzTaker> actually, the bruteforcing has some results 06:57 < sipa> and it seems to have OpenCL code too 06:57 < SopaXorzTaker> there were some addresses deliberately generated with weak PRNGs 06:59 -!- Cheeseo [~x@c-174-54-219-36.hsd1.pa.comcast.net] has joined #bitcoin-core-dev 06:59 -!- Cheeseo [~x@c-174-54-219-36.hsd1.pa.comcast.net] has quit [Changing host] 06:59 -!- Cheeseo [~x@unaffiliated/cheeseo] has joined #bitcoin-core-dev 07:01 <@wumpus> yes, if it mimimcs specific bad PRNGs (or bad brainwallets) instead of simply randomly generating keys it can certainly turn up something 07:03 < sipa> including things put there by the script's author :) 07:03 < SopaXorzTaker> wumpus, yes 07:03 < SopaXorzTaker> there is a so-called puzzle transaction 07:03 < SopaXorzTaker> with 32 BTC 07:03 < SopaXorzTaker> look it up 07:04 < SopaXorzTaker> each address uses a key one bit stronger than the previous one 07:04 < SopaXorzTaker> (there's 256 addresses) 07:04 < SopaXorzTaker> eg. 0000..0001 07:04 < SopaXorzTaker> 0000..0011 07:04 < SopaXorzTaker> 0000..0101 07:04 < SopaXorzTaker> 0000..1011 07:04 < SopaXorzTaker> and so on 07:06 <@wumpus> yes, for the author it could be very profitable, and no need to bruteforce at all, just stealing all the wallets of people running this 07:08 <@wumpus> in a way it's the classical con, make people believe something that's too good to be true 07:18 < bitcoin-git> [bitcoin] TheBlueMatt opened pull request #10221: Stop treating coinbase outputs differently in GUI: show them at 1conf (master...2017-04-no-coinbase-display-lag) https://github.com/bitcoin/bitcoin/pull/10221 07:24 -!- To7 [~theo@cpe-158-222-192-214.nyc.res.rr.com] has joined #bitcoin-core-dev 08:08 -!- btcdrak [uid165369@gateway/web/irccloud.com/x-eukgzwldmpboxsbw] has quit [] 08:11 -!- btcdrak [uid224343@gateway/web/irccloud.com/x-ehdwktpgehhzjdpw] has joined #bitcoin-core-dev 08:21 -!- altoz [183736ba@gateway/web/freenode/ip.24.55.54.186] has joined #bitcoin-core-dev 08:22 -!- altoz [183736ba@gateway/web/freenode/ip.24.55.54.186] has left #bitcoin-core-dev [] 08:23 -!- altoz [~Jimmy@cpe-24-55-54-186.austin.res.rr.com] has joined #bitcoin-core-dev 08:26 -!- tw2006 [~tw2006@2601:187:8480:2770:1d37:6081:c9b:ea37] has quit [Remote host closed the connection] 08:28 -!- tw2006 [~tw2006@2601:187:8480:2770:5015:15bc:e829:9b3b] has joined #bitcoin-core-dev 08:33 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Read error: Connection reset by peer] 08:33 -!- tw2006 [~tw2006@2601:187:8480:2770:5015:15bc:e829:9b3b] has quit [Ping timeout: 260 seconds] 08:35 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 08:35 -!- str4d [~str4d@27.110.123.91] has joined #bitcoin-core-dev 08:40 -!- str4d [~str4d@27.110.123.91] has quit [Ping timeout: 240 seconds] 08:46 -!- abpa [~abpa@96-82-80-28-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 08:48 -!- cryptapus is now known as cryptapus_afk 09:13 < morcos> I'm happy enough to just exclude in all my bitcoin.conf files, but just want to see if everyone else is ok with the leveldb log spam... it prints a lot of useless messages right at startup (where everythign else you care about is printed) 09:17 < morcos> I'm not sure exactly what information we're expecting from the leveldb logging, so maybe there is a better solution that concentrates on that infomration or at least cleanly aggregating at startup.. it's not really clear to me how to make much use of what it does log 09:20 < sipa> only when you enable the relevant debug category? 09:20 < morcos> sipa: i assume, but my habit is to always enable all 09:22 -!- Giszmo [~leo@pc-240-13-215-201.cm.vtr.net] has quit [Quit: Leaving.] 09:22 -!- Giszmo [~leo@pc-240-13-215-201.cm.vtr.net] has joined #bitcoin-core-dev 09:29 -!- chjj [~chjj@unaffiliated/chjj] has quit [Ping timeout: 260 seconds] 09:29 -!- tw2006 [~tw2006@2601:187:8480:2770:3d20:27a4:97a7:bfe8] has joined #bitcoin-core-dev 09:34 -!- tw2006 [~tw2006@2601:187:8480:2770:3d20:27a4:97a7:bfe8] has quit [Ping timeout: 258 seconds] 09:37 <@wumpus> the more debugging is added, the less useful it becomes to run with debug=all 09:37 -!- mol [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 09:38 <@wumpus> though I'm fine with a debug=alllowvolume or such if you want to add that, which excludes at least leveldb and libevent 09:40 -!- moli_ [~molly@unaffiliated/molly] has quit [Ping timeout: 260 seconds] 09:40 <@wumpus> but usually the recommedation is to add debug categories only when troubleshooting a certain subsystem; this became even easier with the RPC call to turn on/off individual debug flags 09:41 -!- belcher [~user@2a02:c7d:b93f:2300:847a:c72c:7994:e0b5] has joined #bitcoin-core-dev 09:41 -!- belcher [~user@2a02:c7d:b93f:2300:847a:c72c:7994:e0b5] has quit [Changing host] 09:41 -!- belcher [~user@unaffiliated/belcher] has joined #bitcoin-core-dev 09:42 -!- chjj [~chjj@unaffiliated/chjj] has joined #bitcoin-core-dev 09:51 -!- xiangfu [~xiangfu@223.223.187.142] has quit [Ping timeout: 268 seconds] 09:51 -!- fengling [~fengling@223.223.187.142] has quit [Ping timeout: 252 seconds] 10:13 -!- laurentmt [~Thunderbi@176.158.157.202] has quit [Read error: Connection reset by peer] 10:20 -!- laurentmt [~Thunderbi@176.158.157.202] has joined #bitcoin-core-dev 10:21 < jtimon> is there any advantage to Q_FOREACH over c++11 foreach? 10:25 <@wumpus> no 10:26 <@wumpus> fairly sure c++11 foreach will work with qt objects too 10:26 -!- d9b4bef9 [~d9b4bef9@207.38.86.239] has quit [Remote host closed the connection] 10:27 -!- d9b4bef9 [~d9b4bef9@207.38.86.239] has joined #bitcoin-core-dev 10:28 -!- d9b4bef9 [~d9b4bef9@207.38.86.239] has quit [Remote host closed the connection] 10:29 -!- d9b4bef9 [~d9b4bef9@207.38.86.239] has joined #bitcoin-core-dev 10:36 < jtimon> wumpus: it seems performance can be worse in some cases: https://www.dvratil.cz/2015/06/qt-containers-and-c11-range-based-loops/ 10:37 < jtimon> I mean, not in a way that it can't be solved 10:40 -!- arubi [~ese168@gateway/tor-sasl/ese168] has quit [Remote host closed the connection] 10:40 -!- arubi_ [~ese168@gateway/tor-sasl/ese168] has joined #bitcoin-core-dev 10:43 < sipa> hmm, seems to be about some specifics with Qt containers 10:46 -!- xiangfu [~xiangfu@223.223.187.142] has joined #bitcoin-core-dev 10:50 -!- fengling [~fengling@223.223.187.142] has joined #bitcoin-core-dev 11:03 < jtimon> the reason I ask is because I was trying to remove PAIRTYPE and it seems Q_FOREACH requires it too, I'm not completely sure though, I'm compiling removing Q_FOREACH first and then I'll try again without removing Q_FOREACH in case we prefer to keep it, but only -j4 since I'm on the laptop... 11:16 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has joined #bitcoin-core-dev 11:17 < bitcoin-git> [bitcoin] jnewbery opened pull request #10222: [tests] test_runner - check unicode (master...test_runner_check_unicode) https://github.com/bitcoin/bitcoin/pull/10222 11:18 -!- tw2006 [~tw2006@c-24-91-234-215.hsd1.nh.comcast.net] has joined #bitcoin-core-dev 11:23 -!- tw2006 [~tw2006@c-24-91-234-215.hsd1.nh.comcast.net] has quit [Ping timeout: 260 seconds] 11:46 -!- d_t [~textual@108-65-78-188.lightspeed.sntcca.sbcglobal.net] has joined #bitcoin-core-dev 11:49 -!- arubi_ is now known as arubi 11:50 -!- molz_ [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 11:53 -!- mol [~molly@unaffiliated/molly] has quit [Ping timeout: 260 seconds] 12:20 -!- belcher [~user@unaffiliated/belcher] has quit [Quit: Leaving] 12:20 -!- talmai [~T@c-24-147-97-55.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 12:50 -!- Dyaheon [~Dya@a91-156-192-24.elisa-laajakaista.fi] has quit [Ping timeout: 240 seconds] 12:52 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has quit [Quit: Leaving] 12:53 -!- jnewbery [~Thunderbi@static-100-38-11-146.nycmny.fios.verizon.net] has quit [Ping timeout: 252 seconds] 12:57 < bitcoin-git> [bitcoin] MarcoFalke pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/2584925077f9...6ce733747e16 12:57 < bitcoin-git> bitcoin/master a97ed80 John Newbery: [tests] test_runner - check unicode 12:57 < bitcoin-git> bitcoin/master 6ce7337 MarcoFalke: Merge #10222: [tests] test_runner - check unicode... 12:57 < bitcoin-git> [bitcoin] MarcoFalke closed pull request #10222: [tests] test_runner - check unicode (master...test_runner_check_unicode) https://github.com/bitcoin/bitcoin/pull/10222 13:02 -!- jtimon [~quassel@14.red-88-5-22.dynamicip.rima-tde.net] has quit [Ping timeout: 260 seconds] 13:02 -!- NewLiberty_ is now known as NewLiberty 13:07 < BlueMatt> sipa: hey 13:07 -!- tw2006 [~tw2006@2601:187:8480:2770:f80b:8dae:32c5:f537] has joined #bitcoin-core-dev 13:11 -!- tw2006 [~tw2006@2601:187:8480:2770:f80b:8dae:32c5:f537] has quit [Ping timeout: 245 seconds] 13:12 < BlueMatt> re: #10148's Clear() in ApplyTxInUndo: hmm, you may be right, anyway, dear god this is not trivial to reason about :/ 13:12 < gribble> https://github.com/bitcoin/bitcoin/issues/10148 | Use non-atomic flushing with block replay by sipa · Pull Request #10148 · bitcoin/bitcoin · GitHub 13:13 < bitcoin-git> [bitcoin] MarcoFalke pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/6ce733747e16...50a1cc0f0aef 13:13 < bitcoin-git> bitcoin/master c9e31c3 Warren Togami: Clarify importprivkey help text with example of blank label without rescan... 13:13 < bitcoin-git> bitcoin/master 50a1cc0 MarcoFalke: Merge #10207: Clarify importprivkey help text ... example of blank label without rescan... 13:14 < bitcoin-git> [bitcoin] MarcoFalke closed pull request #10207: Clarify importprivkey help text ... example of blank label without rescan (master...importprivkey) https://github.com/bitcoin/bitcoin/pull/10207 13:20 < bitcoin-git> [bitcoin] MarcoFalke pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/50a1cc0f0aef...d86bb075bf6d 13:20 < bitcoin-git> bitcoin/master c85b080 John Newbery: [test] add warnings to test_runner 13:20 < bitcoin-git> bitcoin/master 08e51c1 John Newbery: [tests] Remove cache directory by default when running test_runner 13:20 < bitcoin-git> bitcoin/master d86bb07 MarcoFalke: Merge #10197: [tests] Functional test warnings... 13:20 < bitcoin-git> [bitcoin] MarcoFalke closed pull request #10197: [tests] Functional test warnings (master...functional_test_warnings) https://github.com/bitcoin/bitcoin/pull/10197 13:23 -!- rockhouse [~rockhouse@unaffiliated/rockhouse] has quit [Ping timeout: 240 seconds] 13:24 -!- jnewbery [~Thunderbi@static-100-38-11-146.nycmny.fios.verizon.net] has joined #bitcoin-core-dev 13:28 < sipa> BlueMatt: i'm going to add a WIP to the title, i'm not confortable with merging until there are more substantial tests 13:29 < BlueMatt> yea, I was starting to feel the same way....I mean alternatively we could drop the multi-head support and only support single-action (ie a series of connects/disconnects) between full flushes, which would simplify things and go back to a bit more how it was until you rewrote a bunch 13:29 < BlueMatt> sipa: ^ 13:32 < sipa> BlueMatt: i think it is fine to only test the single-head case for now 13:33 < sipa> at worst, the result is not backward compatible omce we need muktihead 13:33 < sipa> *multi once 13:33 < BlueMatt> sipa: well my point was just the implementation of the multi-head-handling case is complicated enough that it adds a ton of review burden 13:33 < BlueMatt> esp pre-utxo-db-format-change 13:34 < BlueMatt> may be easier to just do it single-head-only, then do utxo-db, then change to multi-head...if we break compat there its ok 13:34 < sipa> the multihead code and pertxout are orthogonal, i think 13:34 -!- chjj [~chjj@unaffiliated/chjj] has quit [Ping timeout: 240 seconds] 13:35 < BlueMatt> i havent dug too much into pertxout yet, but shouldnt it simplify things, or is there still a concept of per-tx CCoins everywhere above the db? 13:36 < BlueMatt> my assumption was the review for this would be much simpler if you dont have to think about making sure entire transaction objects are correct, instead of there just being add/remove-outputs 13:36 < BlueMatt> at least i found it much easier to review prior to the latest changes, even ignoring the handle-disconnect stuff 13:36 < gmaxwell> I think they turn out to be pretty much orthorgonal. 13:37 < gmaxwell> okay thats a point. 13:43 -!- laurentmt1 [~Thunderbi@176.158.157.202] has joined #bitcoin-core-dev 13:43 < sipa> BlueMatt: the Clean call is indeed a possible violation of that orthogonality... 13:44 < BlueMatt> that was my primary example, indeed 13:44 -!- laurentmt [~Thunderbi@176.158.157.202] has quit [Ping timeout: 260 seconds] 13:44 -!- laurentmt1 is now known as laurentmt 13:44 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 13:45 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 13:46 < sipa> i don't think there are any others, but it is a fair point that pertxout is breaking backward xcompatibility already, so perhaps attempting to already support multihead isn't actually worth it 13:46 < sipa> but i think the complexity is mostly in testing 13:46 < sipa> the difference in implementation between multihead and single head is just that loop and building of a set 13:47 < BlueMatt> ok, i found the building of a set hard to reason about :p 13:47 < sipa> fair enough, but you can reason about the cases that are relevant for single head? 13:47 -!- belcher [~user@2a02:c7d:b93f:2300:3c25:650e:3117:4490] has joined #bitcoin-core-dev 13:47 -!- belcher [~user@2a02:c7d:b93f:2300:3c25:650e:3117:4490] has quit [Changing host] 13:47 -!- belcher [~user@unaffiliated/belcher] has joined #bitcoin-core-dev 13:48 < BlueMatt> probably? dunno, i was more tired today than previous days, so there may also be a skew there :p 13:49 -!- chjj [~chjj@unaffiliated/chjj] has joined #bitcoin-core-dev 13:49 < sipa> well, maybe it is best to explain the full algorithm and reasoning why it is correct in text in comments 13:50 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 13:53 -!- talmai [~T@c-24-147-97-55.hsd1.ma.comcast.net] has quit [Quit: mining] 14:06 -!- talmai [~T@c-24-147-97-55.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 14:07 -!- chjj [~chjj@unaffiliated/chjj] has quit [Ping timeout: 240 seconds] 14:21 -!- chjj [~chjj@unaffiliated/chjj] has joined #bitcoin-core-dev 14:36 -!- Dyaheon [~Dya@a91-156-192-24.elisa-laajakaista.fi] has joined #bitcoin-core-dev 14:52 -!- talmai [~T@c-24-147-97-55.hsd1.ma.comcast.net] has quit [Quit: mining] 14:56 -!- tw2006 [~tw2006@2601:187:8480:2770:69ac:9656:c532:be4e] has joined #bitcoin-core-dev 15:00 -!- tw2006 [~tw2006@2601:187:8480:2770:69ac:9656:c532:be4e] has quit [Ping timeout: 258 seconds] 15:08 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 15:14 -!- Giszmo [~leo@pc-240-13-215-201.cm.vtr.net] has quit [Quit: Leaving.] 15:15 -!- Giszmo [~leo@pc-240-13-215-201.cm.vtr.net] has joined #bitcoin-core-dev 15:21 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 15:23 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 15:27 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 240 seconds] 15:30 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 15:31 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 15:33 -!- jannes [~jannes@095-097-246-234.static.chello.nl] has quit [Quit: Leaving] 15:43 -!- vicenteH [~user@135.234.15.37.dynamic.jazztel.es] has quit [Ping timeout: 240 seconds] 16:02 -!- root-servers_ [~root-serv@203.87.133.229] has joined #bitcoin-core-dev 16:19 -!- chjj [~chjj@unaffiliated/chjj] has quit [Ping timeout: 240 seconds] 16:24 -!- Dyaheon [~Dya@a91-156-192-24.elisa-laajakaista.fi] has quit [Ping timeout: 252 seconds] 16:33 -!- chjj [~chjj@unaffiliated/chjj] has joined #bitcoin-core-dev 16:34 -!- root-servers_ [~root-serv@203.87.133.229] has quit [Ping timeout: 260 seconds] 16:37 -!- d_t [~textual@108-65-78-188.lightspeed.sntcca.sbcglobal.net] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 16:45 -!- tw2006 [~tw2006@2601:187:8480:2770:5527:a020:d183:7764] has joined #bitcoin-core-dev 16:49 -!- tw2006 [~tw2006@2601:187:8480:2770:5527:a020:d183:7764] has quit [Ping timeout: 255 seconds] 16:50 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 16:59 -!- abpa [~abpa@96-82-80-28-static.hfc.comcastbusiness.net] has quit [Quit: Textual IRC Client: www.textualapp.com] 17:16 -!- Guest84617 [~caturday@li516-121.members.linode.com] has joined #bitcoin-core-dev 17:19 -!- chjj [~chjj@unaffiliated/chjj] has quit [Ping timeout: 252 seconds] 17:21 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 17:21 -!- laurentmt [~Thunderbi@176.158.157.202] has quit [Quit: laurentmt] 17:24 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 17:27 < bitcoin-git> [bitcoin] jimmysong opened pull request #10223: Tests: Refactor to create witness script creation function (master...refactor_blocktools_for_segwit) https://github.com/bitcoin/bitcoin/pull/10223 17:28 -!- Dyaheon [Dyaheon@a91-156-192-24.elisa-laajakaista.fi] has joined #bitcoin-core-dev 17:30 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-suxbfjmvxetqfcyy] has quit [Quit: Connection closed for inactivity] 17:32 -!- chjj [~chjj@unaffiliated/chjj] has joined #bitcoin-core-dev 17:33 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 245 seconds] 17:37 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 17:39 -!- d_t [~textual@108-65-78-188.lightspeed.sntcca.sbcglobal.net] has joined #bitcoin-core-dev 17:43 -!- Guest84617 [~caturday@li516-121.members.linode.com] has quit [K-Lined] 17:52 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 260 seconds] 17:54 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 18:06 -!- goksinen [~goksinen@cpe-74-71-4-175.nyc.res.rr.com] has joined #bitcoin-core-dev 18:07 -!- goksinen [~goksinen@cpe-74-71-4-175.nyc.res.rr.com] has quit [Read error: Connection reset by peer] 18:08 -!- goksinen [~goksinen@cpe-74-71-4-175.nyc.res.rr.com] has joined #bitcoin-core-dev 18:08 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 18:12 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 18:18 -!- chjj [~chjj@unaffiliated/chjj] has quit [Ping timeout: 240 seconds] 18:24 -!- talmai [~T@c-24-147-97-55.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 18:26 -!- goksinen [~goksinen@cpe-74-71-4-175.nyc.res.rr.com] has quit [Read error: Connection reset by peer] 18:26 -!- goksinen [~goksinen@2604:2000:c591:8400:416d:780e:e14e:6284] has joined #bitcoin-core-dev 18:32 -!- chjj [~chjj@unaffiliated/chjj] has joined #bitcoin-core-dev 18:34 -!- tw2006 [~tw2006@2601:187:8480:2770:b076:4244:dfb6:58bd] has joined #bitcoin-core-dev 18:34 -!- talmai [~T@c-24-147-97-55.hsd1.ma.comcast.net] has quit [Quit: mining] 18:38 -!- tw2006 [~tw2006@2601:187:8480:2770:b076:4244:dfb6:58bd] has quit [Ping timeout: 240 seconds] 18:47 < bitcoin-git> [bitcoin] jimmysong opened pull request #10224: Tests: Add simple test for getaddednodeinfo (master...test_getaddednodeinfo) https://github.com/bitcoin/bitcoin/pull/10224 18:54 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 18:56 -!- d_t [~textual@108-65-78-188.lightspeed.sntcca.sbcglobal.net] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 18:56 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 18:57 -!- belcher [~user@unaffiliated/belcher] has quit [Quit: Leaving] 19:03 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 19:05 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 19:14 -!- e4xit [~textual@cpc1-cmbg20-2-0-cust188.5-4.cable.virginm.net] has quit [Ping timeout: 258 seconds] 19:14 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 260 seconds] 19:19 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 19:21 -!- talmai [~T@c-24-147-97-55.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 19:27 -!- ensign [~ensign@2001:41d0:8:d711::1] has quit [Ping timeout: 255 seconds] 19:27 -!- nsh [~lol@wikipedia/nsh] has quit [Ping timeout: 255 seconds] 19:31 < midnightmagic> sipa: What does the green spike represent here in your graph? http://bitcoin.sipa.be/ver9-50k.png 19:32 < achow101> midnightmagic: that's csv signalling 19:33 < midnightmagic> achow101: Thanks. I'm colourblind. I thought the blue line next to the first 144 block average was green. 19:33 -!- ensign [~ensign@2001:41d0:8:d711::1] has joined #bitcoin-core-dev 19:34 -!- nsh [~lol@wikipedia/nsh] has joined #bitcoin-core-dev 19:36 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 19:45 -!- dermoth_ [~thomas@dsl-216-221-55-119.mtl.contact.net] has joined #bitcoin-core-dev 19:45 -!- dermoth [~thomas@dsl-66-36-144-121.mtl.aei.ca] has quit [Disconnected by services] 19:45 -!- dermoth_ is now known as dermoth 20:16 -!- baldur [~baldur@pool-100-2-139-91.nycmny.fios.verizon.net] has joined #bitcoin-core-dev 20:21 -!- baldur [~baldur@pool-100-2-139-91.nycmny.fios.verizon.net] has quit [Ping timeout: 268 seconds] 20:23 -!- tw2006 [~tw2006@2601:187:8480:2770:907e:21a4:d610:948e] has joined #bitcoin-core-dev 20:27 -!- tw2006 [~tw2006@2601:187:8480:2770:907e:21a4:d610:948e] has quit [Ping timeout: 255 seconds] 20:32 -!- str4d [~str4d@27.110.123.91] has joined #bitcoin-core-dev 20:42 -!- str4d [~str4d@27.110.123.91] has quit [Ping timeout: 240 seconds] 21:15 < NicolasDorier> sipa: https://github.com/bitcoin/bitcoin/pull/10195 is really too hard to review for me. I think an easier approach for review, would be to make a first PR which only change CCoinView class while making no change to the underlying storage. Then a second PR dealing with the storage change/optimization. 21:17 < NicolasDorier> by "change to CCoinView" I mean only the method signatures to be per txout 21:18 < NicolasDorier> without changing any underlying storage 21:23 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 21:26 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has joined #bitcoin-core-dev 21:27 -!- goksinen [~goksinen@2604:2000:c591:8400:416d:780e:e14e:6284] has quit [Remote host closed the connection] 21:28 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 255 seconds] 21:36 -!- baldur [~baldur@pool-100-2-139-91.nycmny.fios.verizon.net] has joined #bitcoin-core-dev 22:04 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 22:09 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 260 seconds] 22:11 -!- tw2006 [~tw2006@2601:187:8480:2770:f8b2:b2b3:c29a:101f] has joined #bitcoin-core-dev 22:13 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 22:16 -!- tw2006 [~tw2006@2601:187:8480:2770:f8b2:b2b3:c29a:101f] has quit [Ping timeout: 255 seconds] 22:19 < sipa> NicolasDorier: there is no easy way first do one without the other, but i'll try 22:20 < sipa> NicolasDorier: and signatures have nothing to do with it 22:20 < NicolasDorier> I said method signature 22:20 < NicolasDorier> ie like GetCoins() is per Outpoint instead of uint256 22:21 < sipa> also, please review #10408 first 22:21 < gribble> https://github.com/bitcoin/bitcoin/issues/10408 | HTTP Error 404: Not Found 22:21 < sipa> ah yes, my apologies! 22:22 < NicolasDorier> you were in the wrong namespace => using OOP; :D 22:22 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 255 seconds] 22:22 < NicolasDorier> mmh 10408 does not exist 22:22 < NicolasDorier> ha 22:22 < NicolasDorier> https://github.com/bitcoin/bitcoin/pull/10148 you mean ? 22:26 < sipa> yes indeed 22:26 < sipa> sorry, i just woke up 22:27 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has quit [Read error: Connection reset by peer] 22:27 -!- pavel_ [~paveljani@79.98.72.176] has joined #bitcoin-core-dev 22:27 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 22:27 -!- pavel_ [~paveljani@79.98.72.176] has quit [Client Quit] 22:30 < NicolasDorier> sipa: I will try myself to just change CCoinView signature 22:30 < NicolasDorier> method signatures 22:30 < NicolasDorier> will make a PR if it is usable and indeed easier to review 22:31 < NicolasDorier> will try that today after reviewing https://github.com/bitcoin/bitcoin/pull/10148 22:31 < sipa> NicolasDorier: that's very nontrivial 22:31 < sipa> you'd need a translation layer with ths database 22:32 < sipa> if you create one, i'll happily include, though? 22:32 < sipa> s/?/!/ 22:32 < NicolasDorier> ok I will try 22:33 < sipa> it may be easier to do the opposite; first change the db and then CCoinsView 22:35 < sipa> because all that needs is a loop at read or write time to merge the db records/split ccoims 22:36 < NicolasDorier> Not really related to the PR but tricky: https://github.com/bitcoin/bitcoin/blob/2584925077f9658b3953ad931b74779006e59807/src/validation.cpp#L1591 . fClean is passed either as pointer or return value. If pointer is used, return value is useless. 22:38 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 22:38 < sipa> no, the return value still indicates disk corruption 22:39 < sipa> pfClean is only for database inconsistencies 22:39 < sipa> i'll add a comment to explain 22:41 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 22:42 < sipa> but thank you very much for having a look at these PRs 22:42 < sipa> i know they're pretty invasive 22:48 -!- RubenSomsen [~RubenSoms@5ED2CA1D.cm-7-3d.dynamic.ziggo.nl] has joined #bitcoin-core-dev 22:50 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 23:05 < bitcoin-git> [bitcoin] laanwj pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/d86bb075bf6d...393160cf6cda 23:05 < bitcoin-git> bitcoin/master 75a08e7 Kalle Alm: [wallet] Add support for aborting wallet transaction rescans. 23:05 < bitcoin-git> bitcoin/master 9141622 Kalle Alm: [rpc] Add abortrescan command to RPC interface. 23:05 < bitcoin-git> bitcoin/master 393160c Wladimir J. van der Laan: Merge #10208: [wallet] Rescan abortability... 23:06 < bitcoin-git> [bitcoin] laanwj closed pull request #10208: [wallet] Rescan abortability (master...rescan-abortability) https://github.com/bitcoin/bitcoin/pull/10208 23:25 < bitcoin-git> [bitcoin] laanwj pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/393160cf6cda...a86255b11633 23:25 < bitcoin-git> bitcoin/master 846dc17 Kalle Alm: [doc] Wording fixes in CONTRIBUTING.md. 23:25 < bitcoin-git> bitcoin/master 3ddd227 Kalle Alm: [doc] Add blob about finding reviewers. 23:25 < bitcoin-git> bitcoin/master a86255b Wladimir J. van der Laan: Merge #10211: [doc] Contributor fixes & new "finding reviewers" section... 23:26 < bitcoin-git> [bitcoin] laanwj closed pull request #10211: [doc] Contributor fixes & new "finding reviewers" section (master...contributor-finding-reviewers) https://github.com/bitcoin/bitcoin/pull/10211 23:29 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 23:29 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-kmfgljuzihlqjzvg] has joined #bitcoin-core-dev 23:29 -!- d9b4bef9 [~d9b4bef9@207.38.86.239] has quit [Remote host closed the connection] 23:30 -!- d9b4bef9 [~d9b4bef9@207.38.86.239] has joined #bitcoin-core-dev 23:33 -!- Giszmo [~leo@pc-240-13-215-201.cm.vtr.net] has quit [Quit: Leaving.] 23:34 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 255 seconds] 23:40 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 23:49 < sipa> wumpus: not sure if you know this, but you can run with -reindex, make it process a couple block files, and then abort and restart with -reindex-chainstate 23:49 < sipa> that will just make it fully process those couple files 23:49 <@wumpus> didn't know that, thanks 23:50 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 23:51 -!- talmai [~T@c-24-147-97-55.hsd1.ma.comcast.net] has quit [Quit: mining] 23:55 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev