12016-08-02T00:01:41  *** netzin has quit IRC
  22016-08-02T00:02:07  *** netzin has joined #bitcoin-core-dev
  32016-08-02T00:06:51  *** netzin has quit IRC
  42016-08-02T00:12:38  *** fengling has joined #bitcoin-core-dev
  52016-08-02T00:17:06  *** fengling has quit IRC
  62016-08-02T00:18:39  <GitHub23> [bitcoin] pstratem opened pull request #8445: Move CWallet::setKeyPool to private section of CWallet. (master...2016-07-01-cwallet-api-cleanup) https://github.com/bitcoin/bitcoin/pull/8445
  72016-08-02T00:35:40  *** belcher has quit IRC
  82016-08-02T00:35:49  *** Ylbam has quit IRC
  92016-08-02T00:45:19  *** aalex__ has quit IRC
 102016-08-02T00:46:33  *** aalex__ has joined #bitcoin-core-dev
 112016-08-02T00:48:03  *** Giszmo1 has quit IRC
 122016-08-02T01:05:48  *** aalex__ has quit IRC
 132016-08-02T01:06:28  *** aalex__ has joined #bitcoin-core-dev
 142016-08-02T01:06:46  *** ratoder has quit IRC
 152016-08-02T01:08:41  *** Chris_Stewart_5 has joined #bitcoin-core-dev
 162016-08-02T01:08:56  <Chris_Stewart_5> is there a line of code I can change somewhere to compile the entire project with c++11 standard?
 172016-08-02T01:10:57  <sipa> we already do
 182016-08-02T01:12:48  <sipa> as in: you can't compile the 0.13 codebase with c++03 anymore
 192016-08-02T01:13:37  *** fengling has joined #bitcoin-core-dev
 202016-08-02T01:14:18  <Chris_Stewart_5> I'm still learning C++ build systems. What file is this specified in exactly? I've searched configure.ac, Makefile.am, Makefile.in
 212016-08-02T01:14:32  <Chris_Stewart_5> The only reference to 'c++11' I can find is wrt to boost inside of configure.ac
 222016-08-02T01:16:56  <sipa> line 59
 232016-08-02T01:17:27  <sipa> AX_CXX_COMPILE_STDCXX([11], [noext], [mandatory])
 242016-08-02T01:18:06  <Chris_Stewart_5> Ahh ok. Thank you
 252016-08-02T01:18:26  *** fengling has quit IRC
 262016-08-02T01:18:55  <phantomcircuit> a bunch of the tests in wallet/test/rpc_wallet_tests.cpp seem to be pretty confused
 272016-08-02T01:19:06  <phantomcircuit> things like calling getbalance on an address instead of an account and stuff
 282016-08-02T01:19:58  *** spudowiar has quit IRC
 292016-08-02T01:26:39  <sipa> phantomcircuit: wah
 302016-08-02T01:27:00  *** fengling has joined #bitcoin-core-dev
 312016-08-02T01:34:24  <phantomcircuit> sipa: yeah... line 104
 322016-08-02T01:34:26  <phantomcircuit> BOOST_CHECK_NO_THROW(CallRPC("getbalance " + demoAddress.ToString()));
 332016-08-02T01:34:34  <phantomcircuit> that's basically completely meaningless
 342016-08-02T01:40:09  *** aalex__ has quit IRC
 352016-08-02T01:41:27  *** aalex__ has joined #bitcoin-core-dev
 362016-08-02T01:44:36  *** Chris_Stewart_5 has quit IRC
 372016-08-02T02:00:04  *** aalex__ has quit IRC
 382016-08-02T02:01:28  *** aalex__ has joined #bitcoin-core-dev
 392016-08-02T02:15:29  <kanzure> https://twitter.com/kanzure/status/760297796411002880
 402016-08-02T02:24:43  *** supasonic has quit IRC
 412016-08-02T02:25:53  *** supasonic has joined #bitcoin-core-dev
 422016-08-02T02:57:42  *** Kexkey has joined #bitcoin-core-dev
 432016-08-02T03:26:04  *** Kexkey has quit IRC
 442016-08-02T04:12:31  *** randy-waterhouse has joined #bitcoin-core-dev
 452016-08-02T04:20:01  *** aalex__ has quit IRC
 462016-08-02T04:21:27  *** aalex__ has joined #bitcoin-core-dev
 472016-08-02T04:30:04  *** btcdrak has quit IRC
 482016-08-02T04:34:54  *** aalex__ has quit IRC
 492016-08-02T04:36:27  *** aalex__ has joined #bitcoin-core-dev
 502016-08-02T04:44:06  *** fengling has quit IRC
 512016-08-02T04:50:42  *** aalex__ has quit IRC
 522016-08-02T04:51:09  *** d_t has quit IRC
 532016-08-02T04:51:26  *** aalex__ has joined #bitcoin-core-dev
 542016-08-02T05:05:39  *** aalex__ has quit IRC
 552016-08-02T05:06:35  *** aalex__ has joined #bitcoin-core-dev
 562016-08-02T05:13:56  *** d9b4bef9 has quit IRC
 572016-08-02T05:14:09  *** d9b4bef9 has joined #bitcoin-core-dev
 582016-08-02T05:18:52  *** supasonic has quit IRC
 592016-08-02T05:21:04  *** d_t has joined #bitcoin-core-dev
 602016-08-02T05:21:53  *** LeMiner has joined #bitcoin-core-dev
 612016-08-02T05:22:46  *** LeMiner2 has quit IRC
 622016-08-02T05:22:46  *** LeMiner is now known as LeMiner2
 632016-08-02T05:39:38  *** supasonic has joined #bitcoin-core-dev
 642016-08-02T05:49:45  *** aalex__ has quit IRC
 652016-08-02T05:50:07  <wumpus> phantomcircuit: I don't think rpc_wallet_tests.cpp should ideally exist at all
 662016-08-02T05:50:18  <wumpus> phantomcircuit: it is from before we had the RPC functional tests framework
 672016-08-02T05:50:49  <wumpus> unit tests that check RPC behavior, except for the most basic level, aren't really unit tests
 682016-08-02T05:51:17  <wumpus> so if someone takes care that everything that is in rpc_wallet_tests.cpp and is worthwhile is being tested in the RPC wallet tests, the file can go
 692016-08-02T05:51:28  *** aalex__ has joined #bitcoin-core-dev
 702016-08-02T05:51:54  <phantomcircuit> wumpus: great im pretty sure we're already doing that and this is doing a bunch of reallllly weird stuff
 712016-08-02T05:52:02  <wumpus> great
 722016-08-02T06:00:04  *** aalex__ has quit IRC
 732016-08-02T06:01:27  *** aalex__ has joined #bitcoin-core-dev
 742016-08-02T06:27:26  <GitHub156> [bitcoin] laanwj pushed 6 new commits to master: https://github.com/bitcoin/bitcoin/compare/ea268747b6d4...63c03dd41cc0
 752016-08-02T06:27:27  <GitHub156> bitcoin/master 56c87e9 Suhas Daftuar: Allow changing BIP9 parameters on regtest
 762016-08-02T06:27:27  <GitHub156> bitcoin/master 9c8593d Pieter Wuille: Implement SipHash in Python
 772016-08-02T06:27:28  <GitHub156> bitcoin/master a8689fd Suhas Daftuar: Tests: refactor compact size serialization in mininode
 782016-08-02T06:27:36  <GitHub180> [bitcoin] laanwj closed pull request #8418: Add tests for compact blocks (master...cb-testing) https://github.com/bitcoin/bitcoin/pull/8418
 792016-08-02T06:39:45  *** BashCo has quit IRC
 802016-08-02T06:45:13  *** jannes has joined #bitcoin-core-dev
 812016-08-02T06:55:07  *** aalex__ has quit IRC
 822016-08-02T06:55:10  *** GreenIsMyPepper has quit IRC
 832016-08-02T06:55:31  *** GreenIsMyPepper has joined #bitcoin-core-dev
 842016-08-02T06:56:28  *** aalex__ has joined #bitcoin-core-dev
 852016-08-02T07:04:58  *** BashCo has joined #bitcoin-core-dev
 862016-08-02T07:05:34  *** kadoban has quit IRC
 872016-08-02T07:08:12  *** supasonic has quit IRC
 882016-08-02T07:10:22  *** aalex__ has quit IRC
 892016-08-02T07:11:27  *** aalex__ has joined #bitcoin-core-dev
 902016-08-02T07:13:50  *** d_t has quit IRC
 912016-08-02T07:15:00  *** murch has joined #bitcoin-core-dev
 922016-08-02T07:25:25  *** aalex__ has quit IRC
 932016-08-02T07:26:26  *** aalex__ has joined #bitcoin-core-dev
 942016-08-02T07:28:08  *** shesek has quit IRC
 952016-08-02T07:33:34  *** fengling has joined #bitcoin-core-dev
 962016-08-02T07:45:18  *** btcdrak has joined #bitcoin-core-dev
 972016-08-02T07:48:21  *** Alopex has quit IRC
 982016-08-02T07:49:26  *** Alopex has joined #bitcoin-core-dev
 992016-08-02T07:58:10  *** Giszmo has joined #bitcoin-core-dev
