12020-04-07T00:00:02 *** nevada-smith has quit IRC
22020-04-07T00:02:12 *** Krellan_ has quit IRC
32020-04-07T00:03:59 *** Chris_Stewart_5 has joined #bitcoin-core-dev
42020-04-07T00:05:45 *** AaronvanW has quit IRC
52020-04-07T00:09:29 *** ddustin has joined #bitcoin-core-dev
62020-04-07T00:13:23 *** captjakk has joined #bitcoin-core-dev
72020-04-07T00:16:32 *** Krellan_ has joined #bitcoin-core-dev
82020-04-07T00:17:57 *** ddustin has quit IRC
92020-04-07T00:21:46 *** jayg has joined #bitcoin-core-dev
102020-04-07T01:13:49 *** Emcy has quit IRC
112020-04-07T01:25:50 *** Emcy has joined #bitcoin-core-dev
122020-04-07T01:30:39 *** Chris_Stewart_5 has quit IRC
132020-04-07T01:35:35 *** captjakk has quit IRC
142020-04-07T01:36:08 *** captjakk has joined #bitcoin-core-dev
152020-04-07T01:37:36 *** captjakk has quit IRC
162020-04-07T01:37:47 *** captjakk has joined #bitcoin-core-dev
172020-04-07T01:37:47 *** captjakk has quit IRC
182020-04-07T01:38:23 *** captjakk has joined #bitcoin-core-dev
192020-04-07T01:39:47 *** jarthur has quit IRC
202020-04-07T01:42:50 *** captjakk has quit IRC
212020-04-07T01:43:02 *** captjakk has joined #bitcoin-core-dev
222020-04-07T01:46:56 *** luke-jr has quit IRC
232020-04-07T01:47:24 *** luke-jr has joined #bitcoin-core-dev
242020-04-07T01:51:44 *** luke-jr has quit IRC
252020-04-07T01:53:37 *** luke-jr has joined #bitcoin-core-dev
262020-04-07T02:02:49 *** captjakk has quit IRC
272020-04-07T02:03:25 *** captjakk has joined #bitcoin-core-dev
282020-04-07T02:08:07 *** captjakk has quit IRC
292020-04-07T02:18:09 *** bitcoin-git has joined #bitcoin-core-dev
302020-04-07T02:18:09 <bitcoin-git> [bitcoin] sipa opened pull request #18551: Do not clear validationinterface entries being executed (master...202004_fix_validation_notify_clear) https://github.com/bitcoin/bitcoin/pull/18551
312020-04-07T02:18:11 *** bitcoin-git has left #bitcoin-core-dev
322020-04-07T03:00:01 *** jayg has quit IRC
332020-04-07T03:13:17 *** Emcy has quit IRC
342020-04-07T03:18:52 *** Emcy has joined #bitcoin-core-dev
352020-04-07T03:22:11 *** paultag has joined #bitcoin-core-dev
362020-04-07T03:22:34 *** paultag is now known as Guest3220
372020-04-07T03:28:34 *** TheHoliestRoger has quit IRC
382020-04-07T03:33:34 *** Eagle[TM] has joined #bitcoin-core-dev
392020-04-07T03:34:59 *** EagleTM has quit IRC
402020-04-07T03:37:09 *** Highway61 has quit IRC
412020-04-07T03:47:29 *** luke-jr has quit IRC
422020-04-07T03:50:27 *** luke-jr has joined #bitcoin-core-dev
432020-04-07T03:53:12 *** captjakk has joined #bitcoin-core-dev
442020-04-07T03:57:14 *** ddustin has joined #bitcoin-core-dev
452020-04-07T04:01:15 *** TheHoliestRoger has joined #bitcoin-core-dev
462020-04-07T04:06:59 *** TheHoliestRoger has quit IRC
472020-04-07T04:12:38 <fanquake> Have moved #15774 from 0.20.0 to the future milestone. Shouldn't be anything more than needs doing there for this release.
482020-04-07T04:12:39 <gribble> https://github.com/bitcoin/bitcoin/issues/15774 | macOS App Notarization · Issue #15774 · bitcoin/bitcoin · GitHub
492020-04-07T04:14:59 <fanquake> Moved #17020 from 0.20.0 to 0.21.0. While those might all be nice improvements, nothing specific that should be blocking 0.20.0 at this stage.
502020-04-07T04:15:00 <gribble> https://github.com/bitcoin/bitcoin/issues/17020 | contrib: makeseeds.py improvements · Issue #17020 · bitcoin/bitcoin · GitHub
512020-04-07T04:18:03 *** sdaftuar_ has quit IRC
522020-04-07T04:18:51 *** sdaftuar_ has joined #bitcoin-core-dev
532020-04-07T04:20:43 <fanquake> sipa: could you take a look at #18456 and see if there is anything *obvious* that could be the problem?
542020-04-07T04:20:44 <gribble> https://github.com/bitcoin/bitcoin/issues/18456 | bitcoin-qt/bitcoind crashes upon startup of crypto/sha256_shani. Illegal instruction · Issue #18456 · bitcoin/bitcoin · GitHub
552020-04-07T04:31:16 *** TheHoliestRoger has joined #bitcoin-core-dev
562020-04-07T04:57:50 *** ppisati has quit IRC
572020-04-07T05:00:17 *** jorijn has quit IRC
582020-04-07T05:00:29 <aj> fanquake: the configure test doesn't check that particular call, i guess? but _mm_set_epi64x is supposed to be part of sse2 so seems pretty weird
592020-04-07T05:00:46 *** jorijn has joined #bitcoin-core-dev
602020-04-07T05:04:35 *** ppisati has joined #bitcoin-core-dev
612020-04-07T05:04:43 *** sdaftuar_ has quit IRC
622020-04-07T05:05:22 <sipa> the configure check is irrelevant
632020-04-07T05:05:33 <fanquake> sipa: btw can you block SatoshiNakamotogmx
642020-04-07T05:05:40 <sipa> that's testing whether your compiler supports that function, which it clearly does (otherwise the code would not have compiled)
652020-04-07T05:06:14 <sipa> the problem is that it's calling _mm_set_epi64x during global initialization, before any runtime checks are done
662020-04-07T05:06:27 <sipa> that's a bug, i think, because it would definitely fail on a system without sse2
672020-04-07T05:06:42 <sipa> (i still don't understand why it fails on *his* system, because it supports sse2...)
682020-04-07T05:08:33 *** sdaftuar_ has joined #bitcoin-core-dev
692020-04-07T05:09:19 *** captjakk has quit IRC
702020-04-07T05:09:55 *** captjakk has joined #bitcoin-core-dev
712020-04-07T05:14:41 *** captjakk has quit IRC
722020-04-07T05:17:34 <aj> sipa: the backtrace includes sha256_shani::Transform, which shouldn't get referenced unless have_sse4 is set unless i'm misreading?
732020-04-07T05:21:50 <sipa> fanquake: done
742020-04-07T05:22:01 <sipa> aj: i think it may just be "global initializer for"
752020-04-07T05:22:52 <fanquake> sipa: thanks. I couldnât quite make out the Adobe photo..
762020-04-07T05:23:04 <aj> sipa: ah, yeah, it also references line 19 which is INIT0 def
772020-04-07T05:24:23 <sipa> aj: trying something
782020-04-07T05:28:57 *** bitcoin-git has joined #bitcoin-core-dev
792020-04-07T05:28:57 <bitcoin-git> [bitcoin] sipa opened pull request #18553: Avoid non-trivial global constants in SHA-NI code (master...202004_no_global_init_shani) https://github.com/bitcoin/bitcoin/pull/18553
802020-04-07T05:28:58 *** bitcoin-git has left #bitcoin-core-dev
812020-04-07T05:29:47 <aj> +inline __m128i MASK() { return _mm_set_epi64x(0x0c0d0e0f08090a0bULL, 0x0405060700010203ULL); }
822020-04-07T05:29:51 <aj> sipa: ^ ?
832020-04-07T05:30:50 <sipa> yeah that could also work
842020-04-07T05:32:39 *** filchef has joined #bitcoin-core-dev
852020-04-07T05:47:47 *** dviola has quit IRC
862020-04-07T06:00:01 *** Guest3220 has quit IRC
872020-04-07T06:00:16 <sipa> ah, what i suspect is going on: even though the intrinsic is an SSE2 one, it is executed in a compilation unit compiled for SSE4+SHA-NI, which means it's not impossible that that intrinsic is actually compiled to an SSE4 instruction for him
882020-04-07T06:00:35 <sipa> and then executed at startup before checking that SSE4 is available
892020-04-07T06:03:35 <fanquake> sipa: would that be as part of some random usage before AppInitSanityChecks() is called?
902020-04-07T06:05:30 <sipa> fanquake: no, a global initializer
912020-04-07T06:05:34 <sipa> before main() runs
922020-04-07T06:06:41 *** jeremyrubin has quit IRC
932020-04-07T06:07:04 *** jeremyrubin has joined #bitcoin-core-dev
942020-04-07T06:07:46 <fanquake> right, I thought one of those required some randomness. Will have to look again.
952020-04-07T06:08:14 <sipa> fanquake: no, look at the code in sha256_shani.cpp
962020-04-07T06:08:28 <sipa> the initializer for MASK, INIT0, INIT1
972020-04-07T06:08:34 <sipa> they require running code
982020-04-07T06:09:10 <sipa> there are global initializers for randomness too which are annoying, but that's unrelated to this
992020-04-07T06:10:21 <fanquake> ah ok, that's what I was thinking off. I see the calls in sha256_shani
1002020-04-07T06:12:50 *** shesek has quit IRC
1012020-04-07T06:13:15 *** shesek has joined #bitcoin-core-dev
1022020-04-07T06:13:15 *** shesek has joined #bitcoin-core-dev
1032020-04-07T06:17:58 *** AmberJ_ has joined #bitcoin-core-dev
1042020-04-07T06:49:24 *** manantial has joined #bitcoin-core-dev
1052020-04-07T06:49:57 *** Emcy has quit IRC
1062020-04-07T06:50:42 <aj> sipa: hmm, that makes sense, though not seeing what sse4 or avx instruction it could be. there's some "more efficient" variants in sse3 that could do it maybe
1072020-04-07T06:52:23 *** Emcy has joined #bitcoin-core-dev
1082020-04-07T06:53:08 *** dviola has joined #bitcoin-core-dev
1092020-04-07T07:02:26 *** TheRec_ has joined #bitcoin-core-dev
1102020-04-07T07:02:26 *** TheRec_ has joined #bitcoin-core-dev
1112020-04-07T07:03:27 *** TheHoliestRoger has quit IRC
1122020-04-07T07:03:27 *** BGL has quit IRC
1132020-04-07T07:03:27 *** TheRec has quit IRC
1142020-04-07T07:03:56 *** TheHoliestRoger has joined #bitcoin-core-dev
1152020-04-07T07:06:05 *** gribble has quit IRC
1162020-04-07T07:06:51 *** rjected has quit IRC
1172020-04-07T07:07:16 *** rjected has joined #bitcoin-core-dev
1182020-04-07T07:07:28 *** Guyver2 has joined #bitcoin-core-dev
1192020-04-07T07:17:22 *** gribble has joined #bitcoin-core-dev
1202020-04-07T07:21:07 *** justanotheruser has quit IRC
1212020-04-07T07:25:16 *** justanotheruser has joined #bitcoin-core-dev
1222020-04-07T07:41:08 *** vasild_ has joined #bitcoin-core-dev
1232020-04-07T07:41:43 *** Victor_sueca has joined #bitcoin-core-dev
1242020-04-07T07:42:32 *** emilengler has joined #bitcoin-core-dev
1252020-04-07T07:44:23 *** vasild has quit IRC
1262020-04-07T07:44:24 *** vasild_ is now known as vasild
1272020-04-07T07:44:49 *** Victorsueca has quit IRC
1282020-04-07T07:59:25 *** BGL has joined #bitcoin-core-dev
1292020-04-07T08:02:16 *** marcoagner has joined #bitcoin-core-dev
1302020-04-07T08:08:44 *** Talkless has joined #bitcoin-core-dev
1312020-04-07T08:17:07 *** Kiminuo has quit IRC
1322020-04-07T08:21:19 *** dviola has quit IRC
1332020-04-07T08:21:19 *** dviola has joined #bitcoin-core-dev
1342020-04-07T08:21:30 *** dviola has left #bitcoin-core-dev
1352020-04-07T08:21:50 *** dviola has joined #bitcoin-core-dev
1362020-04-07T08:24:20 *** Kiminuo has joined #bitcoin-core-dev
1372020-04-07T08:34:41 *** marcoagner has quit IRC
1382020-04-07T08:36:39 *** kljasdfvv has quit IRC
1392020-04-07T08:38:02 *** kljasdfvv has joined #bitcoin-core-dev
1402020-04-07T08:45:48 *** AaronvanW has joined #bitcoin-core-dev
1412020-04-07T08:52:15 *** dr-orlovsky has joined #bitcoin-core-dev
1422020-04-07T09:00:02 *** AmberJ_ has quit IRC
1432020-04-07T09:00:29 *** manj-gnome has joined #bitcoin-core-dev
1442020-04-07T09:01:48 *** Highway61 has joined #bitcoin-core-dev
1452020-04-07T09:14:28 *** tekojo has joined #bitcoin-core-dev
1462020-04-07T09:43:30 *** timothy has joined #bitcoin-core-dev
1472020-04-07T09:46:51 *** manj-gnome has quit IRC
1482020-04-07T10:03:54 *** Patsy43Barrows has joined #bitcoin-core-dev
1492020-04-07T10:17:57 *** dr-orlovsky has quit IRC
1502020-04-07T10:44:29 *** bitcoin-git has joined #bitcoin-core-dev
1512020-04-07T10:44:29 <bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/abc145c9a4ae...d12568e2f886
1522020-04-07T10:44:30 <bitcoin-git> bitcoin/master 56fe839 Hennadii Stepanov: qt: Fix Window -> Minimize menu item
1532020-04-07T10:44:30 <bitcoin-git> bitcoin/master d12568e MarcoFalke: Merge #18549: qt: Fix Window -> Minimize menu item
1542020-04-07T10:44:32 *** bitcoin-git has left #bitcoin-core-dev
1552020-04-07T10:44:49 *** bitcoin-git has joined #bitcoin-core-dev
1562020-04-07T10:44:49 <bitcoin-git> [bitcoin] MarcoFalke merged pull request #18549: qt: Fix Window -> Minimize menu item (master...20200406-fix-minimize) https://github.com/bitcoin/bitcoin/pull/18549
1572020-04-07T10:44:58 *** bitcoin-git has left #bitcoin-core-dev
1582020-04-07T10:45:19 *** Chris_Stewart_5 has joined #bitcoin-core-dev
1592020-04-07T10:46:45 *** AaronvanW has quit IRC
1602020-04-07T10:47:02 *** AaronvanW has joined #bitcoin-core-dev
1612020-04-07T10:49:07 *** bitcoin-git has joined #bitcoin-core-dev
1622020-04-07T10:49:07 <bitcoin-git> [bitcoin] MarcoFalke pushed 4 commits to master: https://github.com/bitcoin/bitcoin/compare/d12568e2f886...63dad673487d
1632020-04-07T10:49:07 <bitcoin-git> bitcoin/master d7092c3 Luke Dashjr: QA: Test that change doesn't turn into non-change when spent in an avoid-r...
1642020-04-07T10:49:08 <bitcoin-git> bitcoin/master 2952c46 Luke Dashjr: Wallet: Replace CAddressBookData.name with GetLabel() method
1652020-04-07T10:49:08 <bitcoin-git> bitcoin/master 7a2ecf1 Luke Dashjr: Wallet: Change IsMine check in CWallet::DelAddressBook from assert to fail...
1662020-04-07T10:49:10 *** bitcoin-git has left #bitcoin-core-dev
1672020-04-07T10:49:27 *** bitcoin-git has joined #bitcoin-core-dev
1682020-04-07T10:49:27 <bitcoin-git> [bitcoin] MarcoFalke merged pull request #18546: Bugfix: Wallet: Safely deal with change in the address book [part 2] (master...bugfix_addressbook_change) https://github.com/bitcoin/bitcoin/pull/18546
1692020-04-07T10:49:28 *** bitcoin-git has left #bitcoin-core-dev
1702020-04-07T10:52:32 *** Patsy43Barrows has quit IRC
1712020-04-07T10:56:06 *** binarybonanza has quit IRC
1722020-04-07T11:20:18 *** bitcoin-git has joined #bitcoin-core-dev
1732020-04-07T11:20:18 <bitcoin-git> [bitcoin] mrwhythat opened pull request #18554: wallet: ensure wallet files are not reused across chains (master...wallet-file-reuse-prevention) https://github.com/bitcoin/bitcoin/pull/18554
1742020-04-07T11:20:29 *** bitcoin-git has left #bitcoin-core-dev
1752020-04-07T11:23:17 *** Highway62 has joined #bitcoin-core-dev
1762020-04-07T11:24:40 *** Highway61 has quit IRC
1772020-04-07T11:24:41 *** Highway62 is now known as Highway61
1782020-04-07T11:28:40 *** bitcoin-git has joined #bitcoin-core-dev
1792020-04-07T11:28:40 <bitcoin-git> [bitcoin] MarcoFalke opened pull request #18555: wallet: Abort when assumption fails in debug mode (master...2004-walletAssumeAbortDebug) https://github.com/bitcoin/bitcoin/pull/18555
1802020-04-07T11:28:41 *** bitcoin-git has left #bitcoin-core-dev
1812020-04-07T11:51:03 *** braydonf has quit IRC
1822020-04-07T11:56:04 *** sipa has quit IRC
1832020-04-07T11:56:40 *** sipa has joined #bitcoin-core-dev
1842020-04-07T12:00:01 *** tekojo has quit IRC
1852020-04-07T12:03:56 *** braydonf has joined #bitcoin-core-dev
1862020-04-07T12:20:20 *** pabelanger1 has joined #bitcoin-core-dev
1872020-04-07T12:24:43 *** belcher has joined #bitcoin-core-dev
1882020-04-07T12:26:59 *** emilengler has quit IRC
1892020-04-07T12:27:13 *** emilengler has joined #bitcoin-core-dev
1902020-04-07T12:34:02 *** jonatack_ has quit IRC
1912020-04-07T12:52:09 *** jonatack has joined #bitcoin-core-dev
1922020-04-07T12:56:53 *** molly has joined #bitcoin-core-dev
1932020-04-07T12:57:46 *** geforce04 has joined #bitcoin-core-dev
1942020-04-07T12:59:09 *** Guyver2_ has joined #bitcoin-core-dev
1952020-04-07T12:59:37 *** mol has quit IRC
1962020-04-07T13:01:44 *** Guyver2 has quit IRC
1972020-04-07T13:07:23 *** Guyver2__ has joined #bitcoin-core-dev
1982020-04-07T13:08:45 *** Guyver2__ is now known as Guyver2
1992020-04-07T13:09:40 *** Guyver2_ has quit IRC
2002020-04-07T13:13:27 *** geforce04 has quit IRC
2012020-04-07T13:15:58 *** theStack has joined #bitcoin-core-dev
2022020-04-07T13:17:38 *** fearbeag has quit IRC
2032020-04-07T13:19:42 *** molly has quit IRC
2042020-04-07T13:22:21 *** Guyver2_ has joined #bitcoin-core-dev
2052020-04-07T13:22:46 *** DeanWeen has quit IRC
2062020-04-07T13:23:11 *** DeanWeen has joined #bitcoin-core-dev
2072020-04-07T13:26:02 *** Guyver2 has quit IRC
2082020-04-07T13:43:05 *** bsm117532 has quit IRC
2092020-04-07T13:50:24 *** Highway61 has quit IRC
2102020-04-07T13:53:21 *** Highway61 has joined #bitcoin-core-dev
2112020-04-07T13:58:49 *** bsm117532 has joined #bitcoin-core-dev
2122020-04-07T14:04:33 *** mol has joined #bitcoin-core-dev
2132020-04-07T14:17:52 *** jonatack_ has joined #bitcoin-core-dev
2142020-04-07T14:20:30 *** jonatack has quit IRC
2152020-04-07T14:25:26 *** Kiminuo has quit IRC
2162020-04-07T14:28:12 *** dr-orlovsky has joined #bitcoin-core-dev
2172020-04-07T14:31:39 *** ghost43 has quit IRC
2182020-04-07T14:31:59 *** ghost43 has joined #bitcoin-core-dev
2192020-04-07T14:32:23 *** mol has quit IRC
2202020-04-07T14:40:28 *** dr-orlovsky has quit IRC
2212020-04-07T14:47:55 *** justanotheruser has quit IRC
2222020-04-07T14:51:21 *** captjakk has joined #bitcoin-core-dev
2232020-04-07T15:00:02 *** pabelanger1 has quit IRC
2242020-04-07T15:01:38 *** hebasto has quit IRC
2252020-04-07T15:02:52 *** justanotheruser has joined #bitcoin-core-dev
2262020-04-07T15:07:14 *** wbnns is now known as en1on
2272020-04-07T15:07:50 *** en1on has joined #bitcoin-core-dev
2282020-04-07T15:08:40 *** SiAnDoG__ has quit IRC
2292020-04-07T15:11:59 *** hebasto has joined #bitcoin-core-dev
2302020-04-07T15:13:27 *** en1on has quit IRC
2312020-04-07T15:13:51 *** en1on has joined #bitcoin-core-dev
2322020-04-07T15:18:43 *** jonatack_ has quit IRC
2332020-04-07T15:21:23 *** andrea has joined #bitcoin-core-dev
2342020-04-07T15:21:30 *** andrea is now known as Guest94087
2352020-04-07T15:28:50 *** catstack has joined #bitcoin-core-dev
2362020-04-07T15:29:35 *** catstack has quit IRC
2372020-04-07T15:31:08 *** jonatack has joined #bitcoin-core-dev
2382020-04-07T15:39:18 *** mol has joined #bitcoin-core-dev
2392020-04-07T15:45:49 *** mol has quit IRC
2402020-04-07T15:47:44 *** bitcoin-git has joined #bitcoin-core-dev
2412020-04-07T15:47:44 <bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/63dad673487d...1b151e3ffce7
2422020-04-07T15:47:44 <bitcoin-git> bitcoin/master fa1a922 MarcoFalke: rpc: Avoid initialization-order-fiasco on static CRPCCommand tables
2432020-04-07T15:47:45 <bitcoin-git> bitcoin/master 1b151e3 MarcoFalke: Merge #18532: rpc: Avoid initialization-order-fiasco on static CRPCCommand...
2442020-04-07T15:47:46 *** bitcoin-git has left #bitcoin-core-dev
2452020-04-07T15:47:59 *** bitcoin-git has joined #bitcoin-core-dev
2462020-04-07T15:47:59 <bitcoin-git> [bitcoin] MarcoFalke merged pull request #18532: rpc: Avoid initialization-order-fiasco on static CRPCCommand tables (master...2004-rpcNoFiasco) https://github.com/bitcoin/bitcoin/pull/18532
2472020-04-07T15:48:08 *** bitcoin-git has left #bitcoin-core-dev
2482020-04-07T15:51:21 *** mol has joined #bitcoin-core-dev
2492020-04-07T16:09:15 *** jarthur has joined #bitcoin-core-dev
2502020-04-07T16:20:09 *** ghost43 has quit IRC
2512020-04-07T16:21:56 *** ghost43 has joined #bitcoin-core-dev
2522020-04-07T16:26:45 *** ddustin_ has joined #bitcoin-core-dev
2532020-04-07T16:28:31 *** ddustin has quit IRC
2542020-04-07T16:45:49 *** andrewtoth_ has joined #bitcoin-core-dev
2552020-04-07T16:46:23 *** andrewtoth has quit IRC
2562020-04-07T16:49:43 *** braydonf has quit IRC
2572020-04-07T16:51:23 *** andrewtoth_ has quit IRC
2582020-04-07T17:03:12 *** braydonf has joined #bitcoin-core-dev
2592020-04-07T17:05:45 *** Krellan_ has quit IRC
2602020-04-07T17:06:12 *** Krellan_ has joined #bitcoin-core-dev
2612020-04-07T17:08:47 *** molly has joined #bitcoin-core-dev
2622020-04-07T17:11:51 *** mol has quit IRC
2632020-04-07T17:12:57 *** Krellan_ has quit IRC
2642020-04-07T17:16:15 *** andrewtoth has joined #bitcoin-core-dev
2652020-04-07T17:40:12 *** SiAnDoG has joined #bitcoin-core-dev
2662020-04-07T17:48:47 *** Krellan_ has joined #bitcoin-core-dev
2672020-04-07T17:55:32 *** Krellan_ has quit IRC
2682020-04-07T18:00:01 *** Guest94087 has quit IRC
2692020-04-07T18:13:13 *** molz_ has joined #bitcoin-core-dev
2702020-04-07T18:16:14 *** molly has quit IRC
2712020-04-07T18:22:19 *** fsargent has joined #bitcoin-core-dev
2722020-04-07T18:23:35 *** someone235 has quit IRC
2732020-04-07T18:38:34 <sipa> MarcoFalke or others: do you know what's going wrong here? https://travis-ci.org/github/bitcoin/bitcoin/jobs/671910152
2742020-04-07T18:38:51 <sipa> i believe it's a timeout or so, as it ran for a really long time
2752020-04-07T18:39:04 <sipa> but is there any indication in the log itself that that is the case?
2762020-04-07T18:40:35 *** Highway61 has quit IRC
2772020-04-07T18:47:34 *** alec has quit IRC
2782020-04-07T18:47:49 *** alec has joined #bitcoin-core-dev
2792020-04-07T18:56:28 *** Kiminuo has joined #bitcoin-core-dev
2802020-04-07T18:57:30 *** BamBaRay36 has joined #bitcoin-core-dev
2812020-04-07T19:03:43 *** dr-orlovsky has joined #bitcoin-core-dev
2822020-04-07T19:09:10 *** molly has joined #bitcoin-core-dev
2832020-04-07T19:12:19 *** molz_ has quit IRC
2842020-04-07T19:18:20 *** bitcoin-git has joined #bitcoin-core-dev
2852020-04-07T19:18:20 <bitcoin-git> [bitcoin] hebasto opened pull request #18556: build: Drop make dist in gitian builds (master...20200406-drop-dist) https://github.com/bitcoin/bitcoin/pull/18556
2862020-04-07T19:18:21 *** bitcoin-git has left #bitcoin-core-dev
2872020-04-07T19:18:28 <hebasto> dongcarl: ^
2882020-04-07T19:21:26 *** emilengler has quit IRC
2892020-04-07T19:21:43 *** emilengler has joined #bitcoin-core-dev
2902020-04-07T19:22:11 *** bitcoin-git has joined #bitcoin-core-dev
2912020-04-07T19:22:11 <bitcoin-git> [bitcoin] hebasto closed pull request #18404: build: Drop unused ${WRAP_DIR}/${HOST} directory (master...20200322-gitian-win) https://github.com/bitcoin/bitcoin/pull/18404
2922020-04-07T19:22:12 *** bitcoin-git has left #bitcoin-core-dev
2932020-04-07T19:22:31 *** bitcoin-git has joined #bitcoin-core-dev
2942020-04-07T19:22:31 <bitcoin-git> [bitcoin] hebasto closed pull request #18349: build: Fix quick hack for version string in releases (master...20200314-version-workaround) https://github.com/bitcoin/bitcoin/pull/18349
2952020-04-07T19:22:32 *** bitcoin-git has left #bitcoin-core-dev
2962020-04-07T19:24:51 *** Highway61 has joined #bitcoin-core-dev
2972020-04-07T19:29:37 *** owowo has quit IRC
2982020-04-07T19:34:06 *** kallewoof has quit IRC
2992020-04-07T19:35:13 *** kallewoof has joined #bitcoin-core-dev
3002020-04-07T19:35:28 *** owowo has joined #bitcoin-core-dev
3012020-04-07T19:35:29 *** kristapsk has quit IRC
3022020-04-07T19:36:23 *** kristapsk has joined #bitcoin-core-dev
3032020-04-07T19:40:10 <hebasto> is travis dead for me only?
3042020-04-07T19:41:02 *** vasild_ has joined #bitcoin-core-dev
3052020-04-07T19:44:23 *** vasild has quit IRC
3062020-04-07T19:44:24 *** vasild_ is now known as vasild
3072020-04-07T19:52:59 <sipa> hebasto: seems so
3082020-04-07T20:00:35 <elichai2> For some reason travis didn't run in #18553
3092020-04-07T20:00:36 <gribble> https://github.com/bitcoin/bitcoin/issues/18553 | Avoid non-trivial global constants in SHA-NI code by sipa · Pull Request #18553 · bitcoin/bitcoin · GitHub
3102020-04-07T20:02:07 <sipa> elichai2: yeah, noticed that to
3112020-04-07T20:02:12 <sipa> will push again
3122020-04-07T20:10:39 *** Chris_Stewart_5 has quit IRC
3132020-04-07T20:17:40 *** Krellan_ has joined #bitcoin-core-dev
3142020-04-07T20:22:32 *** Krellan_ has quit IRC
3152020-04-07T20:22:57 *** emilengler has quit IRC
3162020-04-07T20:25:50 *** dr-orlovsky has quit IRC
3172020-04-07T20:59:37 <sipa> elichai2: done
3182020-04-07T21:00:02 *** fsargent has quit IRC
3192020-04-07T21:00:43 <elichai2> Seems to be running now
3202020-04-07T21:07:42 *** justanotheruser has quit IRC
3212020-04-07T21:08:13 *** molz_ has joined #bitcoin-core-dev
3222020-04-07T21:10:20 *** mol has joined #bitcoin-core-dev
3232020-04-07T21:10:50 *** bitcoin-git has joined #bitcoin-core-dev
3242020-04-07T21:10:50 <bitcoin-git> [bitcoin] hebasto opened pull request #18557: [WIP] ci: Disable AppVeyor update on 2020-03-20 (master...20200407-fix-appveyor) https://github.com/bitcoin/bitcoin/pull/18557
3252020-04-07T21:10:51 *** bitcoin-git has left #bitcoin-core-dev
3262020-04-07T21:11:14 *** molly has quit IRC
3272020-04-07T21:11:57 <hebasto> Hope, this ^ could fix AppVeyor errors.
3282020-04-07T21:12:45 *** molz_ has quit IRC
3292020-04-07T21:19:28 <sipsorcery> hebasto: the python unit tests have never been particularly reliable on appveyor.
3302020-04-07T21:20:10 <sipsorcery> I'd be sceptical that the latest build image update has had any impact.
3312020-04-07T21:20:14 *** simonbusborg has joined #bitcoin-core-dev
3322020-04-07T21:22:16 <sipsorcery> Seems to be Windows is fussier about cleaning up sockets. Main error in the appveyor logs:
3332020-04-07T21:22:22 <sipsorcery> OSError: [WinError 10048] Only one usage of each socket address (protocol/network address/port) is normally permitted
3342020-04-07T21:24:37 <hebasto> sipsorcery: there is a correlation between start of massive [WinError 10048] and the latest image update :)
3352020-04-07T21:24:42 *** luke-jr has quit IRC
3362020-04-07T21:26:25 <sipsorcery> I wonder if there was any change to the RPC test mechanism around the same time?
3372020-04-07T21:27:04 <sipsorcery> I'll see if I can replicate on my Windows machine.
3382020-04-07T21:27:10 <hebasto> cool
3392020-04-07T21:28:42 *** justanotheruser has joined #bitcoin-core-dev
3402020-04-07T21:30:24 *** Krellan_ has joined #bitcoin-core-dev
3412020-04-07T21:33:40 *** BamBaRay36 has quit IRC
3422020-04-07T21:34:59 *** luke-jr has joined #bitcoin-core-dev
3432020-04-07T21:36:02 *** Krellan_ has quit IRC
3442020-04-07T21:40:57 *** BamBaRay36 has joined #bitcoin-core-dev
3452020-04-07T21:46:07 *** BamBaRay36 has quit IRC
3462020-04-07T21:46:10 *** Talkless has quit IRC
3472020-04-07T21:46:16 *** BamBaRay36 has joined #bitcoin-core-dev
3482020-04-07T21:53:07 *** timothy has quit IRC
3492020-04-07T21:53:34 *** filchef has quit IRC
3502020-04-07T21:59:03 *** BamBaRay36 has quit IRC
3512020-04-07T22:12:14 *** manantial has quit IRC
3522020-04-07T22:30:27 <hebasto> regarding boost detection on ARM #17010 #18501
3532020-04-07T22:30:30 <gribble> https://github.com/bitcoin/bitcoin/issues/17010 | Missing Boost::System on ARM Ubuntu 18.04 · Issue #17010 · bitcoin/bitcoin · GitHub
3542020-04-07T22:30:31 <gribble> https://github.com/bitcoin/bitcoin/issues/18501 | build: Fix boost detection on Ubuntu ARM 18.04 by hebasto · Pull Request #18501 · bitcoin/bitcoin · GitHub
3552020-04-07T22:30:40 <hebasto> please consider https://github.com/bitcoin/bitcoin/issues/17010#issuecomment-610651736
3562020-04-07T22:31:14 *** Krellan_ has joined #bitcoin-core-dev
3572020-04-07T22:31:19 *** Chris_Stewart_5 has joined #bitcoin-core-dev
3582020-04-07T22:35:58 *** stackingcore21 has quit IRC
3592020-04-07T22:36:06 *** stackingcore21 has joined #bitcoin-core-dev
3602020-04-07T22:39:30 *** stackingcore21 has quit IRC
3612020-04-07T22:42:25 *** stackingcore21 has joined #bitcoin-core-dev
3622020-04-07T22:45:45 *** stackingcore21 has quit IRC
3632020-04-07T22:46:15 *** stackingcore21 has joined #bitcoin-core-dev
3642020-04-07T22:46:43 *** Krellan_ has quit IRC
3652020-04-07T22:49:06 *** Guyver2_ has quit IRC
3662020-04-07T22:52:14 *** bitcoin-git has joined #bitcoin-core-dev
3672020-04-07T22:52:14 <bitcoin-git> [bitcoin] hebasto closed pull request #18557: [WIP] ci: Disable AppVeyor update on 2020-03-20 (master...20200407-fix-appveyor) https://github.com/bitcoin/bitcoin/pull/18557
3682020-04-07T22:52:15 *** bitcoin-git has left #bitcoin-core-dev
3692020-04-07T22:52:25 <hebasto> sipsorcery: you were right :)
3702020-04-07T22:55:27 *** owowo has quit IRC
3712020-04-07T23:28:06 *** glooooooo has joined #bitcoin-core-dev
3722020-04-07T23:46:34 *** bitcoin-git has joined #bitcoin-core-dev
3732020-04-07T23:46:35 <bitcoin-git> [bitcoin] MarcoFalke closed pull request #18556: build: Drop make dist in gitian builds (master...20200406-drop-dist) https://github.com/bitcoin/bitcoin/pull/18556
3742020-04-07T23:46:36 *** bitcoin-git has left #bitcoin-core-dev
3752020-04-07T23:46:54 *** bitcoin-git has joined #bitcoin-core-dev
3762020-04-07T23:46:55 <bitcoin-git> [bitcoin] MarcoFalke reopened pull request #18556: build: Drop make dist in gitian builds (master...20200406-drop-dist) https://github.com/bitcoin/bitcoin/pull/18556
3772020-04-07T23:46:56 *** bitcoin-git has left #bitcoin-core-dev
3782020-04-07T23:47:51 *** owowo has joined #bitcoin-core-dev