--- Day changed Fri Sep 02 2016 00:03 -!- kyletorpey [~kyle@pool-173-53-94-96.rcmdva.fios.verizon.net] has quit [Ping timeout: 260 seconds] 00:10 -!- gabridome1 [~gabridome@5.90.33.44] has quit [Quit: gabridome1] 00:11 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 00:12 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-core-dev 00:15 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 00:20 -!- pmienk [~pmienk@c-71-227-177-179.hsd1.wa.comcast.net] has quit [Ping timeout: 244 seconds] 00:22 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has joined #bitcoin-core-dev 00:32 -!- pmienk [~pmienk@c-71-227-177-179.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 00:37 -!- pmienk [~pmienk@c-71-227-177-179.hsd1.wa.comcast.net] has quit [Ping timeout: 255 seconds] 00:37 -!- BashCo_ [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 00:41 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Ping timeout: 265 seconds] 00:41 -!- laurentmt [~Thunderbi@80.215.234.167] has joined #bitcoin-core-dev 00:44 < jonasschnelli> Hmm... IBDing from a local peer (same host) seems to take much longer the bootstraping from random peers. 00:46 < gmaxwell> early in the sync it fetches to few a number of blocks at a time, so fetching from a single peer is slow. hardly matters overall. 00:46 < gmaxwell> other than that, they'll obviously contend a bit for IO 00:46 < gmaxwell> I'm not aware of any other reasons for slowdowns other than that. 00:47 < paveljanik> jonasschnelli, OS X< 00:47 < paveljanik> ? 00:48 < jonasschnelli> paveljanik: no debian on my Intel(R) Xeon(R) CPU E3-1275 v5 @ 3.60GHz 00:48 < paveljanik> I had the same issue on OS X in the past. unplugging the network cable, turning off firewall helped 8) 00:48 < gmaxwell> are you only looking at the first 150k blocks? or are you seeing the rate per block slower later? 00:48 < paveljanik> the process named powerd took 100% of CPU power 00:49 < jonasschnelli> gmaxwell: It took more then 1h for progress=0.035480 00:49 < jonasschnelli> (where is did sync with random peers up to progress 1.0 in ~3h [2 month ago though]) 00:49 -!- pmienk [~pmienk@c-71-227-177-179.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 00:50 < gmaxwell> better to look at time vs height, e.g. grab a chunk of 100 blocks wherever it is and comare the blocks per second at that height with the same height in your prior logs. 00:50 < jonasschnelli> Also... my extremely scientific measure of how fast the tail -f output scrolls though.... did tell me its slower 00:51 < jonasschnelli> I guess i let it sync up to h400'000 and then compare it against a sync from random peers 00:51 -!- laurentmt [~Thunderbi@80.215.234.167] has quit [Quit: laurentmt] 00:52 < jonasschnelli> The only differences are: -prune=550 and connecting to a node thats running on the same machine (in sync, should not cause a huge slowdown) 00:52 * jonasschnelli needs to write a IBD benchmark tool 00:53 < gmaxwell> prune might make it slower. 00:53 < jonasschnelli> the prune data eviction seems pretty fast 00:53 < gmaxwell> after all it's writing things to only delete it after. 00:53 < jonasschnelli> it's running on a 1GB/s SSD 00:55 < gmaxwell> I doubt anyone has benmarked prune vs not, if you told me that it was doing some linear scan of all the blocks to decide what to prune, every block-- and was thus massively slower, I wouldn't not be too surprised. 00:57 < GitHub55> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/91990ee01dab...6f939c9080a3 00:57 < GitHub55> bitcoin/master cdd79eb Jorge Timón: C++11: s/boost::scoped_ptr/std::unique_ptr/ 00:57 < GitHub55> bitcoin/master 6f939c9 Wladimir J. van der Laan: Merge #8629: C++11: s/boost::scoped_ptr/std::unique_ptr/... 00:57 * jonasschnelli is trying again without prune 00:57 < GitHub51> [bitcoin] laanwj closed pull request #8629: C++11: s/boost::scoped_ptr/std::unique_ptr/ (master...0.13-boost-scoped-ptr) https://github.com/bitcoin/bitcoin/pull/8629 01:00 < sipa> pruning causes flushing 01:01 < gmaxwell> oh obviously, it needs to make sure that after a restart it can continue, so it hast to at least be consistent to the point where it pruned. 01:07 -!- AaronvanW [~ewout@80.174.233.149.dyn.user.ono.com] has joined #bitcoin-core-dev 01:07 -!- AaronvanW [~ewout@80.174.233.149.dyn.user.ono.com] has quit [Changing host] 01:07 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 01:10 < jonasschnelli> What is the reason for the txn_count=0x00 in the headers p2p message? 01:11 -!- fengling [~fengling@58.135.95.136] has joined #bitcoin-core-dev 01:13 < sipa> because CBlockHeader did not originally exist 01:13 < sipa> and headers messages just contained a CBlock with 0 transactions 01:13 < jonasschnelli> thanks. 01:20 < jeremyrubin> Is it correct that the maximum number of items deleted from sigcache while checking a block is max sigops? 01:20 < sipa> i believe so 01:21 < jeremyrubin> And is that "MAX_BLOCK_SIGOPS_COST" or is that something else 01:22 < jeremyrubin> because I see a 20k number floating around too 01:22 < jeremyrubin> but MAX_BLOCK_SIGOPS_COST=80k 01:22 < sipa> yes, 4x factor from segwit 01:22 < sipa> sigops in non-witness part count as 4, in witness part they count as 1 01:23 < jeremyrubin> so if you have 0 sigops in witness, you can have the full 80k? 01:24 < sipa> if you have 0 sigops in non-witness 01:24 < sipa> yes 01:24 < jeremyrubin> ok cool 01:24 < sipa> pre segwit the max is 20k 01:24 < sipa> post segwit it is 80k 01:39 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 01:40 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-core-dev 01:40 -!- JackH [~Jack@79-73-189-132.dynamic.dsl.as9105.com] has quit [Quit: Leaving] 01:58 < jonasschnelli> with disabled pruning it took also >1h for progress=0.031407... now trying a sync from random peers 02:00 < gmaxwell> you're killin me with the testing with just the first 3%. 02:00 < jonasschnelli> gmaxwell: heh. You think comparing the first 3% does not make sense? 02:01 < jonasschnelli> I just try to not waste time. :) 02:01 < gmaxwell> it's very unrepresentative, as I explaned earlier. We only fetch 16 blocks per peer at a time ... early in the chain this is far too few to keep the system well pipelined, because the blocks take no work to process. :) 02:02 < jonasschnelli> gmaxwell: Okay. I see. But anyways, a sync with a single local peer will then take always longer, right? 02:03 < gmaxwell> yes, somewhat. the difference will only be in the initial part of the chain, but go away later-- at least, whatever issue was due to that. 02:04 < gmaxwell> it's like the 0.13 vs 0.12 reindex, the 0.13 reindex spends 20 minutes at the front reading headers. So it starts off 20 minutes behind, it still finishes earlier. 02:04 < gmaxwell> but if you were to compare reintext for 0.13 vs 0.12 for the first 3% you would likely find 0.13 was much slower. :) 02:11 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 02:16 -!- AaronvanW [~ewout@80.174.233.149.dyn.user.ono.com] has joined #bitcoin-core-dev 02:16 -!- AaronvanW [~ewout@80.174.233.149.dyn.user.ono.com] has quit [Changing host] 02:16 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 02:33 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has joined #bitcoin-core-dev 02:36 -!- murch [~murch@p4FE3BA54.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 02:38 -!- jtimon [~quassel@38.110.132.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 02:44 < GitHub197> [bitcoin] sipa opened pull request #8651: Predeclare PrecomputedTransactionData as struct (master...classtructblah) https://github.com/bitcoin/bitcoin/pull/8651 02:48 < GitHub77> [bitcoin] yurizhykin opened pull request #8652: [qa]: remove root test directory for RPC tests (master...cleanup) https://github.com/bitcoin/bitcoin/pull/8652 02:52 -!- fengling [~fengling@58.135.95.136] has quit [Ping timeout: 240 seconds] 03:04 -!- fengling [~fengling@58.135.95.136] has joined #bitcoin-core-dev 03:19 -!- jannes [~jannes@178.132.211.90] has joined #bitcoin-core-dev 03:26 < GitHub76> [bitcoin] laanwj pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/6f939c9080a3...381d0ddc8aaa 03:26 < GitHub76> bitcoin/master cce3024 Pavel Janík: Do not shadow local variable, cleanup 03:26 < GitHub76> bitcoin/master a159f25 Pavel Janík: Remove redundand (and shadowing) declaration 03:26 < GitHub76> bitcoin/master 381d0dd Wladimir J. van der Laan: Merge #8449: [Trivial] Do not shadow local variable, cleanup... 03:26 < GitHub190> [bitcoin] laanwj closed pull request #8449: [Trivial] Do not shadow local variable, cleanup (master...20160803_shadow_blockencodings) https://github.com/bitcoin/bitcoin/pull/8449 03:30 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 03:31 -!- BashCo_ [~BashCo@unaffiliated/bashco] has quit [Ping timeout: 240 seconds] 03:43 -!- fengling [~fengling@58.135.95.136] has quit [Ping timeout: 240 seconds] 03:45 -!- owowo [ovovo@gateway/vpn/mullvad/x-gszoztcpukikdfaq] has quit [Ping timeout: 240 seconds] 03:52 < GitHub29> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/381d0ddc8aaa...cbe9ae8c69b9 03:52 < GitHub29> bitcoin/master b7c349d Pavel Janík: Do not shadow variables in networking code 03:52 < GitHub29> bitcoin/master cbe9ae8 Wladimir J. van der Laan: Merge #8466: [Trivial] Do not shadow variables in networking code... 03:52 < GitHub92> [bitcoin] laanwj closed pull request #8466: [Trivial] Do not shadow variables in networking code (master...20160805_Wshadow_net) https://github.com/bitcoin/bitcoin/pull/8466 03:54 -!- fengling [~fengling@58.135.95.136] has joined #bitcoin-core-dev 04:03 -!- jcorgan_ [~ubuntu@unaffiliated/jcorgan] has joined #bitcoin-core-dev 04:06 -!- timothy [~quassel@archlinux/trusteduser/DrizztBSD] has quit [Disconnected by services] 04:06 -!- drizztbsd [~quassel@archlinux/trusteduser/DrizztBSD] has joined #bitcoin-core-dev 04:06 -!- drizztbsd is now known as timothy 04:07 -!- Netsplit *.net <-> *.split quits: crudel, Taek, sanada`, Bootvis, harding, mn3monic, jcorgan 04:09 -!- Netsplit over, joins: crudel, mn3monic, Taek, sanada`, Bootvis, harding 04:19 -!- fengling [~fengling@58.135.95.136] has quit [Ping timeout: 240 seconds] 04:30 -!- fengling [~fengling@58.135.95.136] has joined #bitcoin-core-dev 04:38 < cfields> jonasschnelli: so your comment on #8085 may not be relevant to those changes? 04:42 < GitHub97> [bitcoin] jl2012 closed pull request #8533: Implement LOW_S and NULLDUMMY softfork (BIP146) (master...bip146) https://github.com/bitcoin/bitcoin/pull/8533 04:42 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [] 04:55 -!- fengling [~fengling@58.135.95.136] has quit [Ping timeout: 240 seconds] 04:55 -!- cryptapus_afk is now known as cryptapus 05:22 -!- dcousens [~anon@c110-22-219-15.sunsh4.vic.optusnet.com.au] has quit [Ping timeout: 264 seconds] 05:36 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has quit [Quit: Leaving] 05:37 -!- LeMiner2 [LeMiner@5ED1AFBF.cm-7-2c.dynamic.ziggo.nl] has joined #bitcoin-core-dev 05:39 -!- LeMiner [LeMiner@5ED1AFBF.cm-7-2c.dynamic.ziggo.nl] has quit [Ping timeout: 252 seconds] 05:39 -!- LeMiner2 is now known as LeMiner 05:45 -!- owowo [ovovo@gateway/vpn/mullvad/x-jkhrhfzikbnzxyui] has joined #bitcoin-core-dev 05:58 < cfields> wumpus: re-ping incase you missed in backog. what do you think of the approach here to fix the travis timeouts? https://github.com/theuni/bitcoin/commit/fa88a425c0c1089ab75ea9223699286f40c8eea7 06:03 -!- dcousens [~anon@c110-22-219-15.sunsh4.vic.optusnet.com.au] has joined #bitcoin-core-dev 06:20 -!- jcorgan_ is now known as jcorgan 06:23 < GitHub117> [bitcoin] sstone opened pull request #8653: doc (trivial): add tip for cross-builds on ubuntu (master...wip-doccrosscompile) https://github.com/bitcoin/bitcoin/pull/8653 06:29 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 06:41 < sipa> cfields: looks good to me 06:41 < sipa> jonasschnelli: 3%, how many blocks is that? 06:42 * jonasschnelli checking the logs 06:42 < jonasschnelli> sipa: aprox 211000 06:43 < jonasschnelli> My assumption is that IBD with a single peer is much slower... but can't prove it right now. 06:43 < sipa> jonasschnelli: that seems very wrong 06:43 < sipa> it should take minutes to get to 211000 06:43 < sipa> not an hour 06:44 < sipa> the effect greg talks about it real, but shouldn't last more than a few minutes 06:44 < jonasschnelli> 2016-09-02 08:58:49 UpdateTip: new best=0000000000000345b371caa3f829cacbe2b4d38ecd15a5a02031efae79934d15 height=211000 06:44 < jonasschnelli> 2016-09-02 07:56:40 Bitcoin version v0.13.99.0-df98230 06:45 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has joined #bitcoin-core-dev 06:48 -!- warren [~warren@fedora/wombat/warren] has quit [Ping timeout: 240 seconds] 06:49 -!- warren [~warren@fedora/wombat/warren] has joined #bitcoin-core-dev 06:54 -!- shesek [~shesek@bzq-84-110-234-164.cablep.bezeqint.net] has quit [Ping timeout: 255 seconds] 06:56 -!- grubles [~grubles@unaffiliated/grubles] has joined #bitcoin-core-dev 06:57 < jonasschnelli> sipa: I guess its caused by --enable-debug 06:58 < sipa> oh, yes, that will slow things down tremendously 07:00 < jonasschnelli> sry for the noise... I should finally remember to disable debug mode when benachmarking. 07:04 -!- jtimon [~quassel@38.110.132.37.dynamic.jazztel.es] has quit [Ping timeout: 255 seconds] 07:16 -!- TomMc [~tom@unaffiliated/tommc] has joined #bitcoin-core-dev 07:17 -!- Cheeseo [~x@unaffiliated/cheeseo] has quit [Read error: Connection reset by peer] 07:17 -!- Cheeseo [~x@c-174-54-219-36.hsd1.pa.comcast.net] has joined #bitcoin-core-dev 07:17 -!- Cheeseo [~x@c-174-54-219-36.hsd1.pa.comcast.net] has quit [Changing host] 07:17 -!- Cheeseo [~x@unaffiliated/cheeseo] has joined #bitcoin-core-dev 07:28 -!- grubles [~grubles@unaffiliated/grubles] has quit [Quit: Leaving] 07:29 -!- Samdney [~Samdney@dyn-ant666999.hawo.ipv6.uni-erlangen.de] has joined #bitcoin-core-dev 07:31 -!- Giszmo [~leo@pc-40-227-45-190.cm.vtr.net] has joined #bitcoin-core-dev 07:37 -!- warren [~warren@fedora/wombat/warren] has quit [Ping timeout: 255 seconds] 07:38 -!- grubles [~grubles@unaffiliated/grubles] has joined #bitcoin-core-dev 07:39 -!- warren [~warren@fedora/wombat/warren] has joined #bitcoin-core-dev 07:43 -!- grubles [~grubles@unaffiliated/grubles] has quit [Quit: Leaving] 07:48 -!- gabridome [~gabridome@212.46.67.149] has joined #bitcoin-core-dev 07:48 -!- gabridome [~gabridome@212.46.67.149] has quit [Client Quit] 07:48 -!- gabridome [~gabridome@212.46.67.149] has joined #bitcoin-core-dev 07:51 -!- grubles [~grubles@unaffiliated/grubles] has joined #bitcoin-core-dev 07:53 -!- grubles [~grubles@unaffiliated/grubles] has quit [Client Quit] 07:56 -!- grubles [~grubles@unaffiliated/grubles] has joined #bitcoin-core-dev 08:05 -!- Giszmo [~leo@pc-40-227-45-190.cm.vtr.net] has quit [Ping timeout: 250 seconds] 08:07 -!- gabridome [~gabridome@212.46.67.149] has quit [Quit: gabridome] 08:09 -!- Giszmo [~leo@pc-40-227-45-190.cm.vtr.net] has joined #bitcoin-core-dev 08:12 -!- achow101 [~achow101@129.2.206.174] has joined #bitcoin-core-dev 08:15 < sturles> a/away 08:25 < cfields> sipa: thanks 08:26 < cfields> jonasschnelli: so I should ignore https://github.com/bitcoin/bitcoin/pull/8085#issuecomment-244077083 ? 08:26 < jonasschnelli> cfields: I think so... 08:26 < jonasschnelli> I'm working on more authentic IBD benchmarks. 08:27 < cfields> jonasschnelli: ok. apples to apples IBD is a good idea though. I'll do some syncs over the weekend 08:27 -!- achow101 [~achow101@129.2.206.174] has quit [Quit: Leaving] 08:28 < jonasschnelli> cfields: Yes. I was fooled (again) by the bias of --enable-debug and --prune 08:30 < cfields> jonasschnelli: ah, heh. I've fallen into the same trap. Turns out profiles generated with -O0 (for better info) aren't at all representative of real-world usage 08:30 < cfields> so it makes sense that it'd be a major performance killer 08:33 < gmaxwell> jonasschnelli: I think you got caught on debug before, you realize now I'm gonna start asking you? "Are you benchmarking with enable debug again?" :P 08:34 < jonasschnelli> heh... yes. 08:34 < btcdrak> Jonas 'debug' schnelli 08:34 < sdaftuar> cfields: i don't think i have seen segwit.py fail locally for the reason mentioned in #8532 08:34 < sdaftuar> gmaxwell: please set up an irc autoresponder so the rest of us don't forget to ask him too :) 08:34 < cfields> sdaftuar: ah, ok 08:35 -!- cryptapus [~cryptapus@unaffiliated/cryptapus] has quit [Quit: conversation terminated!] 08:35 -!- cryptapus [~cryptapus@jupiter.osmus.org] has joined #bitcoin-core-dev 08:35 -!- cryptapus [~cryptapus@jupiter.osmus.org] has quit [Changing host] 08:35 -!- cryptapus [~cryptapus@unaffiliated/cryptapus] has joined #bitcoin-core-dev 08:36 < sdaftuar> it seems like the most common reason my rpc tests fail is the communicat() timeout thing i reported in #8649, and then new test runs failing when old bitcoind's haven't been killed from prior test runs (sigh) 08:44 < GitHub85> [bitcoin] jl2012 opened pull request #8654: Reuse sighash computations across evaluation (rebase of #4562) (master...sighashcache) https://github.com/bitcoin/bitcoin/pull/8654 08:56 < wumpus> cfields: looking 08:59 < wumpus> cfields: looks good to me, doesn't even require any new signals! 09:00 < wumpus> cfields: any reason to not put the signal subscription/unsubscription in StartRPC/StopRPC? 09:01 < wumpus> cfields: oh duh, those are general methods 09:01 < wumpus> cfields: if there was a rpcblockchain.init/deinit, it would fit there 09:02 < wumpus> cfields: but this is ok; maybe mark the RPC calls that they are primarily meant for testing and/or set them as hidden? 09:02 < wumpus> (e.g. I can see complaints from people hanging the RPC server this way with no clue what they're doing) 09:03 < sipa> agree 09:05 < cfields> wumpus: yep, makes sense 09:05 < cfields> and yes, i kinda abused the existing signals there. I figured you'd be grumpier about it, hence the poke rather than PR :) 09:07 < wumpus> cfields: well the important thing is that all other processing has been done at the time of the signal; does this guarantee that? 09:08 < wumpus> (I guess the answer is yes, as there is no async processing, although it could depend on the order in which the handlers are called?) 09:09 < sipa> by default i think handlers are called in the order they were added 09:09 -!- jtimon [~quassel@38.110.132.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 09:09 < cfields> wumpus: i believe it's fine, but i'll double-check. 09:10 -!- kadoban [~mud@unaffiliated/kadoban] has joined #bitcoin-core-dev 09:10 < cfields> wumpus: since it abuses the ui signal, i'm not sure we need to worry about the order? Looking to see who else receives that 09:11 < wumpus> sipa: yes, but that is a really fragile thing to rely on 09:11 < wumpus> cfields: ok, yes that makes sense, if the UI signal is last 09:12 < wumpus> cfields: indeed there's no need to be worried doing things concurrently with the GUI 09:12 < wumpus> (usually that won't be running anyhow during RPC testing, although it's possible) 09:12 < cfields> it doesn't guarantee that we've acted on relaying appropriately, though all we could guarantee there anyway is that we've queued up some messages 09:13 < cfields> right 09:15 < cfields> yes, only other user is qt for updating gui 09:27 < GitHub78> [bitcoin] paveljanik opened pull request #8655: Do not shadow variables (trivials) (master...20160902_Wshadow_trivials) https://github.com/bitcoin/bitcoin/pull/8655 09:32 -!- jujumax [~jujumax@2601:647:4900:a239:e5a1:f5d5:9b0c:dba4] has joined #bitcoin-core-dev 09:32 -!- aalex [~aalex@64.187.177.58] has quit [Ping timeout: 240 seconds] 09:41 -!- aalex [~aalex@64.187.177.58] has joined #bitcoin-core-dev 09:52 < phantomcircuit> jonasschnelli, the p2p network contains a bunch of nodes which exist only to monitor people and as a side effect have bizarre behaviour 09:58 -!- jujumax [~jujumax@2601:647:4900:a239:e5a1:f5d5:9b0c:dba4] has quit [Remote host closed the connection] 09:59 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 10:18 -!- gabridome [~gabridome@212.46.67.149] has joined #bitcoin-core-dev 10:20 -!- gabridome [~gabridome@212.46.67.149] has quit [Client Quit] 10:21 -!- Chris_St1 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 10:22 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 276 seconds] 10:22 -!- jtimon [~quassel@38.110.132.37.dynamic.jazztel.es] has quit [Ping timeout: 244 seconds] 10:23 -!- jtimon [~quassel@38.110.132.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 10:35 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has quit [Quit: lol] 10:59 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has joined #bitcoin-core-dev 11:00 -!- Chris_St1 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 240 seconds] 11:08 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has quit [Quit: Leaving.] 11:16 -!- Chris_St1 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 11:27 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has joined #bitcoin-core-dev 11:31 -!- Chris_St1 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 244 seconds] 11:37 -!- btcdrak [uid165369@gateway/web/irccloud.com/x-jmjforsuzskisdhv] has quit [Quit: Connection closed for inactivity] 11:47 -!- jtimon [~quassel@38.110.132.37.dynamic.jazztel.es] has quit [Ping timeout: 264 seconds] 11:47 -!- Chris_St1 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 11:55 -!- CubicEarth [~cubiceart@73.109.63.0] has joined #bitcoin-core-dev 11:58 < GitHub12> [bitcoin] paveljanik opened pull request #8656: Do not shadow global variable fileout (master...20160902_Wshadow_fileout) https://github.com/bitcoin/bitcoin/pull/8656 12:01 < instagibbs> sipa, where is chainActive loaded on init? Having trouble tracking that down. 12:04 < sipa> instagibbs: ActivateBestChain? 12:04 < sipa> LoadBlockIndex? 12:06 < instagibbs> eh yes, but it got moved around and I'm flailing 12:07 < instagibbs> I'll track it down 12:07 -!- CubicEar_ [~cubiceart@73.109.63.0] has joined #bitcoin-core-dev 12:09 < instagibbs> ah i misunderstood what wallet init was doing with it, nevermind, thanks 12:10 -!- btcdrak [uid165369@gateway/web/irccloud.com/x-tckqnwmoazjiqvwm] has joined #bitcoin-core-dev 12:10 -!- CubicEarth [~cubiceart@73.109.63.0] has quit [Ping timeout: 276 seconds] 12:16 -!- e4xit [~e4xit@cpc92302-cmbg19-2-0-cust1369.5-4.cable.virginm.net] has quit [Ping timeout: 265 seconds] 12:17 -!- CubicEar_ [~cubiceart@73.109.63.0] has quit [Remote host closed the connection] 12:18 -!- CubicEarth [~cubiceart@73.109.63.0] has joined #bitcoin-core-dev 12:19 -!- TomMc [~tom@unaffiliated/tommc] has quit [Ping timeout: 240 seconds] 12:21 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has quit [Quit: gtg] 12:27 -!- CubicEarth [~cubiceart@73.109.63.0] has quit [] 12:30 -!- e4xit [~e4xit@cpc92302-cmbg19-2-0-cust1369.5-4.cable.virginm.net] has joined #bitcoin-core-dev 12:35 -!- laurentmt [~Thunderbi@176.158.157.202] has joined #bitcoin-core-dev 12:37 -!- laurentmt [~Thunderbi@176.158.157.202] has quit [Client Quit] 12:38 -!- laurentmt [~Thunderbi@176.158.157.202] has joined #bitcoin-core-dev 12:39 -!- laurentmt [~Thunderbi@176.158.157.202] has quit [Client Quit] 12:57 -!- e4xit [~e4xit@cpc92302-cmbg19-2-0-cust1369.5-4.cable.virginm.net] has quit [Ping timeout: 240 seconds] 12:58 -!- e4xit [~e4xit@cpc92302-cmbg19-2-0-cust1369.5-4.cable.virginm.net] has joined #bitcoin-core-dev 13:08 -!- drizztbsd [~quassel@archlinux/trusteduser/DrizztBSD] has joined #bitcoin-core-dev 13:08 -!- timothy [~quassel@archlinux/trusteduser/DrizztBSD] has quit [Disconnected by services] 13:09 -!- drizztbsd is now known as timothy 13:09 < GitHub70> [bitcoin] paveljanik opened pull request #8658: WIP/DO NOT MERGE: Remove unused statements in serialization (master...20160902_nVersion_serialization_cleanup) https://github.com/bitcoin/bitcoin/pull/8658 13:25 -!- shesek [~shesek@bzq-84-110-56-24.cablep.bezeqint.net] has joined #bitcoin-core-dev 13:34 -!- shesek [~shesek@bzq-84-110-56-24.cablep.bezeqint.net] has quit [Ping timeout: 276 seconds] 13:47 -!- shesek [~shesek@bzq-84-110-56-24.cablep.bezeqint.net] has joined #bitcoin-core-dev 14:01 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Quit: :)] 14:18 -!- veleiro [~veleiro@fsf/member/veleiro] has joined #bitcoin-core-dev 14:58 -!- gluytium [~g@45.63.97.181] has quit [Quit: IRC (Quit: Not that there is anything wrong with that)] 15:03 -!- pmienk [~pmienk@c-71-227-177-179.hsd1.wa.comcast.net] has quit [Ping timeout: 244 seconds] 15:03 -!- gluytium [~g@45.63.97.181] has joined #bitcoin-core-dev 15:15 -!- veleiro [~veleiro@fsf/member/veleiro] has quit [Ping timeout: 244 seconds] 15:15 -!- pmienk [~pmienk@c-71-227-177-179.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 15:20 -!- cryptapus is now known as cryptapus_afk 15:20 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 15:33 -!- pmienk [~pmienk@c-71-227-177-179.hsd1.wa.comcast.net] has quit [Ping timeout: 240 seconds] 15:46 -!- pmienk [~pmienk@c-71-227-177-179.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 15:59 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has joined #bitcoin-core-dev 16:13 -!- murch [~murch@p4FE3BA54.dip0.t-ipconnect.de] has quit [Quit: Leaving.] 16:14 -!- jtimon [~quassel@38.110.132.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 16:18 -!- crudel [crudel@gateway/shell/fnordserver.eu/x-cusbjtggfmxanrue] has quit [Quit: https://fnordserver.eu] 16:24 -!- slackircbridge [~slackircb@139.59.146.250] has quit [Remote host closed the connection] 16:49 -!- CyrusV [~cyrus@unaffiliated/cyrusv] has joined #bitcoin-core-dev 16:50 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has quit [Ping timeout: 276 seconds] 17:17 -!- echonaut [~echonaut@46.101.192.134] has joined #bitcoin-core-dev 17:56 -!- Chris_St1 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 244 seconds] 17:59 -!- Chris_St1 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 18:06 -!- cdecker [~cdecker@2a02:aa16:1105:4a80:ac6d:f433:257:90a2] has quit [Ping timeout: 265 seconds] 18:06 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-kvujyybnlmiklgzv] has quit [Quit: Connection closed for inactivity] 18:14 -!- TomMc [~tom@unaffiliated/tommc] has joined #bitcoin-core-dev 18:46 -!- TomMc [~tom@unaffiliated/tommc] has quit [Ping timeout: 265 seconds] 19:09 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has quit [Quit: zzzzzzzzzzzzzzz] 19:19 -!- fengling [~fengling@58.135.95.136] has joined #bitcoin-core-dev 19:30 -!- jtimon [~quassel@38.110.132.37.dynamic.jazztel.es] has quit [Ping timeout: 244 seconds] 19:33 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 19:34 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-core-dev 19:42 -!- Chris_St1 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 265 seconds] 19:47 -!- baldur [~baldur@pool-72-69-25-42.nycmny.fios.verizon.net] has joined #bitcoin-core-dev 20:09 -!- Samdney [~Samdney@dyn-ant666999.hawo.ipv6.uni-erlangen.de] has quit [Ping timeout: 258 seconds] 20:24 -!- jannes [~jannes@178.132.211.90] has quit [Quit: Leaving] 20:30 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 20:31 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-core-dev 20:41 -!- ryan-c [~ryan@znc.rya.nc] has quit [Quit: quitting] 20:45 -!- crudel [crudel@gateway/shell/fnordserver.eu/x-azoepmoqchfrbxzj] has joined #bitcoin-core-dev 20:56 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 20:57 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-core-dev 21:06 -!- Giszmo [~leo@pc-40-227-45-190.cm.vtr.net] has quit [Quit: Leaving.] 21:10 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 21:10 -!- dermoth [~thomas@dsl-66-36-158-91.mtl.aei.ca] has quit [Read error: Connection reset by peer] 21:10 -!- dermoth [~thomas@dsl-66-36-158-91.mtl.aei.ca] has joined #bitcoin-core-dev 21:11 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-core-dev 21:21 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 21:22 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-core-dev 21:26 -!- achow101 [~achow101@129.2.206.174] has joined #bitcoin-core-dev 21:40 -!- nanotube [~nanotube@unaffiliated/nanotube] has quit [Ping timeout: 250 seconds] 21:51 -!- nanotube [~nanotube@unaffiliated/nanotube] has joined #bitcoin-core-dev 22:07 -!- btcdrak [uid165369@gateway/web/irccloud.com/x-tckqnwmoazjiqvwm] has quit [Quit: Connection closed for inactivity] 22:43 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 22:44 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-core-dev 23:03 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 23:04 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-core-dev 23:11 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 255 seconds] 23:16 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 23:16 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Client Quit] 23:16 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 23:25 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 23:26 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-core-dev 23:28 -!- fengling [~fengling@58.135.95.136] has quit [Ping timeout: 240 seconds] 23:53 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 265 seconds]