12020-02-21T00:00:01 *** elsimio has quit IRC
22020-02-21T00:12:29 *** promag has quit IRC
32020-02-21T00:18:10 *** IOMonster1 has joined #bitcoin-core-dev
42020-02-21T00:33:40 *** promag has joined #bitcoin-core-dev
52020-02-21T00:41:12 *** bitcoin-git has joined #bitcoin-core-dev
62020-02-21T00:41:12 <bitcoin-git> [bitcoin] fanquake closed pull request #18171: build: add macOS signing entitlements to macdeploy (master...macos_signing_requirements) https://github.com/bitcoin/bitcoin/pull/18171
72020-02-21T00:41:13 *** bitcoin-git has left #bitcoin-core-dev
82020-02-21T00:43:37 *** rjected has joined #bitcoin-core-dev
92020-02-21T00:52:46 *** Chris_Stewart_5 has quit IRC
102020-02-21T00:54:09 <yevaud> I'm running rc2 on armv7/armv8 in a few weird setups. haven't seen anything noticeably wrong.
112020-02-21T00:54:57 *** Chris_Stewart_5 has joined #bitcoin-core-dev
122020-02-21T00:59:33 *** promag has quit IRC
132020-02-21T01:12:30 *** amiti has quit IRC
142020-02-21T01:12:30 *** valwal has quit IRC
152020-02-21T01:12:36 *** davec has joined #bitcoin-core-dev
162020-02-21T01:12:36 *** spinza has quit IRC
172020-02-21T01:12:45 *** wumpus2 has joined #bitcoin-core-dev
182020-02-21T01:14:15 *** wumpus has quit IRC
192020-02-21T01:15:35 *** amiti has joined #bitcoin-core-dev
202020-02-21T01:17:33 *** valwal has joined #bitcoin-core-dev
212020-02-21T01:31:57 *** DeanGuss has joined #bitcoin-core-dev
222020-02-21T01:35:25 <fanquake> yevaud: thanks for testing
232020-02-21T01:39:50 *** pinheadmz_ has joined #bitcoin-core-dev
242020-02-21T01:41:23 *** mol has quit IRC
252020-02-21T01:41:48 *** mol has joined #bitcoin-core-dev
262020-02-21T01:42:16 *** pinheadmz has quit IRC
272020-02-21T01:42:21 *** pinheadmz_ is now known as pinheadmz
282020-02-21T01:43:54 *** molly has joined #bitcoin-core-dev
292020-02-21T01:46:37 *** mol has quit IRC
302020-02-21T01:50:53 *** AaronvanW has joined #bitcoin-core-dev
312020-02-21T01:58:23 *** spinza has joined #bitcoin-core-dev
322020-02-21T02:02:06 *** Chris_Stewart_5 has quit IRC
332020-02-21T02:04:27 *** pinheadmz has quit IRC
342020-02-21T02:08:32 *** pinheadmz has joined #bitcoin-core-dev
352020-02-21T02:10:43 *** jimmysong has quit IRC
362020-02-21T02:23:17 *** AaronvanW has quit IRC
372020-02-21T02:37:11 *** Dean_Guss has joined #bitcoin-core-dev
382020-02-21T02:39:23 *** DeanGuss has quit IRC
392020-02-21T02:56:23 *** Dean_Guss has quit IRC
402020-02-21T02:57:08 *** justanotheruser has quit IRC
412020-02-21T03:00:01 *** IOMonster1 has quit IRC
422020-02-21T03:01:35 *** pinheadmz_ has joined #bitcoin-core-dev
432020-02-21T03:04:23 *** pinheadmz has quit IRC
442020-02-21T03:04:23 *** pinheadmz_ is now known as pinheadmz
452020-02-21T03:12:13 <kallewoof> If anyone is up for reviewing the Signet pull request (#16411) I'm willing to answer questions and stuff. :) Even feedback on whether to use a static genesis block or a dynamic one would be helpful. Would love to get this merged before 0.20 release.
462020-02-21T03:12:18 <gribble> https://github.com/bitcoin/bitcoin/issues/16411 | BIP-325: Signet support by kallewoof · Pull Request #16411 · bitcoin/bitcoin · GitHub
472020-02-21T03:17:55 *** mota has joined #bitcoin-core-dev
482020-02-21T03:35:55 *** francisco__ has quit IRC
492020-02-21T03:45:27 *** felixfoertsch has joined #bitcoin-core-dev
502020-02-21T03:46:28 *** felixfoertsch23 has quit IRC
512020-02-21T03:53:31 *** Highway61 has quit IRC
522020-02-21T04:09:22 *** justanotheruser has joined #bitcoin-core-dev
532020-02-21T04:16:06 *** pinheadmz has quit IRC
542020-02-21T04:16:31 *** promag has joined #bitcoin-core-dev
552020-02-21T04:19:09 *** pinheadmz has joined #bitcoin-core-dev
562020-02-21T04:20:49 *** AaronvanW has joined #bitcoin-core-dev
572020-02-21T04:54:31 *** AaronvanW has quit IRC
582020-02-21T05:10:48 <fanquake> Just about finished tracking down the race in #16307 !
592020-02-21T05:10:50 <gribble> https://github.com/bitcoin/bitcoin/issues/16307 | scheduler: crash after releasing wallet · Issue #16307 · bitcoin/bitcoin · GitHub
602020-02-21T05:18:46 *** promag has quit IRC
612020-02-21T05:23:12 *** pinheadmz has quit IRC
622020-02-21T06:00:02 *** mota has quit IRC
632020-02-21T06:09:58 <aj> fanquake: !!
642020-02-21T06:11:27 <jeremyrubin> nice!
652020-02-21T06:13:10 *** francisco___ has joined #bitcoin-core-dev
662020-02-21T06:18:00 *** kutio has joined #bitcoin-core-dev
672020-02-21T06:25:13 <fanquake> From what I currently understand, it's a race where if BlockConnected() is called just after BlockUntilSyncedToCurrentChain in UnloadWallet, the scheduler thread is looping in SyncTransaction -> AddToWalletIfInvolvingMe, which grabs the cs_wallet lock each time, but then we try and delete the wallet (and lock) and blow up
682020-02-21T06:36:39 *** manantial has joined #bitcoin-core-dev
692020-02-21T06:37:09 <fanquake> The more logging I add to try and diagnose, the less frequent the crash seems to be.
702020-02-21T06:41:04 *** echonaut has quit IRC
712020-02-21T06:51:27 *** AaronvanW has joined #bitcoin-core-dev
722020-02-21T06:59:11 *** Highway61 has joined #bitcoin-core-dev
732020-02-21T07:03:53 *** rjected has quit IRC
742020-02-21T07:05:28 *** rjected has joined #bitcoin-core-dev
752020-02-21T07:07:40 *** Oblo has joined #bitcoin-core-dev
762020-02-21T07:07:45 *** Oblo has left #bitcoin-core-dev
772020-02-21T07:11:54 *** Chetoe has joined #bitcoin-core-dev
782020-02-21T07:11:58 *** Chetoe has left #bitcoin-core-dev
792020-02-21T07:14:22 *** Cegre has joined #bitcoin-core-dev
802020-02-21T07:14:26 *** Cegre has left #bitcoin-core-dev
812020-02-21T07:16:16 *** aphoi has joined #bitcoin-core-dev
822020-02-21T07:16:20 *** aphoi has left #bitcoin-core-dev
832020-02-21T07:18:03 *** droklatek has joined #bitcoin-core-dev
842020-02-21T07:18:07 *** droklatek has left #bitcoin-core-dev
852020-02-21T07:19:49 *** pocajic has joined #bitcoin-core-dev
862020-02-21T07:19:53 *** pocajic has left #bitcoin-core-dev
872020-02-21T07:20:18 *** aceoleeye has joined #bitcoin-core-dev
882020-02-21T07:20:22 *** aceoleeye has left #bitcoin-core-dev
892020-02-21T07:25:08 *** AaronvanW has quit IRC
902020-02-21T07:29:36 <fanquake> So that's definitely the problem. We are trying to delete the cs_wallet lock that's being held by the scheduler thread. Shoddy debugging notes: https://gist.github.com/fanquake/a2dc2cddc153e07c077cd67653f3350d
912020-02-21T07:37:47 *** promag has joined #bitcoin-core-dev
922020-02-21T07:40:28 *** vasild_ has joined #bitcoin-core-dev
932020-02-21T07:43:23 *** vasild has quit IRC
942020-02-21T07:46:45 *** hebasto has quit IRC
952020-02-21T07:48:55 *** EagleTM has joined #bitcoin-core-dev
962020-02-21T08:02:20 *** promag has quit IRC
972020-02-21T08:08:17 *** EagleTM has quit IRC
982020-02-21T08:12:29 *** as_pnn has joined #bitcoin-core-dev
992020-02-21T08:12:39 *** pnn_m has joined #bitcoin-core-dev
1002020-02-21T08:12:40 <pnn_m> hi!
1012020-02-21T08:15:53 *** IGHOR has quit IRC
1022020-02-21T08:18:26 *** promag has joined #bitcoin-core-dev
1032020-02-21T08:21:33 *** promag has quit IRC
1042020-02-21T08:23:06 *** promag has joined #bitcoin-core-dev
1052020-02-21T08:23:39 *** rjected has quit IRC
1062020-02-21T08:23:40 *** oguzkoroglu has joined #bitcoin-core-dev
1072020-02-21T08:27:34 *** promag has quit IRC
1082020-02-21T08:31:34 *** marcoagner has joined #bitcoin-core-dev
1092020-02-21T09:00:01 *** kutio has quit IRC
1102020-02-21T09:18:17 *** shazow has joined #bitcoin-core-dev
1112020-02-21T09:22:04 *** AaronvanW has joined #bitcoin-core-dev
1122020-02-21T09:54:52 *** AaronvanW has quit IRC
1132020-02-21T09:55:52 *** Zenton has joined #bitcoin-core-dev
1142020-02-21T10:01:13 *** AaronvanW has joined #bitcoin-core-dev
1152020-02-21T10:07:42 *** timothy has joined #bitcoin-core-dev
1162020-02-21T10:09:21 <meshcollider> ping achow101 ?
1172020-02-21T10:09:53 <meshcollider> Oh probably not at this time of the morning
1182020-02-21T10:18:53 *** hadjiszs has quit IRC
1192020-02-21T10:19:32 *** Zenton has quit IRC
1202020-02-21T10:28:16 *** Zenton has joined #bitcoin-core-dev
1212020-02-21T10:32:05 <provoostenator> Maybe promag is around?
1222020-02-21T10:47:13 <provoostenator> fanquake: I'm running the load/unload loop now, so far no crash. Any (build) configuration options that matter?
1232020-02-21T11:03:51 *** AaronvanW has quit IRC
1242020-02-21T11:03:55 *** Jeramie67Hayes has joined #bitcoin-core-dev
1252020-02-21T11:24:41 *** emilengler has joined #bitcoin-core-dev
1262020-02-21T11:37:33 *** harrigan_ has quit IRC
1272020-02-21T11:38:33 *** harrigan has joined #bitcoin-core-dev
1282020-02-21T11:42:23 <provoostenator> Crash!
1292020-02-21T11:44:26 *** AaronvanW has joined #bitcoin-core-dev
1302020-02-21T11:47:02 *** Chris_Stewart_5 has joined #bitcoin-core-dev
1312020-02-21T11:49:46 *** pnn_m has quit IRC
1322020-02-21T11:49:51 *** as_pnn has quit IRC
1332020-02-21T12:00:02 *** shazow has quit IRC
1342020-02-21T12:13:56 *** shesek has quit IRC
1352020-02-21T12:14:10 *** shesek has joined #bitcoin-core-dev
1362020-02-21T12:14:10 *** shesek has joined #bitcoin-core-dev
1372020-02-21T12:18:12 *** fnichol has joined #bitcoin-core-dev
1382020-02-21T12:59:52 *** Jeramie67Hayes has quit IRC
1392020-02-21T13:28:51 *** CubicEarth has quit IRC
1402020-02-21T13:56:18 *** IGHOR has joined #bitcoin-core-dev
1412020-02-21T13:58:46 *** CubicEarth has joined #bitcoin-core-dev
1422020-02-21T13:59:58 *** pinheadmz has joined #bitcoin-core-dev
1432020-02-21T14:14:01 *** pinheadmz has quit IRC
1442020-02-21T14:16:26 *** Guyver2 has joined #bitcoin-core-dev
1452020-02-21T14:18:07 *** bitcoin-git has joined #bitcoin-core-dev
1462020-02-21T14:18:07 <bitcoin-git> [bitcoin] jonasschnelli closed pull request #18131: add macOS notarization info to the release process doc (master...2020/02/notarize) https://github.com/bitcoin/bitcoin/pull/18131
1472020-02-21T14:18:18 *** bitcoin-git has left #bitcoin-core-dev
1482020-02-21T14:35:40 *** molly has quit IRC
1492020-02-21T14:55:34 *** hebasto has joined #bitcoin-core-dev
1502020-02-21T14:56:54 *** pinheadmz has joined #bitcoin-core-dev
1512020-02-21T15:00:01 *** fnichol has quit IRC
1522020-02-21T15:01:02 *** promag has joined #bitcoin-core-dev
1532020-02-21T15:02:50 *** francisco___ has quit IRC
1542020-02-21T15:14:21 *** bitcoin-git has joined #bitcoin-core-dev
1552020-02-21T15:14:21 <bitcoin-git> [bitcoin] uhliksk opened pull request #18189: Add error handling to all boost filesystem functions (master...master) https://github.com/bitcoin/bitcoin/pull/18189
1562020-02-21T15:14:22 *** bitcoin-git has left #bitcoin-core-dev
1572020-02-21T15:18:05 *** Stuk has joined #bitcoin-core-dev
1582020-02-21T15:38:33 *** francisco___ has joined #bitcoin-core-dev
1592020-02-21T15:47:09 <instagibbs> #17577 RFM
1602020-02-21T15:47:12 <gribble> https://github.com/bitcoin/bitcoin/issues/17577 | refactor: deduplicate the message sign/verify code by vasild · Pull Request #17577 · bitcoin/bitcoin · GitHub
1612020-02-21T15:47:39 *** alko89 has quit IRC
1622020-02-21T15:53:04 <instagibbs> achow101, can you update #16528 description to include any active PRs that are rolling out subsets of those commits? I see at least one I just reviweed
1632020-02-21T15:53:07 <gribble> https://github.com/bitcoin/bitcoin/issues/16528 | Native Descriptor Wallets using DescriptorScriptPubKeyMan by achow101 · Pull Request #16528 · bitcoin/bitcoin · GitHub
1642020-02-21T15:54:37 *** wumpus2 is now known as wumpus
1652020-02-21T16:01:48 *** bitcoin-git has joined #bitcoin-core-dev
1662020-02-21T16:01:48 <bitcoin-git> [bitcoin] practicalswift opened pull request #18190: tests: Add fuzzing harness for Golomb-Rice coding (GolombRiceEncode/GolombRiceDecode) (master...fuzzers-golomb-rice) https://github.com/bitcoin/bitcoin/pull/18190
1672020-02-21T16:01:51 *** bitcoin-git has left #bitcoin-core-dev
1682020-02-21T16:05:19 <achow101> meshcollider: pong?
1692020-02-21T16:14:03 *** luke-jr has quit IRC
1702020-02-21T16:14:20 *** shesek has quit IRC
1712020-02-21T16:14:37 *** Talkless has joined #bitcoin-core-dev
1722020-02-21T16:14:48 *** shesek has joined #bitcoin-core-dev
1732020-02-21T16:15:19 *** luke-jr has joined #bitcoin-core-dev
1742020-02-21T16:17:08 *** Talkless has quit IRC
1752020-02-21T16:18:00 *** Talkless has joined #bitcoin-core-dev
1762020-02-21T16:19:01 *** mdunnio has joined #bitcoin-core-dev
1772020-02-21T16:27:23 <achow101> instagibbs: updated
1782020-02-21T16:35:20 *** ddustin has joined #bitcoin-core-dev
1792020-02-21T16:37:00 *** Highway62 has joined #bitcoin-core-dev
1802020-02-21T16:37:39 *** Highway61 has quit IRC
1812020-02-21T16:37:39 *** Highway62 is now known as Highway61
1822020-02-21T16:39:47 <instagibbs> fantastic thanks
1832020-02-21T16:40:00 *** Talkless has quit IRC
1842020-02-21T16:40:19 *** ddustin has quit IRC
1852020-02-21T16:41:21 *** goatpig has quit IRC
1862020-02-21T16:41:41 *** Guyver2 has quit IRC
1872020-02-21T16:43:59 *** Guyver2_ has joined #bitcoin-core-dev
1882020-02-21T16:44:33 *** Guyver2_ has joined #bitcoin-core-dev
1892020-02-21T16:48:35 *** Guyver2_ is now known as Guyver2
1902020-02-21T16:48:48 <instagibbs> #18034 RFM as well
1912020-02-21T16:48:51 <gribble> https://github.com/bitcoin/bitcoin/issues/18034 | Get the OutputType for a descriptor by achow101 · Pull Request #18034 · bitcoin/bitcoin · GitHub
1922020-02-21T16:58:16 *** promag has quit IRC
1932020-02-21T16:59:15 *** Zenton has quit IRC
1942020-02-21T17:04:44 <achow101> if only meshcollider would wake up and merge things
1952020-02-21T17:04:56 *** bitcoin-git has joined #bitcoin-core-dev
1962020-02-21T17:04:56 <bitcoin-git> [bitcoin] MarcoFalke reopened pull request #16117: util: Replace boost:: with std:: in utiltime (master...1905-noBoostUtilTime) https://github.com/bitcoin/bitcoin/pull/16117
1972020-02-21T17:05:00 *** bitcoin-git has left #bitcoin-core-dev
1982020-02-21T17:05:36 *** berndj has quit IRC
1992020-02-21T17:06:23 *** berndj has joined #bitcoin-core-dev
2002020-02-21T17:17:05 *** ddustin has joined #bitcoin-core-dev
2012020-02-21T17:19:04 *** vincenzopalazzo has joined #bitcoin-core-dev
2022020-02-21T17:20:04 *** jarthur has joined #bitcoin-core-dev
2032020-02-21T17:31:36 *** emilengler has quit IRC
2042020-02-21T17:31:51 *** emilengler has joined #bitcoin-core-dev
2052020-02-21T17:36:07 *** berndj has quit IRC
2062020-02-21T17:38:38 *** emilengler has quit IRC
2072020-02-21T17:38:54 *** emilengler has joined #bitcoin-core-dev
2082020-02-21T17:45:03 *** lightningbot has joined #bitcoin-core-dev
2092020-02-21T17:50:04 *** berndj has joined #bitcoin-core-dev
2102020-02-21T17:50:27 *** yancy has joined #bitcoin-core-dev
2112020-02-21T17:50:41 *** Kate99 has joined #bitcoin-core-dev
2122020-02-21T17:53:39 *** zavan has joined #bitcoin-core-dev
2132020-02-21T17:56:39 *** cryptapus has quit IRC
2142020-02-21T17:57:14 *** cryptapus has joined #bitcoin-core-dev
2152020-02-21T17:57:16 *** cryptapus has quit IRC
2162020-02-21T17:57:16 *** cryptapus has joined #bitcoin-core-dev
2172020-02-21T18:00:01 *** Stuk has quit IRC
2182020-02-21T18:04:45 *** zavan has quit IRC
2192020-02-21T18:05:40 *** promag has joined #bitcoin-core-dev
2202020-02-21T18:11:28 *** icota[m] has quit IRC
2212020-02-21T18:12:21 *** mrostecki has quit IRC
2222020-02-21T18:12:22 *** mael-rolland[m] has quit IRC
2232020-02-21T18:12:28 *** TheFuzzStone[m] has quit IRC
2242020-02-21T18:18:06 *** Greedi has joined #bitcoin-core-dev
2252020-02-21T18:20:43 *** luke-jr has quit IRC
2262020-02-21T18:21:05 *** luke-jr has joined #bitcoin-core-dev
2272020-02-21T18:25:27 *** Chris_Stewart_5 has quit IRC
2282020-02-21T18:26:56 *** bitcoin-git has joined #bitcoin-core-dev
2292020-02-21T18:26:57 <bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/eb3c6b091234...e9fc8f6e7f57
2302020-02-21T18:26:57 <bitcoin-git> bitcoin/master d6d2602 0xb10c: add: test that transactions expire from mempool
2312020-02-21T18:26:58 <bitcoin-git> bitcoin/master e9fc8f6 MarcoFalke: Merge #18172: test: Transaction expiry from mempool
2322020-02-21T18:27:00 *** bitcoin-git has left #bitcoin-core-dev
2332020-02-21T18:27:05 *** promag has quit IRC
2342020-02-21T18:27:22 *** bitcoin-git has joined #bitcoin-core-dev
2352020-02-21T18:27:22 <bitcoin-git> [bitcoin] MarcoFalke merged pull request #18172: test: Transaction expiry from mempool (master...2020-02-mempool-expiry-test) https://github.com/bitcoin/bitcoin/pull/18172
2362020-02-21T18:27:23 *** bitcoin-git has left #bitcoin-core-dev
2372020-02-21T18:28:50 *** icota[m] has joined #bitcoin-core-dev
2382020-02-21T18:29:37 *** Chris_Stewart_5 has joined #bitcoin-core-dev
2392020-02-21T18:30:55 *** icota[m] has quit IRC
2402020-02-21T18:31:16 *** crowd has joined #bitcoin-core-dev
2412020-02-21T18:41:01 *** Talkless has joined #bitcoin-core-dev
2422020-02-21T18:41:14 *** Talkless has quit IRC
2432020-02-21T18:41:53 *** Talkless has joined #bitcoin-core-dev
2442020-02-21T18:57:01 *** crowd has quit IRC
2452020-02-21T19:01:28 *** mael-rolland[m] has joined #bitcoin-core-dev
2462020-02-21T19:02:46 *** ddustin has quit IRC
2472020-02-21T19:03:08 *** ddustin has joined #bitcoin-core-dev
2482020-02-21T19:03:33 *** bitcoin-git has joined #bitcoin-core-dev
2492020-02-21T19:03:34 <bitcoin-git> [bitcoin] meshcollider pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/e9fc8f6e7f57...9dd7bd47be2f
2502020-02-21T19:03:34 *** ddustin has quit IRC
2512020-02-21T19:03:34 <bitcoin-git> bitcoin/master 7e80f64 Andrew Chow: Get the OutputType for a descriptor
2522020-02-21T19:03:35 <bitcoin-git> bitcoin/master 9dd7bd4 Samuel Dobson: Merge #18034: Get the OutputType for a descriptor
2532020-02-21T19:03:36 *** bitcoin-git has left #bitcoin-core-dev
2542020-02-21T19:03:51 *** ddustin has joined #bitcoin-core-dev
2552020-02-21T19:03:54 *** bitcoin-git has joined #bitcoin-core-dev
2562020-02-21T19:03:55 <bitcoin-git> [bitcoin] meshcollider merged pull request #18034: Get the OutputType for a descriptor (master...desc-getoutputtype) https://github.com/bitcoin/bitcoin/pull/18034
2572020-02-21T19:03:56 *** bitcoin-git has left #bitcoin-core-dev
2582020-02-21T19:04:21 *** ddustin has quit IRC
2592020-02-21T19:04:31 *** fox2p has quit IRC
2602020-02-21T19:04:43 *** bitcoin-git has joined #bitcoin-core-dev
2612020-02-21T19:04:44 <bitcoin-git> [bitcoin] luke-jr closed pull request #18175: [0.19] build: Allow export of environ symbols and work around rv64 toolchain issue (0.19...pr17569-0.18) https://github.com/bitcoin/bitcoin/pull/18175
2622020-02-21T19:04:45 *** bitcoin-git has left #bitcoin-core-dev
2632020-02-21T19:05:00 <meshcollider> achow101: all good,
2642020-02-21T19:06:00 *** fox2p has joined #bitcoin-core-dev
2652020-02-21T19:07:27 <meshcollider> instagibbs: thanks, I'll take a look at 17577 and 17264 today
2662020-02-21T19:08:08 *** mrostecki has joined #bitcoin-core-dev
2672020-02-21T19:08:08 *** icota[m] has joined #bitcoin-core-dev
2682020-02-21T19:08:08 *** TheFuzzStone[m] has joined #bitcoin-core-dev
2692020-02-21T19:12:33 *** emilengler has quit IRC
2702020-02-21T19:13:01 *** promag has joined #bitcoin-core-dev
2712020-02-21T19:20:20 <luke-jr> jonasschnelli: re https://github.com/bitcoin/bitcoin/issues/15774#issuecomment-589794604 the right-click trick no longer worksâ
2722020-02-21T19:26:27 <provoostenator> luke-jr: right-click still works, notarization removes the need for right-click.
2732020-02-21T19:28:07 <luke-jr> i c
2742020-02-21T19:31:22 *** luke-jr has quit IRC
2752020-02-21T19:32:48 *** luke-jr has joined #bitcoin-core-dev
2762020-02-21T19:36:53 *** filchef has joined #bitcoin-core-dev
2772020-02-21T19:43:23 *** vasild_ has quit IRC
2782020-02-21T19:43:31 *** promag has quit IRC
2792020-02-21T19:45:29 *** vasild has joined #bitcoin-core-dev
2802020-02-21T19:45:43 *** afk11 has quit IRC
2812020-02-21T19:46:08 *** afk11 has joined #bitcoin-core-dev
2822020-02-21T19:46:11 *** vasild has quit IRC
2832020-02-21T19:55:30 *** jarthur_ has joined #bitcoin-core-dev
2842020-02-21T19:58:36 *** jarthur has quit IRC
2852020-02-21T20:01:01 *** timothy has quit IRC
2862020-02-21T20:14:13 *** Talkless has quit IRC
2872020-02-21T20:16:43 *** Talkless has joined #bitcoin-core-dev
2882020-02-21T20:21:01 *** vasild has joined #bitcoin-core-dev
2892020-02-21T20:33:20 *** Talkless has quit IRC
2902020-02-21T20:33:56 *** Talkless has joined #bitcoin-core-dev
2912020-02-21T20:34:17 *** jarthur_ has quit IRC
2922020-02-21T20:34:43 *** jarthur has joined #bitcoin-core-dev
2932020-02-21T20:47:04 *** Talkless has quit IRC
2942020-02-21T20:49:03 *** EagleTM has joined #bitcoin-core-dev
2952020-02-21T21:00:02 *** Greedi has quit IRC
2962020-02-21T21:08:42 *** Zenton has joined #bitcoin-core-dev
2972020-02-21T21:18:14 *** KindOne1 has joined #bitcoin-core-dev
2982020-02-21T21:32:48 *** justanotheruser has quit IRC
2992020-02-21T21:45:11 *** Guyver2 has quit IRC
3002020-02-21T21:54:34 *** promag has joined #bitcoin-core-dev
3012020-02-21T21:58:51 *** promag has quit IRC
3022020-02-21T22:00:20 *** promag has joined #bitcoin-core-dev
3032020-02-21T22:05:40 *** jarthur_ has joined #bitcoin-core-dev
3042020-02-21T22:09:07 *** jarthur has quit IRC
3052020-02-21T22:10:03 *** jarthur_ has quit IRC
3062020-02-21T22:10:26 *** manantial has quit IRC
3072020-02-21T22:11:27 *** owowo has quit IRC
3082020-02-21T22:16:13 *** owowo has joined #bitcoin-core-dev
3092020-02-21T22:31:12 *** filchef has quit IRC
3102020-02-21T22:31:19 *** jrawsthorne has quit IRC
3112020-02-21T22:39:23 *** justanotheruser has joined #bitcoin-core-dev
3122020-02-21T22:59:09 *** mdunnio has quit IRC
3132020-02-21T23:00:30 *** cryptapus has quit IRC
3142020-02-21T23:03:43 *** bitcoin-git has joined #bitcoin-core-dev
3152020-02-21T23:03:43 <bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/9dd7bd47be2f...36e507227ed6
3162020-02-21T23:03:44 <bitcoin-git> bitcoin/master fac52da MarcoFalke: test: Set catch_system_errors=no on boost unit tests
3172020-02-21T23:03:44 <bitcoin-git> bitcoin/master 36e5072 MarcoFalke: Merge #18183: test: Set catch_system_errors=no on boost unit tests
3182020-02-21T23:03:52 *** bitcoin-git has left #bitcoin-core-dev
3192020-02-21T23:04:08 *** bitcoin-git has joined #bitcoin-core-dev
3202020-02-21T23:04:08 <bitcoin-git> [bitcoin] MarcoFalke merged pull request #18183: test: Set catch_system_errors=no on boost unit tests (master...2002-testNoCatchSystemErrors) https://github.com/bitcoin/bitcoin/pull/18183
3212020-02-21T23:04:10 *** bitcoin-git has left #bitcoin-core-dev
3222020-02-21T23:17:40 *** vincenzopalazzo has quit IRC
3232020-02-21T23:21:27 *** cryptapus has joined #bitcoin-core-dev
3242020-02-21T23:21:27 *** cryptapus has quit IRC
3252020-02-21T23:21:27 *** cryptapus has joined #bitcoin-core-dev
3262020-02-21T23:32:52 <luke-jr> hmm, avoid-reuse wallets I think had a pretty big bug? they're setting address book data on change addresses..
3272020-02-21T23:32:58 * luke-jr works on a fix
3282020-02-21T23:53:58 *** Chris_Stewart_5 has quit IRC