12019-03-19T00:00:53  *** ap4lmtree has joined #bitcoin-core-dev
  22019-03-19T00:00:57  *** captjakk has quit IRC
  32019-03-19T00:08:22  *** muoitran has quit IRC
  42019-03-19T00:27:37  *** DavidMitchell[m] has quit IRC
  52019-03-19T00:27:41  *** ajtowns[m] has quit IRC
  62019-03-19T00:27:45  *** stepa[m] has quit IRC
  72019-03-19T00:27:54  *** kewde[m] has quit IRC
  82019-03-19T00:27:59  *** TheFuzzStone[m] has quit IRC
  92019-03-19T00:29:56  *** fanquake has quit IRC
 102019-03-19T00:30:37  *** nullptr| has quit IRC
 112019-03-19T00:34:08  *** ajtowns[m] has joined #bitcoin-core-dev
 122019-03-19T00:34:14  *** nullptr| has joined #bitcoin-core-dev
 132019-03-19T00:49:38  *** pinheadmz has quit IRC
 142019-03-19T00:54:02  *** DavidMitchell[m] has joined #bitcoin-core-dev
 152019-03-19T00:54:02  *** TheFuzzStone[m] has joined #bitcoin-core-dev
 162019-03-19T00:54:02  *** kewde[m] has joined #bitcoin-core-dev
 172019-03-19T00:54:02  *** stepa[m] has joined #bitcoin-core-dev
 182019-03-19T00:56:43  *** fanquake has joined #bitcoin-core-dev
 192019-03-19T01:13:56  *** promag has quit IRC
 202019-03-19T01:20:21  *** zhangzf has joined #bitcoin-core-dev
 212019-03-19T01:29:02  <kallewoof> MarcoFalke: so sorry about the screw-up with that PR :( I will triple check that I don't accidentally commit something unrelated in the future
 222019-03-19T01:34:08  *** IGHOR has quit IRC
 232019-03-19T01:36:38  *** IGHOR has joined #bitcoin-core-dev
 242019-03-19T01:54:22  *** DeanGuss has quit IRC
 252019-03-19T01:55:28  *** zivl has joined #bitcoin-core-dev
 262019-03-19T01:56:10  *** captjakk has joined #bitcoin-core-dev
 272019-03-19T01:58:41  <fanquake> warren thanks, that should be how it's happening now, using the guix-build.sh script from 15277
 282019-03-19T01:59:01  <fanquake> dongcarl I've changed how the docker build works, and now building depends and compiling core all works
 292019-03-19T01:59:20  <fanquake> script just failed on the last step because i forgot to put patchelf into the alpine container
 302019-03-19T02:00:27  *** captjakk has quit IRC
 312019-03-19T02:02:12  *** DeanGuss has joined #bitcoin-core-dev
 322019-03-19T02:14:41  *** randy-waterhouse has joined #bitcoin-core-dev
 332019-03-19T02:14:57  *** randy-waterhouse has joined #bitcoin-core-dev
 342019-03-19T02:17:34  *** riperk has quit IRC
 352019-03-19T02:21:49  *** randy-waterhouse has quit IRC
 362019-03-19T02:25:11  *** spinza has quit IRC
 372019-03-19T02:42:35  *** shesek has joined #bitcoin-core-dev
 382019-03-19T02:42:35  *** shesek has joined #bitcoin-core-dev
 392019-03-19T02:49:07  *** AaronvanW has quit IRC
 402019-03-19T02:51:42  *** murrayn_ has quit IRC
 412019-03-19T02:51:59  *** murrayn has joined #bitcoin-core-dev
 422019-03-19T02:51:59  *** murrayn has joined #bitcoin-core-dev
 432019-03-19T03:00:12  *** spinza has joined #bitcoin-core-dev
 442019-03-19T03:29:01  *** Krellan has quit IRC
 452019-03-19T03:29:29  *** Krellan has joined #bitcoin-core-dev
 462019-03-19T03:34:01  *** Krellan has quit IRC
 472019-03-19T04:36:34  *** mischa010 has joined #bitcoin-core-dev
 482019-03-19T04:37:23  <mischa010> hi, i know transactions are verified when they come into the mempool, but are they verified again when theyre collected into a block?
 492019-03-19T04:37:25  <mischa010> if so, why?
 502019-03-19T04:37:44  <mischa010> (because i know it's an expensive operation)
 512019-03-19T04:37:57  <sipa> yes, though part of the verification is cached
 522019-03-19T04:42:29  <mischa010> is the signature cache size configurable?
 532019-03-19T04:44:04  <sipa> yes
 542019-03-19T04:44:20  <sipa> -maxsigcachesize
 552019-03-19T04:44:56  <sipa> (the argument is in megabytes, the default is 32)
 562019-03-19T04:45:04  <mischa010> cool, thanks!
 572019-03-19T04:51:13  <gmaxwell> mischa010: it's not super simple, because script validity depends on verification flags, which are distinct for mempool and in blocks.
 582019-03-19T04:51:52  <gmaxwell> mischa010: so simply 'being in the mempool' isn't enough to guarentee validity. (also because mempool requirements e.g. for locktimes and such aren't exactly the same as the blocks the end up in)
 592019-03-19T04:52:13  <gmaxwell> also because we really wouldn't want an otherwise largely harmless bug in mempool handling to turn into a serious consensus bug.
 602019-03-19T04:53:23  <mischa010> but what's the use of the cache otherwise?
 612019-03-19T04:53:32  <mischa010> if theyre not reused for blocks
 622019-03-19T04:54:10  <gmaxwell> they are reused for blocks, but the reason it works via a cache is because it can't just use 'in the mempool'
 632019-03-19T04:54:52  <gmaxwell> and, additionally, the cache also reduces some attack vectors.. which was the original purpose of the cache.
 642019-03-19T04:55:38  <mischa010> so are all signatures only verified once? up to cache size limits?
 652019-03-19T04:56:12  <gmaxwell> yes.
 662019-03-19T04:56:23  <mischa010> cool
 672019-03-19T04:56:35  <gmaxwell> the cache has two parts, one is for validity of all scriptsigs in the entire transaction.
 682019-03-19T04:57:31  <gmaxwell> and that cache is by default good for something like a half million txn.
 692019-03-19T04:57:34  <sipa> mischa010: there are 2 distinct caches; one for signatures (which is relatively simple and stores (pubkey,signature,message) tuples), and one for transactions that's much more complicated and stores hashes of transactions together with all context data used for its validation)
 702019-03-19T04:58:01  <mischa010> ive been trying syncing from ramdisk, the speed boost is insane
 712019-03-19T04:58:03  <sipa> both of them store by default 528288 entries
 722019-03-19T04:58:13  <sipa> mischa010: how much ram do you have?
 732019-03-19T04:58:17  <mischa010> so at first ssd was the bottleneck and now cpu, which led me to this question
 742019-03-19T04:58:20  <mischa010> 16gb
 752019-03-19T04:58:25  <sipa> use -dbcache=6000
 762019-03-19T04:58:26  <mischa010> so can't finish i guess
 772019-03-19T04:58:32  <sipa> will be much faster than using a ramdrive
 782019-03-19T04:58:32  <gmaxwell> mischa010: just setting the dbcache larger will give you your speedup.
 792019-03-19T04:58:38  <mischa010> oh i had 4000
 802019-03-19T04:58:54  <mischa010> but i guess more cant hurt
 812019-03-19T04:58:58  <sipa> no
 822019-03-19T04:59:16  <gmaxwell> unless something changed in the last year, large dbcache is a much bigger speedup than a ramdisk, and adding a ramdisk didn't make it any faster (than a SSD) once dbcache was big enough.
 832019-03-19T04:59:20  <mischa010> it looked like i was downloading and verifying around 20-30mbit
 842019-03-19T04:59:32  <mischa010> with spikes to 100% cpu :p
 852019-03-19T04:59:39  <mischa010> on an i7-8700k@5ghz
 862019-03-19T04:59:50  <sipa> that's a lot of GHz
 872019-03-19T05:00:05  <mischa010> air cooled too
 882019-03-19T05:00:08  <gmaxwell> about the fastest it'll go is about 50mbit/sec, due to varrious limitations and bottlenecks.
 892019-03-19T05:00:40  <mischa010> oh havent gotten there yet
 902019-03-19T05:00:53  <mischa010> hmm so dbcache=6000
 912019-03-19T05:00:55  <mischa010> will try that
 922019-03-19T05:04:34  <mischa010> i was surprised to see it use all cores btw, i thought all verification stuff was single threaded?
 932019-03-19T05:05:03  <sipa> no, it's been multithreaded since 0.8
 942019-03-19T05:05:18  <sipa> script validation is, at least
 952019-03-19T05:05:35  <mischa010> ah
 962019-03-19T05:14:25  <echeveria> mischa010: utxo updates however are single threaded.
 972019-03-19T05:14:47  <echeveria> so past a point you gain nothing from more cores.
 982019-03-19T05:15:13  <mischa010> yes i read there was some security problem with making utxo updates multithreaded
 992019-03-19T05:24:52  <gmaxwell> it isn't clear what is meant by 'utxo updates' there.
1002019-03-19T05:25:22  *** pinheadmz has joined #bitcoin-core-dev
1012019-03-19T05:41:51  *** pinheadmz has quit IRC
1022019-03-19T05:46:23  *** Krellan has joined #bitcoin-core-dev
1032019-03-19T05:50:57  *** Krellan has quit IRC
1042019-03-19T05:54:26  *** Krellan has joined #bitcoin-core-dev
1052019-03-19T05:59:23  *** jarthur has joined #bitcoin-core-dev
1062019-03-19T06:15:04  *** promag has joined #bitcoin-core-dev
1072019-03-19T06:20:04  *** promag has quit IRC
1082019-03-19T06:37:42  *** mn94958814 has quit IRC
1092019-03-19T06:37:43  *** mn949588 has quit IRC
1102019-03-19T06:39:08  *** mn949588 has joined #bitcoin-core-dev
1112019-03-19T06:39:09  *** mn94958815 has joined #bitcoin-core-dev
1122019-03-19T06:58:46  *** nullptr| has quit IRC
1132019-03-19T07:00:24  *** nullptr| has joined #bitcoin-core-dev
1142019-03-19T07:04:05  *** fanquake has quit IRC
1152019-03-19T07:22:09  *** pinheadmz has joined #bitcoin-core-dev
1162019-03-19T07:28:36  *** harrymm has joined #bitcoin-core-dev
1172019-03-19T07:38:44  *** pinheadmz has quit IRC
1182019-03-19T07:41:31  *** pinheadmz has joined #bitcoin-core-dev
1192019-03-19T07:42:04  *** pinheadmz has quit IRC
1202019-03-19T07:49:04  *** fanquake has joined #bitcoin-core-dev
1212019-03-19T07:55:30  *** myngho has joined #bitcoin-core-dev
1222019-03-19T08:01:53  *** ccdle12 has joined #bitcoin-core-dev
1232019-03-19T08:02:12  *** myngho has quit IRC
1242019-03-19T08:04:28  *** ccdle12 has quit IRC
1252019-03-19T08:14:00  *** jungly has joined #bitcoin-core-dev
1262019-03-19T08:19:41  *** jungly has quit IRC
1272019-03-19T08:36:38  *** ccdle12 has joined #bitcoin-core-dev
1282019-03-19T08:41:00  *** ccdle12 has joined #bitcoin-core-dev
1292019-03-19T08:43:42  *** bitcoin-git has joined #bitcoin-core-dev
1302019-03-19T08:43:42  <bitcoin-git> [bitcoin] practicalswift opened pull request #15622: Remove globals: Avoid using the global namespace if possible (master...globals-1) https://github.com/bitcoin/bitcoin/pull/15622
1312019-03-19T08:43:45  *** bitcoin-git has left #bitcoin-core-dev
1322019-03-19T09:06:22  *** setpill has joined #bitcoin-core-dev
1332019-03-19T09:06:32  *** jonatack has joined #bitcoin-core-dev
1342019-03-19T09:06:47  *** Deinogalerix21 has joined #bitcoin-core-dev
1352019-03-19T09:27:25  *** Guyver2 has joined #bitcoin-core-dev
1362019-03-19T09:44:15  *** morcos has quit IRC
1372019-03-19T09:44:33  *** morcos has joined #bitcoin-core-dev
1382019-03-19T09:50:10  *** Deinogalerix21 has quit IRC
1392019-03-19T09:54:00  *** phwalkr has joined #bitcoin-core-dev
1402019-03-19T09:57:52  <mischa010> 0.333333333333333333333333333333333333333333333333
1412019-03-19T10:08:36  *** spinza has quit IRC
1422019-03-19T10:14:48  *** promag has joined #bitcoin-core-dev
1432019-03-19T10:16:42  *** shesek has quit IRC
1442019-03-19T10:17:03  *** rex4539 has quit IRC
1452019-03-19T10:25:03  *** DeanGuss has quit IRC
1462019-03-19T10:25:52  *** DeanGuss has joined #bitcoin-core-dev
1472019-03-19T10:27:05  *** spinza has joined #bitcoin-core-dev
1482019-03-19T10:36:40  *** midnightmagic has quit IRC
1492019-03-19T10:49:00  *** DougieBot5000_ has joined #bitcoin-core-dev
1502019-03-19T10:52:04  *** DougieBot5000 has quit IRC
1512019-03-19T11:00:09  *** jonatack has quit IRC
1522019-03-19T11:09:30  *** lnostdal has quit IRC
1532019-03-19T11:18:41  *** rex4539 has joined #bitcoin-core-dev
1542019-03-19T11:31:18  *** shesek has joined #bitcoin-core-dev
1552019-03-19T11:31:18  *** shesek has joined #bitcoin-core-dev
1562019-03-19T11:37:13  *** mmgen has joined #bitcoin-core-dev
1572019-03-19T11:40:52  *** shesek has quit IRC
1582019-03-19T12:05:33  *** IGHOR has quit IRC
1592019-03-19T12:08:47  *** IGHOR has joined #bitcoin-core-dev
1602019-03-19T12:14:55  *** AaronvanW has joined #bitcoin-core-dev
1612019-03-19T12:24:51  *** spaced0ut has quit IRC
1622019-03-19T12:52:54  *** schmidty_ has joined #bitcoin-core-dev
1632019-03-19T12:53:50  *** schmidty has quit IRC
1642019-03-19T12:58:46  *** spaced0ut has joined #bitcoin-core-dev
1652019-03-19T13:11:05  *** promag has quit IRC
1662019-03-19T13:12:40  *** Guyver2 has quit IRC
1672019-03-19T13:41:12  <wumpus> FWIW: if you want your PR to make it into the release notes list of PRs, please make sure it's clear and specific, and tells a user what the use of the change is
1682019-03-19T13:41:58  <wumpus> (I mean, the title)
1692019-03-19T13:58:22  <wumpus> though most PRs are fine in this regard
1702019-03-19T14:14:35  *** mmgen has quit IRC
1712019-03-19T14:14:49  *** mmgen has joined #bitcoin-core-dev
1722019-03-19T14:17:21  *** Zenton has joined #bitcoin-core-dev
1732019-03-19T14:36:22  *** jonatack has joined #bitcoin-core-dev
1742019-03-19T14:49:14  *** kinlo has quit IRC
1752019-03-19T14:51:06  *** kinlo has joined #bitcoin-core-dev
1762019-03-19T15:05:21  *** pinheadmz has joined #bitcoin-core-dev
1772019-03-19T15:07:53  *** Guyver2 has joined #bitcoin-core-dev
1782019-03-19T15:08:06  *** captjakk has joined #bitcoin-core-dev
1792019-03-19T15:32:04  *** mn94958815 has quit IRC
1802019-03-19T15:32:05  *** mn949588 has quit IRC
1812019-03-19T15:40:03  *** Guyver2 has quit IRC
1822019-03-19T15:43:32  *** Guyver2 has joined #bitcoin-core-dev
1832019-03-19T15:52:06  *** zivl has quit IRC
1842019-03-19T15:53:26  *** captjakk has quit IRC
1852019-03-19T15:55:29  *** captjakk has joined #bitcoin-core-dev
1862019-03-19T15:58:53  *** captjakk has quit IRC
1872019-03-19T16:00:44  *** captjakk has joined #bitcoin-core-dev
1882019-03-19T16:01:13  *** midnightmagic has joined #bitcoin-core-dev
1892019-03-19T16:02:05  *** mn949588 has joined #bitcoin-core-dev
1902019-03-19T16:02:06  *** mn94958813 has joined #bitcoin-core-dev
1912019-03-19T16:02:33  *** pinheadmz has quit IRC
1922019-03-19T16:04:25  *** DeanGuss has quit IRC
1932019-03-19T16:05:14  *** ap4lmtree has quit IRC
1942019-03-19T16:05:41  *** zivl has joined #bitcoin-core-dev
1952019-03-19T16:06:40  *** mn949588 has quit IRC
1962019-03-19T16:07:11  *** mn94958813 has quit IRC
1972019-03-19T16:08:04  *** mn949588 has joined #bitcoin-core-dev
1982019-03-19T16:08:09  *** mn94958816 has joined #bitcoin-core-dev
1992019-03-19T16:09:53  *** ap4lmtree has joined #bitcoin-core-dev
2002019-03-19T16:12:35  *** setpill has quit IRC
2012019-03-19T16:12:42  *** mn94958816 has quit IRC
2022019-03-19T16:13:23  *** mn949588 has quit IRC
2032019-03-19T16:16:15  *** ThomasLuong has joined #bitcoin-core-dev
2042019-03-19T16:20:21  *** jonatack has quit IRC
2052019-03-19T16:20:49  *** ThomasLuong has quit IRC
2062019-03-19T16:24:27  *** pinheadmz has joined #bitcoin-core-dev
2072019-03-19T16:32:29  *** ThomasLuong has joined #bitcoin-core-dev
2082019-03-19T16:33:07  *** captjakk has quit IRC
2092019-03-19T16:33:33  *** mn949588 has joined #bitcoin-core-dev
2102019-03-19T16:33:34  *** mn94958814 has joined #bitcoin-core-dev
2112019-03-19T16:33:35  *** ThomasLuong has quit IRC
2122019-03-19T16:34:10  *** fanquake has quit IRC
2132019-03-19T16:34:11  *** ThomasLuong has joined #bitcoin-core-dev
2142019-03-19T16:35:54  *** captjakk has joined #bitcoin-core-dev
2152019-03-19T16:37:57  *** mn949588 has quit IRC
2162019-03-19T16:38:12  *** mn94958814 has quit IRC
2172019-03-19T16:44:59  *** jarthur has quit IRC
2182019-03-19T16:47:22  *** phwalkr has quit IRC
2192019-03-19T16:56:25  *** bitcoin-git has joined #bitcoin-core-dev
2202019-03-19T16:56:25  <bitcoin-git> [bitcoin] MarcoFalke opened pull request #15623: refactor: Expose UndoReadFromDisk in header (master...1903-UndoReadFromDiskHeader) https://github.com/bitcoin/bitcoin/pull/15623
2212019-03-19T16:56:30  *** bitcoin-git has left #bitcoin-core-dev
2222019-03-19T16:58:52  *** dqx_ has joined #bitcoin-core-dev
2232019-03-19T17:00:09  *** elichai2 has joined #bitcoin-core-dev
2242019-03-19T17:06:13  *** jonatack has joined #bitcoin-core-dev
2252019-03-19T17:09:21  *** pinheadmz has quit IRC
2262019-03-19T17:09:48  *** pinheadmz has joined #bitcoin-core-dev
2272019-03-19T17:14:34  *** ThomasLuong has quit IRC
2282019-03-19T17:16:39  *** zivl_ has joined #bitcoin-core-dev
2292019-03-19T17:16:48  *** dqx_ has quit IRC
2302019-03-19T17:18:52  *** ThomasLuong has joined #bitcoin-core-dev
2312019-03-19T17:19:04  *** zivl has quit IRC
2322019-03-19T17:23:34  *** designwish has joined #bitcoin-core-dev
2332019-03-19T17:25:06  *** Krellan has quit IRC
2342019-03-19T17:26:25  *** dqx_ has joined #bitcoin-core-dev
2352019-03-19T17:28:19  *** mn949588 has joined #bitcoin-core-dev
2362019-03-19T17:28:20  *** mn94958817 has joined #bitcoin-core-dev
2372019-03-19T17:32:58  *** mn94958817 has quit IRC
2382019-03-19T17:32:58  *** mn949588 has quit IRC
2392019-03-19T17:35:43  *** jonatack has quit IRC
2402019-03-19T17:44:37  *** jarthur has joined #bitcoin-core-dev
2412019-03-19T17:46:34  *** dqx_ has quit IRC
2422019-03-19T17:48:01  *** dqx_ has joined #bitcoin-core-dev
2432019-03-19T17:51:41  *** dqx_ has quit IRC
2442019-03-19T18:00:09  *** dqx_ has joined #bitcoin-core-dev
2452019-03-19T18:08:48  *** hebasto has quit IRC
2462019-03-19T18:12:47  *** spinza has quit IRC
2472019-03-19T18:20:48  *** Krellan has joined #bitcoin-core-dev
2482019-03-19T18:21:20  *** Guyver2 has quit IRC
2492019-03-19T18:22:35  *** mn949588 has joined #bitcoin-core-dev
2502019-03-19T18:22:35  *** mn94958818 has joined #bitcoin-core-dev
2512019-03-19T18:26:30  *** mn949588 has quit IRC
2522019-03-19T18:26:32  *** mn94958818 has quit IRC
2532019-03-19T18:26:44  *** mn949588 has joined #bitcoin-core-dev
2542019-03-19T18:26:50  *** mn94958819 has joined #bitcoin-core-dev
2552019-03-19T18:33:51  *** spinza has joined #bitcoin-core-dev
2562019-03-19T18:35:57  *** captjakk has quit IRC
2572019-03-19T18:37:34  *** captjakk has joined #bitcoin-core-dev
2582019-03-19T18:40:03  *** Zenton has quit IRC
2592019-03-19T18:48:11  *** mn94958820 has joined #bitcoin-core-dev
2602019-03-19T18:48:13  *** mn94958819 has quit IRC
2612019-03-19T18:58:55  *** StopAndDecrypt has quit IRC
2622019-03-19T19:01:11  *** jarthur has quit IRC
2632019-03-19T19:24:09  *** Guyver2 has joined #bitcoin-core-dev
2642019-03-19T19:26:44  *** jarthur has joined #bitcoin-core-dev
2652019-03-19T19:38:13  *** DeanGuss has joined #bitcoin-core-dev
2662019-03-19T19:46:17  *** owowo has quit IRC
2672019-03-19T19:51:39  *** owowo has joined #bitcoin-core-dev
2682019-03-19T19:53:41  *** obsrver has joined #bitcoin-core-dev
2692019-03-19T19:55:07  *** dviola has joined #bitcoin-core-dev
2702019-03-19T19:55:19  *** Krellan has quit IRC
2712019-03-19T19:56:16  *** Krellan has joined #bitcoin-core-dev
2722019-03-19T20:00:52  *** Krellan has quit IRC
2732019-03-19T20:24:37  *** Aaronvan_ has joined #bitcoin-core-dev
2742019-03-19T20:27:10  *** AaronvanW has quit IRC
2752019-03-19T20:31:43  *** captjakk has quit IRC
2762019-03-19T20:33:28  *** captjakk has joined #bitcoin-core-dev
2772019-03-19T20:35:40  *** DougieBot5000_ is now known as DougieBot5000
2782019-03-19T20:39:20  *** vexbuy has joined #bitcoin-core-dev
2792019-03-19T20:50:03  *** elichai2 has quit IRC
2802019-03-19T20:57:19  *** mn949588 has quit IRC
2812019-03-19T20:57:52  *** mn94958820 has quit IRC
2822019-03-19T20:59:47  *** dviola has quit IRC
2832019-03-19T21:01:55  *** obsrver has quit IRC
2842019-03-19T21:07:24  *** captjakk has quit IRC
2852019-03-19T21:12:11  *** mmgen has quit IRC
2862019-03-19T21:14:32  *** captjakk has joined #bitcoin-core-dev
2872019-03-19T21:17:35  *** mn94958815 has joined #bitcoin-core-dev
2882019-03-19T21:17:35  *** mn949588 has joined #bitcoin-core-dev
2892019-03-19T21:22:35  *** mn94958815 has quit IRC
2902019-03-19T21:22:35  *** mn949588 has quit IRC
2912019-03-19T21:33:24  *** mn949588 has joined #bitcoin-core-dev
2922019-03-19T21:33:25  *** mn94958821 has joined #bitcoin-core-dev
2932019-03-19T21:46:35  *** vexbuy has quit IRC
2942019-03-19T21:57:39  *** captjakk has quit IRC
2952019-03-19T22:07:33  *** instagibbs has quit IRC
2962019-03-19T22:16:44  *** rex4539 has quit IRC
2972019-03-19T22:21:32  *** captjakk has joined #bitcoin-core-dev
2982019-03-19T22:26:53  *** captjakk has quit IRC
2992019-03-19T22:34:51  <echeveria> 2019-03-19T22:33:14Z ERROR: DisconnectTip(): DisconnectBlock 00000000210004840364b52bc5e455d888f164e4264a4fec06a514b67e9d5722 failed
3002019-03-19T22:34:52  <echeveria> 2019-03-19T22:33:14Z ERROR: ProcessNewBlock: ActivateBestChain failed ( (code 0))
3012019-03-19T22:35:03  <echeveria> wonder what happened there (testnet, 0.17)
3022019-03-19T22:39:47  *** Zenton has joined #bitcoin-core-dev
3032019-03-19T22:43:56  *** rex4539 has joined #bitcoin-core-dev
3042019-03-19T22:48:09  <midnightmagic> grep 00000000210004840364b52bc5e455d888f164e4264a4fec06a514b67e9d5722 debug.log |wc -l => 36
3052019-03-19T22:55:55  *** ccdle12 has quit IRC
3062019-03-19T22:58:59  *** spinza has quit IRC
3072019-03-19T23:01:27  *** Guyver2 has quit IRC
3082019-03-19T23:05:20  *** instagibbs has joined #bitcoin-core-dev
3092019-03-19T23:06:57  *** AaronvanW has joined #bitcoin-core-dev
3102019-03-19T23:09:40  *** Aaronvan_ has quit IRC
3112019-03-19T23:10:43  *** jarthur has quit IRC
3122019-03-19T23:13:46  *** spinza has joined #bitcoin-core-dev
3132019-03-19T23:14:32  *** timothy has quit IRC
3142019-03-19T23:20:12  *** captjakk has joined #bitcoin-core-dev
3152019-03-19T23:20:23  *** Krellan has joined #bitcoin-core-dev
3162019-03-19T23:23:02  *** fanquake has joined #bitcoin-core-dev
3172019-03-19T23:24:56  *** ThomasLuong has quit IRC
3182019-03-19T23:29:02  *** promag has joined #bitcoin-core-dev