1002016-08-02T08:12:06  *** Alopex has quit IRC
1012016-08-02T08:12:08  *** davec has quit IRC
1022016-08-02T08:13:12  *** Alopex has joined #bitcoin-core-dev
1032016-08-02T08:13:48  *** davec has joined #bitcoin-core-dev
1042016-08-02T08:14:04  *** squidicuz has quit IRC
1052016-08-02T08:14:34  *** squidicuz has joined #bitcoin-core-dev
1062016-08-02T08:16:13  *** binns has quit IRC
1072016-08-02T08:17:12  *** Squidicc has joined #bitcoin-core-dev
1082016-08-02T08:17:36  *** go1111111 has quit IRC
1092016-08-02T08:17:56  *** binns has joined #bitcoin-core-dev
1102016-08-02T08:19:15  *** zxzzt has quit IRC
1112016-08-02T08:19:51  *** wallet42 has quit IRC
1122016-08-02T08:20:07  *** squidicuz has quit IRC
1132016-08-02T08:20:20  *** wallet42 has joined #bitcoin-core-dev
1142016-08-02T08:21:03  *** pmienk has quit IRC
1152016-08-02T08:21:13  *** zxzzt has joined #bitcoin-core-dev
1162016-08-02T08:21:30  *** pmienk has joined #bitcoin-core-dev
1172016-08-02T08:21:36  *** go1111111 has joined #bitcoin-core-dev
1182016-08-02T08:30:47  <GitHub103> [bitcoin] paveljanik opened pull request #8446: BIP9 parameters on regtest cleanup (master...20160802_shadow_bip9params) https://github.com/bitcoin/bitcoin/pull/8446
1192016-08-02T08:44:49  *** cryptapus_afk has quit IRC
1202016-08-02T08:48:10  *** jtimon has joined #bitcoin-core-dev
1212016-08-02T09:23:39  *** jtimon has quit IRC
1222016-08-02T09:35:51  *** laurentmt has joined #bitcoin-core-dev
1232016-08-02T09:36:07  *** laurentmt has quit IRC
1242016-08-02T09:40:45  *** randy-waterhouse has quit IRC
1252016-08-02T09:59:32  *** aalex__ has quit IRC
1262016-08-02T10:01:31  *** aalex__ has joined #bitcoin-core-dev
1272016-08-02T10:06:59  *** murch has quit IRC
1282016-08-02T10:07:12  *** pmienk has quit IRC
1292016-08-02T10:11:16  *** pmienk has joined #bitcoin-core-dev
1302016-08-02T10:13:36  *** fifth_ has joined #bitcoin-core-dev
1312016-08-02T10:45:04  *** aalex__ has quit IRC
1322016-08-02T10:46:29  *** aalex__ has joined #bitcoin-core-dev
1332016-08-02T10:57:03  *** pmienk has quit IRC
1342016-08-02T10:57:09  *** JackH_ has joined #bitcoin-core-dev
1352016-08-02T10:57:38  *** JackH_ has quit IRC
1362016-08-02T10:59:25  *** pmienk has joined #bitcoin-core-dev
1372016-08-02T11:18:24  <wumpus> cfields: I don't get it, I don't manage to compile master for ARM anymore: https://github.com/bitcoin/bitcoin/issues/8447  however, in travis it's working. What could be the difference, that I'm compiling my own toolchain?
1382016-08-02T11:19:10  <wumpus> I guess I'll try in a trusty VM
1392016-08-02T11:25:26  *** fengling has quit IRC
1402016-08-02T11:27:58  *** JackH has quit IRC
1412016-08-02T11:30:48  <wumpus> maybe this is false alarm and the g++ compiler produced by crosstool lacks some feature to support the c++11 threading primitives, or I've just forgot to pass some setting
1422016-08-02T11:51:15  *** cryptapus has joined #bitcoin-core-dev
1432016-08-02T11:51:15  *** cryptapus has joined #bitcoin-core-dev
1442016-08-02T11:51:26  *** paveljanik has quit IRC
1452016-08-02T12:04:27  *** MrHodl has joined #bitcoin-core-dev
1462016-08-02T12:17:17  *** Chris_Stewart_5 has joined #bitcoin-core-dev
1472016-08-02T12:27:35  *** Cheeseo has joined #bitcoin-core-dev
1482016-08-02T12:27:36  *** Cheeseo has joined #bitcoin-core-dev
1492016-08-02T12:30:55  *** RoyceX has quit IRC
1502016-08-02T12:33:54  *** RoyceX has joined #bitcoin-core-dev
1512016-08-02T12:34:09  *** Cheeseo has quit IRC
1522016-08-02T12:35:38  *** aalex__ has quit IRC
1532016-08-02T12:36:35  *** aalex__ has joined #bitcoin-core-dev
1542016-08-02T12:41:11  *** Cheeseo has joined #bitcoin-core-dev
1552016-08-02T12:41:11  *** Cheeseo has joined #bitcoin-core-dev
1562016-08-02T12:45:13  *** RoyceX has quit IRC
1572016-08-02T13:02:32  *** mkarrer has quit IRC
1582016-08-02T13:03:26  *** mkarrer has joined #bitcoin-core-dev
1592016-08-02T13:37:15  *** Guyver2 has joined #bitcoin-core-dev
1602016-08-02T13:42:40  *** TomMc has joined #bitcoin-core-dev
1612016-08-02T13:47:38  *** shesek has joined #bitcoin-core-dev
1622016-08-02T13:57:41  *** kadoban has joined #bitcoin-core-dev
1632016-08-02T14:53:07  *** Ylbam has joined #bitcoin-core-dev
1642016-08-02T15:03:54  *** supasonic has joined #bitcoin-core-dev
1652016-08-02T15:04:14  *** laurentmt has joined #bitcoin-core-dev
1662016-08-02T15:05:10  *** paveljanik has joined #bitcoin-core-dev
1672016-08-02T15:05:57  *** laurentmt has quit IRC
1682016-08-02T15:09:28  *** BashCo has quit IRC
1692016-08-02T15:10:00  <GitHub15> [bitcoin] laanwj closed pull request #8436: Update release-notes.md (0.13...patch-1) https://github.com/bitcoin/bitcoin/pull/8436
1702016-08-02T15:12:38  *** fifth_ has quit IRC
1712016-08-02T15:15:24  *** laurentmt has joined #bitcoin-core-dev
1722016-08-02T15:25:50  *** jtimon has joined #bitcoin-core-dev
1732016-08-02T16:05:48  *** zooko has joined #bitcoin-core-dev
1742016-08-02T16:11:13  *** BashCo has joined #bitcoin-core-dev
1752016-08-02T16:11:52  *** laurentmt has quit IRC
1762016-08-02T16:11:56  *** d_t has joined #bitcoin-core-dev
1772016-08-02T16:26:52  *** aalex__ has quit IRC
1782016-08-02T16:27:16  *** aalex__ has joined #bitcoin-core-dev
1792016-08-02T16:30:06  *** Chris_Stewart_5 has quit IRC
1802016-08-02T16:32:48  *** Chris_Stewart_5 has joined #bitcoin-core-dev
1812016-08-02T16:37:33  *** zooko has quit IRC
1822016-08-02T16:52:55  *** Squidicc is now known as squidicuz
1832016-08-02T16:59:51  *** aalex__ has quit IRC
1842016-08-02T17:01:35  *** aalex__ has joined #bitcoin-core-dev
1852016-08-02T17:01:39  *** d_t has quit IRC
1862016-08-02T17:16:32  *** zooko has joined #bitcoin-core-dev
1872016-08-02T17:27:57  *** jtimon has quit IRC
1882016-08-02T17:28:36  *** zooko has quit IRC
1892016-08-02T17:40:11  *** achow101 has quit IRC
1902016-08-02T17:40:50  *** achow101 has joined #bitcoin-core-dev
1912016-08-02T18:08:39  *** laurentmt has joined #bitcoin-core-dev
1922016-08-02T18:09:42  *** aureianimus_ has quit IRC
1932016-08-02T18:11:03  *** aureianimus_ has joined #bitcoin-core-dev
1942016-08-02T18:19:39  *** laurentmt has quit IRC
1952016-08-02T18:20:44  *** molz has joined #bitcoin-core-dev
1962016-08-02T18:24:08  *** moli has quit IRC
1972016-08-02T18:25:51  *** jtimon has joined #bitcoin-core-dev
1982016-08-02T18:29:42  *** BitcoinErrorLog has joined #bitcoin-core-dev
1992016-08-02T18:54:37  *** Sanakov has joined #bitcoin-core-dev
2002016-08-02T18:57:03  <Sanakov> Hello everybod: Yesterday we launched https://www.bitfuse.org; Share your files and get paid in bitcoins.
2012016-08-02T18:57:08  <Sanakov> Please let me know what you think of the website.
2022016-08-02T19:02:58  *** supasonic has quit IRC
2032016-08-02T19:03:30  <molz> Sanakov, wrong channel
2042016-08-02T19:07:36  <Sanakov> where
2052016-08-02T19:07:48  <Sanakov> do I post stuff like this then? Any suggestions
2062016-08-02T19:07:50  <Sanakov> Thank you
2072016-08-02T19:08:36  *** Chris_Stewart_5 has quit IRC
2082016-08-02T19:12:23  *** zooko has joined #bitcoin-core-dev
2092016-08-02T19:24:28  *** Chris_Stewart_5 has joined #bitcoin-core-dev
2102016-08-02T19:24:59  <instagibbs> Sanakov, #bitcoin-otc
2112016-08-02T19:27:28  *** Sanakov has quit IRC
2122016-08-02T19:27:40  *** Sanakov has joined #bitcoin-core-dev
2132016-08-02T19:27:52  <Sanakov> thanks
2142016-08-02T19:31:44  *** zooko has quit IRC
2152016-08-02T19:43:32  *** supasonic has joined #bitcoin-core-dev
2162016-08-02T19:59:28  <morcos> cfields: sipa: i've benchmarked the cumulative results of what jeremy and i have been working on.
2172016-08-02T19:59:39  <morcos> http://imgur.com/a/WPvi1
2182016-08-02T20:00:21  <sipa> morcos: nice!
2192016-08-02T20:00:26  <sipa> morcos: what is tipcache?
2202016-08-02T20:00:27  *** sipa sets mode: -o sipa
2212016-08-02T20:00:37  <morcos> still a bit more work to go before PR's and we probably need to figure out how to apply NicolasDorier's hash cache as well
2222016-08-02T20:00:59  <morcos> tipcache is a permanent CCoinsViewCache in front of pcoinstip instead of creating a new one each ConnectBlock
2232016-08-02T20:01:12  *** Guest67303 has joined #bitcoin-core-dev
2242016-08-02T20:01:34  <morcos> its prepopulated every 30 secs by the inputs necessary for a block created by CreateNewBlock (takes on average 13ms)
2252016-08-02T20:01:47  <sipa> ha
2262016-08-02T20:01:55  <morcos> and its only cleared after a block is connected
2272016-08-02T20:02:07  *** cryptapus has quit IRC
2282016-08-02T20:02:12  <morcos> this also serves to keep pcoinsTip itself properly warm
2292016-08-02T20:02:21  *** Guest67303 is now known as roidster
2302016-08-02T20:02:40  <sipa> interesting
2312016-08-02T20:02:51  <morcos> so all these tests are with about 550M of total caches  (300M dbcache, 100M sigcache, approx 150M tipcache)  or 450M dbache if not using tipcache
2322016-08-02T20:03:41  <morcos> so overal cpu running time is increased of course using tipcache, but it happens out of critical path and its quick enough that its not hurting anything i dont' think 13ms every 30 secs
2332016-08-02T20:03:49  *** roidster has quit IRC
2342016-08-02T20:06:06  *** roidster has joined #bitcoin-core-dev
2352016-08-02T20:06:39  <sipa> morcos: i can do benchmarks on a 52-core system, if you have code for me to test
2362016-08-02T20:06:45  <sipa> s/core/thread/
2372016-08-02T20:07:28  <jeremyrubin> woooo
2382016-08-02T20:07:34  <morcos> ah, ok good , yeah i have 16 cores / 32 threads
2392016-08-02T20:07:42  <jeremyrubin> How many cores?
2402016-08-02T20:08:06  <sipa> 2 chips, each 13 cores, each 2 threads
2412016-08-02T20:08:17  <gmaxwell> s/13/14/
2422016-08-02T20:08:18  <morcos> i tried setting scriptcheck threads to 24 or 32 and it slowed down a lot in all versions
2432016-08-02T20:08:38  <sipa> oops, 56, not 52
2442016-08-02T20:08:47  <jeremyrubin> how is the memory bus configured?
2452016-08-02T20:09:03  <jeremyrubin> im curious how the lockfree stuff is implemented
2462016-08-02T20:09:19  <jeremyrubin> nvm
2472016-08-02T20:10:20  <jeremyrubin> (but in general, if someone better understands the lockfree stuff there are a bunch of low hanging fruit optimizations to investigate, although as is it's already fast enough to forget about for a while)
2482016-08-02T20:10:39  <morcos> in any case the question there will only be whether it gets slower, as there isn't much room to get faster by more parallelism without changes.  waiting on verification is pretty minimal now.
2492016-08-02T20:10:57  <morcos> i suppose it could help a lot on startup/reindex, where you don't have warm caches (sig or pcoinstip)
2502016-08-02T20:11:16  *** Naphex has quit IRC
2512016-08-02T20:11:22  <jeremyrubin> quick q: best way to give up cpu cycles
2522016-08-02T20:11:34  <jeremyrubin> eg, sleep(0), this_thread::yield()
2532016-08-02T20:11:43  <sipa> jeremyrubin: i wonder about the same
2542016-08-02T20:11:58  <gmaxwell> jeremyrubin: it's numa. with 4-way parallel memory on each of the two chips.
2552016-08-02T20:12:21  <morcos> sipa: have you figured out what the optimal number of scriptcheck threads is for you do do a reindex is right now?
2562016-08-02T20:12:51  <sipa> morcos: i have not; will do
2572016-08-02T20:15:00  <sipa> morcos: how do you benchmark? use -debug=bench numbers?
2582016-08-02T20:15:58  <morcos> sipa: yes thats what i've been doing
2592016-08-02T20:16:23  <morcos> although for reindex, i guess the actual time elapsed is most interesting
2602016-08-02T20:17:15  <sipa> for the graph you posted above... where do those come from?
2612016-08-02T20:18:03  <morcos> thats using sdaftuar's simulation mode over the first 3 days of may (470 blocks)
2622016-08-02T20:18:23  <morcos> so a bit biased by having no mempool at the beginning of that period..
2632016-08-02T20:19:25  *** MrHodl has quit IRC
2642016-08-02T20:20:25  *** bsm117532 has quit IRC
2652016-08-02T20:25:29  *** bsm117532 has joined #bitcoin-core-dev
2662016-08-02T20:29:06  *** afk11 has quit IRC
2672016-08-02T20:30:08  *** bsm117532 has quit IRC
2682016-08-02T20:30:09  *** laurentmt has joined #bitcoin-core-dev
2692016-08-02T20:30:37  *** bsm117532 has joined #bitcoin-core-dev
2702016-08-02T20:30:39  *** bsm117532 has quit IRC
2712016-08-02T20:31:14  *** bsm117532 has joined #bitcoin-core-dev
2722016-08-02T20:31:18  *** Sanakov has quit IRC
2732016-08-02T20:35:18  *** d_t has joined #bitcoin-core-dev
2742016-08-02T20:47:07  *** laurentmt has quit IRC
2752016-08-02T20:47:36  *** cryptapus has joined #bitcoin-core-dev
2762016-08-02T20:47:53  *** cryptapus is now known as cryptapus_afk
2772016-08-02T20:49:52  *** Chris_Stewart_5 has quit IRC
2782016-08-02T21:00:00  *** Sanakov has joined #bitcoin-core-dev
2792016-08-02T21:03:17  *** BitcoinErrorLog has joined #bitcoin-core-dev
2802016-08-02T21:11:30  *** Sanakov has quit IRC
2812016-08-02T21:22:25  *** BitcoinErrorLog has quit IRC
2822016-08-02T21:30:02  *** Guyver2 has quit IRC
2832016-08-02T21:34:04  *** TomMc has quit IRC
2842016-08-02T21:37:53  *** TomMc has joined #bitcoin-core-dev
2852016-08-02T21:37:56  *** Michail1 has left #bitcoin-core-dev
2862016-08-02T21:38:07  *** jgarzik has quit IRC
2872016-08-02T21:46:53  *** spudowiar has joined #bitcoin-core-dev
2882016-08-02T21:59:52  *** jtimon has quit IRC
2892016-08-02T22:05:43  *** laurentmt has joined #bitcoin-core-dev
2902016-08-02T22:05:49  *** laurentmt has quit IRC
2912016-08-02T22:46:36  *** Chris_Stewart_5 has joined #bitcoin-core-dev
2922016-08-02T22:49:00  *** eenoch has quit IRC
2932016-08-02T22:49:05  <NicolasDorier> Actually, the bug I pointed out yestersday about time-too-new may really be a problem: https://www.reddit.com/r/Bitcoin/comments/4vsvvm/bitcoind_stuck_at_block_422168_timestamp_too_far/.
2942016-08-02T22:49:05  <NicolasDorier> Having seen that independently, I tried to make a test to reproduce the bug in regnet. However I could not reproduce: If the block was rejected for time-too-new, then later rebroadcasted it worked fine and was reconsidered. I've not tried with header first propagation though
2952016-08-02T22:49:40  *** eenoch has joined #bitcoin-core-dev
2962016-08-02T23:02:01  *** belcher has joined #bitcoin-core-dev
2972016-08-02T23:13:46  *** schmidty has joined #bitcoin-core-dev
2982016-08-02T23:24:45  *** Giszmo1 has joined #bitcoin-core-dev
2992016-08-02T23:26:03  *** Giszmo has quit IRC
3002016-08-02T23:30:40  *** Cheeseo has quit IRC
3012016-08-02T23:32:20  <gmaxwell> NicolasDorier: maybe if its rejected during the startup checks.
3022016-08-02T23:32:37  <gmaxwell> e.g. set time forward, accept a block. shut down, turn time back. restart.
3032016-08-02T23:35:04  *** aalex__ has quit IRC
3042016-08-02T23:36:41  *** aalex__ has joined #bitcoin-core-dev
3052016-08-02T23:36:57  *** Cheeseo has joined #bitcoin-core-dev
3062016-08-02T23:37:08  <sipa> NicolasDorier: i don't understand the logs there
3072016-08-02T23:37:38  <sipa> the "CheckBlockHeader(): block timestamp too far in the future" message is something that implies a header is being received that at the time of receipt is too far in the future
3082016-08-02T23:38:04  <sipa> while the "AcceptBlockHeader: block is marked invalid" message is about the header being marked as invalid in the database
3092016-08-02T23:38:55  <sipa> the two should never occur together
3102016-08-02T23:39:07  <sipa> as the first should result in us not storing the header at all
3112016-08-02T23:45:04  *** aalex__ has quit IRC
3122016-08-02T23:45:35  *** Cheeseo has quit IRC
3132016-08-02T23:46:28  *** aalex__ has joined #bitcoin-core-dev
3142016-08-02T23:47:24  *** Cheeseo has joined #bitcoin-core-dev
3152016-08-02T23:47:24  *** Cheeseo has joined #bitcoin-core-dev
3162016-08-02T23:49:06  *** Chris_Stewart_5 has quit IRC
3172016-08-02T23:51:35  *** Chris_Stewart_5 has joined #bitcoin-core-dev
3182016-08-02T23:54:52  *** aalex__ has quit IRC
3192016-08-02T23:55:13  *** supasonic has quit IRC
3202016-08-02T23:56:29  *** aalex__ has joined #bitcoin-core-dev