12019-02-11T00:03:21 *** anon563718 has joined #bitcoin-core-dev
22019-02-11T00:04:29 <anon563718> what's the recommended way, using walletnotify to reach the server for own transactions, or using zmq and filter every transaction to see if it belongs to the wallet?
32019-02-11T00:04:47 <anon563718> I see there was a time someone proposed a zmq for wallet transactions only, but never got implemented
42019-02-11T00:05:55 *** elichai2 has quit IRC
52019-02-11T00:07:06 <gmaxwell> Poll the RPC.
62019-02-11T00:07:51 <gmaxwell> Any kind of notify has the risk of missing messages, so you need to poll regardless. And once you've implemented polling the only additional gain from any kind of notifying is a potential latency reduction.
72019-02-11T00:08:18 <gmaxwell> But even a once per second poll is very slow, and yet provides reasonably low latency for transaction delay for almost any application.
82019-02-11T00:09:21 <gmaxwell> Polling isn't a good solution for some public web service where there might be thousands of clients, but on a private system where there is only one or a few clients, it's an excellent, simple, and reliable solution.
92019-02-11T00:24:44 *** AaronvanW has quit IRC
102019-02-11T00:26:14 <promag> anon563718: +1 gmaxwell, you can also have a large period, say 30sec, and use -walletnotify to trigger a faster poll
112019-02-11T00:27:13 *** shesek has joined #bitcoin-core-dev
122019-02-11T00:27:13 *** shesek has joined #bitcoin-core-dev
132019-02-11T00:27:26 <promag> anon563718: you might be interested in #7949
142019-02-11T00:27:28 <gribble> https://github.com/bitcoin/bitcoin/issues/7949 | [RPC] Add RPC long poll notifications by jonasschnelli · Pull Request #7949 · bitcoin/bitcoin · GitHub
152019-02-11T00:31:16 *** promag has quit IRC
162019-02-11T00:39:35 <anon563718> Thanks for the recommendations, I came across 7949 but it seems it's not implemented yet
172019-02-11T00:43:25 <anon563718> when you mention polling rpc, which command is the one you refer to? listsinceblocks?
182019-02-11T00:49:12 *** skyikot has joined #bitcoin-core-dev
192019-02-11T00:49:58 *** Zenton has quit IRC
202019-02-11T01:07:21 <belcher> anon563718 listtransactions
212019-02-11T01:23:02 *** promag has joined #bitcoin-core-dev
222019-02-11T01:28:25 *** promag has quit IRC
232019-02-11T01:32:06 <kanzure> i've implemented polling in the context of web applications with many workers or clients; the trick is to find the most recent common block that you have processed vs haven't processed yet.
242019-02-11T01:33:41 *** AaronvanW has joined #bitcoin-core-dev
252019-02-11T01:38:16 *** AaronvanW has quit IRC
262019-02-11T01:45:33 *** pinheadmz has quit IRC
272019-02-11T01:46:37 *** pinheadmz has joined #bitcoin-core-dev
282019-02-11T01:50:26 *** promag has joined #bitcoin-core-dev
292019-02-11T01:58:56 *** AaronvanW has joined #bitcoin-core-dev
302019-02-11T01:59:50 *** booyah has quit IRC
312019-02-11T02:01:22 *** promag has quit IRC
322019-02-11T02:03:18 *** AaronvanW has quit IRC
332019-02-11T02:12:35 *** DeanGuss has joined #bitcoin-core-dev
342019-02-11T02:17:12 <echeveria> kanzure: and handle reorgs.
352019-02-11T02:19:57 <kanzure> yes. most recent common is required because otherwise you wont handle reorgs correctly.
362019-02-11T02:36:59 *** AaronvanW has joined #bitcoin-core-dev
372019-02-11T02:37:08 *** justanotheruser has quit IRC
382019-02-11T02:41:30 *** AaronvanW has quit IRC
392019-02-11T02:53:07 *** EagleTM has quit IRC
402019-02-11T02:57:52 *** BTCCollector has joined #bitcoin-core-dev
412019-02-11T03:07:34 *** justanotheruser has joined #bitcoin-core-dev
422019-02-11T03:29:42 *** pinheadmz has quit IRC
432019-02-11T03:32:51 *** qu4ku has joined #bitcoin-core-dev
442019-02-11T03:33:58 *** pinheadmz has joined #bitcoin-core-dev
452019-02-11T03:57:51 *** anon563718 has quit IRC
462019-02-11T03:59:32 *** spinza has quit IRC
472019-02-11T03:59:37 *** pinheadmz has quit IRC
482019-02-11T04:09:33 *** spinza has joined #bitcoin-core-dev
492019-02-11T04:33:07 *** murrayn has quit IRC
502019-02-11T04:33:31 *** murrayn has joined #bitcoin-core-dev
512019-02-11T04:33:31 *** murrayn has joined #bitcoin-core-dev
522019-02-11T04:37:54 *** AaronvanW has joined #bitcoin-core-dev
532019-02-11T04:42:07 *** AaronvanW has quit IRC
542019-02-11T04:43:10 *** Karyon_ has quit IRC
552019-02-11T04:53:42 *** pinheadmz has joined #bitcoin-core-dev
562019-02-11T05:01:45 *** skyikot has quit IRC
572019-02-11T05:20:15 *** AaronvanW has joined #bitcoin-core-dev
582019-02-11T05:24:22 *** AaronvanW has quit IRC
592019-02-11T05:25:39 *** pinheadmz has quit IRC
602019-02-11T05:29:00 *** pinheadmz has joined #bitcoin-core-dev
612019-02-11T05:53:46 *** jtimon has quit IRC
622019-02-11T05:58:56 *** AaronvanW has joined #bitcoin-core-dev
632019-02-11T06:03:22 *** AaronvanW has quit IRC
642019-02-11T06:35:39 *** jtimon has joined #bitcoin-core-dev
652019-02-11T06:41:03 *** AaronvanW has joined #bitcoin-core-dev
662019-02-11T06:45:10 *** pinheadmz has quit IRC
672019-02-11T06:45:58 *** AaronvanW has quit IRC
682019-02-11T06:49:06 *** pinheadmz has joined #bitcoin-core-dev
692019-02-11T07:00:24 *** jarthur has quit IRC
702019-02-11T07:34:26 *** AaronvanW has joined #bitcoin-core-dev
712019-02-11T07:39:00 *** AaronvanW has quit IRC
722019-02-11T07:43:26 *** jtimon has quit IRC
732019-02-11T07:48:30 *** pinheadmz has quit IRC
742019-02-11T08:10:40 *** AaronvanW has joined #bitcoin-core-dev
752019-02-11T08:14:42 *** justanotheruser has quit IRC
762019-02-11T08:15:23 *** AaronvanW has quit IRC
772019-02-11T08:16:54 *** zndtoshi has quit IRC
782019-02-11T08:18:13 *** rex4539 has quit IRC
792019-02-11T08:36:42 *** phwalkr has joined #bitcoin-core-dev
802019-02-11T08:42:43 *** phwalkr has quit IRC
812019-02-11T09:00:18 *** xHire has quit IRC
822019-02-11T09:01:03 *** jarthur has joined #bitcoin-core-dev
832019-02-11T09:05:47 *** xHire has joined #bitcoin-core-dev
842019-02-11T09:06:29 *** jarthur has quit IRC
852019-02-11T09:07:57 *** setpill has joined #bitcoin-core-dev
862019-02-11T09:15:51 *** AaronvanW has joined #bitcoin-core-dev
872019-02-11T09:17:41 *** setpill has quit IRC
882019-02-11T09:18:52 *** jungly has joined #bitcoin-core-dev
892019-02-11T09:20:02 *** setpill has joined #bitcoin-core-dev
902019-02-11T09:20:45 *** AaronvanW has quit IRC
912019-02-11T09:22:01 *** rex4539 has joined #bitcoin-core-dev
922019-02-11T09:25:53 *** AaronvanW has joined #bitcoin-core-dev
932019-02-11T09:29:49 *** promag has joined #bitcoin-core-dev
942019-02-11T09:30:04 *** AaronvanW has quit IRC
952019-02-11T09:31:42 *** promag has quit IRC
962019-02-11T09:31:59 *** promag has joined #bitcoin-core-dev
972019-02-11T09:35:40 *** Zenton has joined #bitcoin-core-dev
982019-02-11T09:37:04 *** promag has quit IRC
992019-02-11T09:37:58 *** AaronvanW has joined #bitcoin-core-dev
1002019-02-11T09:39:01 *** rh0nj has quit IRC
1012019-02-11T09:40:08 *** rh0nj has joined #bitcoin-core-dev
1022019-02-11T09:42:12 *** AaronvanW has quit IRC
1032019-02-11T09:46:05 *** promag has joined #bitcoin-core-dev
1042019-02-11T09:49:04 *** lollobene has joined #bitcoin-core-dev
1052019-02-11T09:50:14 *** timothy has joined #bitcoin-core-dev
1062019-02-11T09:51:54 *** lollobene has quit IRC
1072019-02-11T10:05:17 *** phwalkr has joined #bitcoin-core-dev
1082019-02-11T10:13:09 *** AaronvanW has joined #bitcoin-core-dev
1092019-02-11T10:16:56 *** tripleslash has quit IRC
1102019-02-11T10:22:50 *** paulen has joined #bitcoin-core-dev
1112019-02-11T10:26:22 *** paulen has quit IRC
1122019-02-11T10:30:41 *** elichai2 has joined #bitcoin-core-dev
1132019-02-11T10:33:54 *** spinza has quit IRC
1142019-02-11T10:46:48 *** spinza has joined #bitcoin-core-dev
1152019-02-11T10:54:30 *** Karyon_ has joined #bitcoin-core-dev
1162019-02-11T10:59:42 *** tripleslash has joined #bitcoin-core-dev
1172019-02-11T11:02:16 *** jarthur has joined #bitcoin-core-dev
1182019-02-11T11:06:56 *** jarthur has quit IRC
1192019-02-11T11:13:46 *** YAO has joined #bitcoin-core-dev
1202019-02-11T11:25:41 *** AaronvanW has quit IRC
1212019-02-11T11:29:39 <provoostenator> Any wallet / keypool gurus want to review #14075? I got confused multiple times mostly due to my own stupidity, but I think it's correct now...
1222019-02-11T11:29:43 <gribble> https://github.com/bitcoin/bitcoin/issues/14075 | Import watch only pubkeys to the keypool if private keys are disabled by achow101 · Pull Request #14075 · bitcoin/bitcoin · GitHub
1232019-02-11T11:30:55 *** phwalkr has quit IRC
1242019-02-11T11:32:45 *** phwalkr has joined #bitcoin-core-dev
1252019-02-11T11:40:18 *** phwalkr has quit IRC
1262019-02-11T11:48:47 *** AaronvanW has joined #bitcoin-core-dev
1272019-02-11T11:59:54 *** phwalkr_ has joined #bitcoin-core-dev
1282019-02-11T12:00:00 *** AaronvanW has quit IRC
1292019-02-11T12:04:04 *** phwalkr_ has quit IRC
1302019-02-11T12:04:55 *** bitcoin-git has joined #bitcoin-core-dev
1312019-02-11T12:04:55 <bitcoin-git> [bitcoin] domob1812 opened pull request #15381: Optionally return HTTP_OK for RPC errors (master...httprpc-error-code) https://github.com/bitcoin/bitcoin/pull/15381
1322019-02-11T12:04:57 *** bitcoin-git has left #bitcoin-core-dev
1332019-02-11T12:17:51 *** phwalkr has joined #bitcoin-core-dev
1342019-02-11T12:25:21 *** phwalkr has quit IRC
1352019-02-11T12:26:53 *** rex4539 has quit IRC
1362019-02-11T12:28:04 <provoostenator> #proposedmeetingtopic minimum QT version for v0.18, see #13478
1372019-02-11T12:28:08 <gribble> https://github.com/bitcoin/bitcoin/issues/13478 | [RFC] gui: Minimum required Qt5 · Issue #13478 · bitcoin/bitcoin · GitHub
1382019-02-11T12:28:19 *** Karyon_ has quit IRC
1392019-02-11T12:28:22 *** AaronvanW has joined #bitcoin-core-dev
1402019-02-11T12:28:43 <provoostenator> moneyball: I don't think that worked
1412019-02-11T12:29:18 *** Aaronvan_ has joined #bitcoin-core-dev
1422019-02-11T12:29:20 *** Karyon has joined #bitcoin-core-dev
1432019-02-11T12:31:28 *** phwalkr has joined #bitcoin-core-dev
1442019-02-11T12:32:33 *** AaronvanW has quit IRC
1452019-02-11T12:35:51 *** promag has quit IRC
1462019-02-11T12:56:11 *** phwalkr has quit IRC
1472019-02-11T12:59:33 *** YAO has quit IRC
1482019-02-11T13:01:15 *** fanquake has joined #bitcoin-core-dev
1492019-02-11T13:03:07 *** jarthur has joined #bitcoin-core-dev
1502019-02-11T13:04:34 *** phwalkr has joined #bitcoin-core-dev
1512019-02-11T13:07:52 *** jarthur has quit IRC
1522019-02-11T13:09:32 *** phwalkr has quit IRC
1532019-02-11T13:10:04 <fanquake> provoostenator I'll update the parent of that issue
1542019-02-11T13:11:30 *** bitcoin-git has joined #bitcoin-core-dev
1552019-02-11T13:11:30 <bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/6f4e0d154256...e84e0d4b5e1f
1562019-02-11T13:11:30 <bitcoin-git> bitcoin/master 30d0f7b benthecarman: rpc: Fix for segfault if combinepsbt called with empty inputs
1572019-02-11T13:11:31 <bitcoin-git> bitcoin/master e84e0d4 MarcoFalke: Merge #15337: rpc: Fix for segfault if combinepsbt called with empty input...
1582019-02-11T13:11:32 *** bitcoin-git has left #bitcoin-core-dev
1592019-02-11T13:12:15 *** bitcoin-git has joined #bitcoin-core-dev
1602019-02-11T13:12:15 <bitcoin-git> [bitcoin] MarcoFalke merged pull request #15337: rpc: Fix for segfault if combinepsbt called with empty inputs (master...rpc_combinepbst_empty_fix) https://github.com/bitcoin/bitcoin/pull/15337
1612019-02-11T13:12:18 *** bitcoin-git has left #bitcoin-core-dev
1622019-02-11T13:16:04 *** Bullitje has quit IRC
1632019-02-11T13:16:30 *** Bullitje has joined #bitcoin-core-dev
1642019-02-11T13:17:45 *** grepsuzette has quit IRC
1652019-02-11T13:23:01 *** drexl_ has joined #bitcoin-core-dev
1662019-02-11T13:24:14 *** bitcoin-git has joined #bitcoin-core-dev
1672019-02-11T13:24:14 <bitcoin-git> [bitcoin] MarcoFalke merged pull request #15380: trivial: correct parameter name in comments (master...fix-comment) https://github.com/bitcoin/bitcoin/pull/15380
1682019-02-11T13:24:25 *** bitcoin-git has left #bitcoin-core-dev
1692019-02-11T13:27:36 *** shesek has quit IRC
1702019-02-11T13:29:00 *** Skirmant has quit IRC
1712019-02-11T13:35:49 *** Karyon has quit IRC
1722019-02-11T13:37:14 *** bitcoin-git has joined #bitcoin-core-dev
1732019-02-11T13:37:15 <bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/ff9e197212eb...ad039aa0d3e8
1742019-02-11T13:37:15 <bitcoin-git> bitcoin/master 50e6472 Russell Yanofsky: Move ParseConfirmTarget from rpc/mining to rpc/util
1752019-02-11T13:37:16 <bitcoin-git> bitcoin/master ad039aa MarcoFalke: Merge #15373: Move ParseConfirmTarget from rpc/mining to rpc/util
1762019-02-11T13:37:18 *** bitcoin-git has left #bitcoin-core-dev
1772019-02-11T13:37:56 *** bitcoin-git has joined #bitcoin-core-dev
1782019-02-11T13:37:56 <bitcoin-git> [bitcoin] MarcoFalke merged pull request #15373: Move ParseConfirmTarget from rpc/mining to rpc/util (master...pr/movtarget) https://github.com/bitcoin/bitcoin/pull/15373
1792019-02-11T13:37:57 *** bitcoin-git has left #bitcoin-core-dev
1802019-02-11T13:38:34 *** phwalkr has joined #bitcoin-core-dev
1812019-02-11T13:38:47 *** phwalkr has joined #bitcoin-core-dev
1822019-02-11T13:48:52 <moneyball> provoostenator: thanks for the proposed topic I'll add it now
1832019-02-11T13:52:37 *** Aaronvan_ has quit IRC
1842019-02-11T14:05:22 *** Zenton has quit IRC
1852019-02-11T14:07:34 *** spinza has quit IRC
1862019-02-11T14:09:29 *** Zenton has joined #bitcoin-core-dev
1872019-02-11T14:09:42 *** Karyon has joined #bitcoin-core-dev
1882019-02-11T14:23:11 *** fanquake has quit IRC
1892019-02-11T14:26:04 *** spinza has joined #bitcoin-core-dev
1902019-02-11T14:26:29 *** rex4539 has joined #bitcoin-core-dev
1912019-02-11T14:26:33 *** Skirmant has joined #bitcoin-core-dev
1922019-02-11T14:28:50 <wumpus> PSA I've bumped my gpg key's expiration date (both the binaries signing key and my personal one), please --refresh-keys or they'll expire in three days
1932019-02-11T14:37:43 <midnightmagic> wumpus: thanks for notifying!
1942019-02-11T14:46:14 *** shesek has joined #bitcoin-core-dev
1952019-02-11T14:52:36 <wumpus> np!
1962019-02-11T15:00:19 *** Karyon has quit IRC
1972019-02-11T15:03:26 *** bitcoin-git has joined #bitcoin-core-dev
1982019-02-11T15:03:26 <bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/ad039aa0d3e8...1bc149d05b09
1992019-02-11T15:03:26 <bitcoin-git> bitcoin/master a94e470 Martin Erlandsson: A few textual improvements
2002019-02-11T15:03:26 <bitcoin-git> bitcoin/master 1bc149d MarcoFalke: Merge #15353: docs: Minor textual improvements in translation_strings_poli...
2012019-02-11T15:03:28 *** bitcoin-git has left #bitcoin-core-dev
2022019-02-11T15:03:54 *** jarthur has joined #bitcoin-core-dev
2032019-02-11T15:04:11 *** bitcoin-git has joined #bitcoin-core-dev
2042019-02-11T15:04:12 <bitcoin-git> [bitcoin] MarcoFalke merged pull request #15353: docs: Minor textual improvements in translation_strings_policy.md (master...patch-3) https://github.com/bitcoin/bitcoin/pull/15353
2052019-02-11T15:04:19 *** bitcoin-git has left #bitcoin-core-dev
2062019-02-11T15:04:24 *** cubancorona has quit IRC
2072019-02-11T15:04:45 *** cubancorona has joined #bitcoin-core-dev
2082019-02-11T15:06:15 *** StopAndDecrypt has quit IRC
2092019-02-11T15:08:26 *** jarthur has quit IRC
2102019-02-11T15:09:46 *** bitcoin-git has joined #bitcoin-core-dev
2112019-02-11T15:09:46 <bitcoin-git> [bitcoin] Sjors opened pull request #15382: WIP [util] add runCommandParseJSON (master...2019/02/runCommandParseJSON) https://github.com/bitcoin/bitcoin/pull/15382
2122019-02-11T15:09:49 *** bitcoin-git has left #bitcoin-core-dev
2132019-02-11T15:18:08 *** kexkey has joined #bitcoin-core-dev
2142019-02-11T15:27:30 *** jtimon has joined #bitcoin-core-dev
2152019-02-11T15:28:26 *** Skirmant has quit IRC
2162019-02-11T15:30:13 *** setpill has quit IRC
2172019-02-11T15:31:36 *** phwalkr has quit IRC
2182019-02-11T15:32:51 *** phwalkr has joined #bitcoin-core-dev
2192019-02-11T15:37:02 *** pinheadmz has joined #bitcoin-core-dev
2202019-02-11T15:47:26 *** pinheadmz has quit IRC
2212019-02-11T15:47:29 *** michaels_ has joined #bitcoin-core-dev
2222019-02-11T15:52:18 *** trotski2000 has joined #bitcoin-core-dev
2232019-02-11T16:08:13 *** phwalkr has quit IRC
2242019-02-11T16:28:40 *** shesek has quit IRC
2252019-02-11T16:35:04 *** bitcoin-git has joined #bitcoin-core-dev
2262019-02-11T16:35:04 <bitcoin-git> [bitcoin] MarcoFalke opened pull request #15383: [rpc] mining: Report -1 for uninitialized currentblockweight and currentblocktx (master...Mf1902-rpcMining) https://github.com/bitcoin/bitcoin/pull/15383
2272019-02-11T16:35:15 *** bitcoin-git has left #bitcoin-core-dev
2282019-02-11T16:41:18 *** Guyver2 has joined #bitcoin-core-dev
2292019-02-11T16:47:46 *** promag has joined #bitcoin-core-dev
2302019-02-11T16:53:52 *** pinheadmz has joined #bitcoin-core-dev
2312019-02-11T16:59:19 *** brianhoffman has joined #bitcoin-core-dev
2322019-02-11T17:01:15 *** dviola has joined #bitcoin-core-dev
2332019-02-11T17:04:47 *** jarthur has joined #bitcoin-core-dev
2342019-02-11T17:04:51 *** Murch has joined #bitcoin-core-dev
2352019-02-11T17:06:33 <phantomcircuit> echeveria, if (reorg) assert(false)
2362019-02-11T17:09:57 *** jarthur has quit IRC
2372019-02-11T17:13:19 *** JackH has joined #bitcoin-core-dev
2382019-02-11T17:13:52 *** shesek has joined #bitcoin-core-dev
2392019-02-11T17:13:52 *** shesek has joined #bitcoin-core-dev
2402019-02-11T17:14:40 *** jarthur has joined #bitcoin-core-dev
2412019-02-11T17:17:21 *** pinheadmz has quit IRC
2422019-02-11T17:18:40 *** pinheadmz has joined #bitcoin-core-dev
2432019-02-11T17:18:59 *** jarthur has quit IRC
2442019-02-11T17:28:33 *** BTCCollector has quit IRC
2452019-02-11T17:34:26 *** promag has quit IRC
2462019-02-11T17:34:58 *** jarthur has joined #bitcoin-core-dev
2472019-02-11T17:39:27 *** nev_ has joined #bitcoin-core-dev
2482019-02-11T17:44:03 *** hebasto has joined #bitcoin-core-dev
2492019-02-11T17:45:06 *** fabianfabian has joined #bitcoin-core-dev
2502019-02-11T17:45:53 *** cubancorona has quit IRC
2512019-02-11T17:48:11 *** promag has joined #bitcoin-core-dev
2522019-02-11T17:52:33 *** promag has quit IRC
2532019-02-11T18:15:40 *** Karyon has joined #bitcoin-core-dev
2542019-02-11T18:22:15 *** promag has joined #bitcoin-core-dev
2552019-02-11T18:39:32 *** Zenton has quit IRC
2562019-02-11T18:42:35 *** hebasto has quit IRC
2572019-02-11T18:52:21 *** ddustin has joined #bitcoin-core-dev
2582019-02-11T19:15:19 *** AaronvanW has joined #bitcoin-core-dev
2592019-02-11T19:24:08 *** ddustin has quit IRC
2602019-02-11T19:25:43 *** ddustin has joined #bitcoin-core-dev
2612019-02-11T19:26:31 *** ddustin has joined #bitcoin-core-dev
2622019-02-11T19:27:12 *** ddustin has joined #bitcoin-core-dev
2632019-02-11T19:27:21 *** jarthur has quit IRC
2642019-02-11T19:27:22 *** ddustin has quit IRC
2652019-02-11T19:27:57 *** ddustin has joined #bitcoin-core-dev
2662019-02-11T19:28:16 *** ddustin has joined #bitcoin-core-dev
2672019-02-11T19:39:13 *** jtimon has quit IRC
2682019-02-11T19:40:19 *** timothy has quit IRC
2692019-02-11T19:46:36 <meshcollider> provoostenator: re. https://github.com/bitcoin/bitcoin/pull/14481#pullrequestreview-202070495
2702019-02-11T19:46:56 *** jarthur has joined #bitcoin-core-dev
2712019-02-11T19:46:58 <meshcollider> redeemScript isn't overloaded in listunspent
2722019-02-11T19:47:37 <meshcollider> I realise I forgot to update the release notes but is that what you're referring to?
2732019-02-11T19:52:11 *** pinheadmz has quit IRC
2742019-02-11T19:52:59 *** DeanGuss has quit IRC
2752019-02-11T19:53:25 *** pinheadmz has joined #bitcoin-core-dev
2762019-02-11T19:55:04 *** drexl has quit IRC
2772019-02-11T19:56:25 *** jarthur has quit IRC
2782019-02-11T19:56:56 *** jarthur has joined #bitcoin-core-dev
2792019-02-11T20:00:38 *** promag has quit IRC
2802019-02-11T20:02:19 *** jarthur has quit IRC
2812019-02-11T20:04:26 *** nev_ has quit IRC
2822019-02-11T20:31:11 *** jarthur has joined #bitcoin-core-dev
2832019-02-11T20:32:21 *** jtimon has joined #bitcoin-core-dev
2842019-02-11T20:44:42 *** root2 has quit IRC
2852019-02-11T20:45:23 *** root has joined #bitcoin-core-dev
2862019-02-11T20:45:25 *** Skirmant has joined #bitcoin-core-dev
2872019-02-11T20:45:26 *** root is now known as Guest76566
2882019-02-11T20:47:07 *** EagleTM has joined #bitcoin-core-dev
2892019-02-11T20:47:12 *** pinheadmz has quit IRC
2902019-02-11T20:48:01 *** Karyon_ has joined #bitcoin-core-dev
2912019-02-11T20:50:33 *** ap4lmtree has quit IRC
2922019-02-11T20:50:41 *** Karyon has quit IRC
2932019-02-11T20:51:53 *** bitcoin-git has joined #bitcoin-core-dev
2942019-02-11T20:51:53 <bitcoin-git> [bitcoin] Empact closed pull request #15377: build: Disallow shadowing variables via -isystem, -Wshadow (master...wshadow) https://github.com/bitcoin/bitcoin/pull/15377
2952019-02-11T20:52:06 *** bitcoin-git has left #bitcoin-core-dev
2962019-02-11T20:57:23 *** Guest76566 is now known as qianbi
2972019-02-11T21:01:29 *** ap4lmtree has joined #bitcoin-core-dev
2982019-02-11T21:01:59 *** trotski2000 has quit IRC
2992019-02-11T21:13:52 *** qianbi is now known as jkjk
3002019-02-11T21:14:09 *** jkjk is now known as zj
3012019-02-11T21:14:47 *** zj is now known as create_seed
3022019-02-11T21:16:11 *** pinheadmz has joined #bitcoin-core-dev
3032019-02-11T21:18:41 *** create_seed is now known as jasonzhouu
3042019-02-11T21:19:40 *** bitcoin-git has joined #bitcoin-core-dev
3052019-02-11T21:19:41 <bitcoin-git> [bitcoin] MarcoFalke closed pull request #15336: Enable moving of hashes, uints, outpoints (master...master) https://github.com/bitcoin/bitcoin/pull/15336
3062019-02-11T21:19:44 *** bitcoin-git has left #bitcoin-core-dev
3072019-02-11T21:24:56 *** promag has joined #bitcoin-core-dev
3082019-02-11T21:29:56 *** promag has quit IRC
3092019-02-11T21:44:11 *** bitcoin-git has joined #bitcoin-core-dev
3102019-02-11T21:44:12 <bitcoin-git> [bitcoin] macgeek30 opened pull request #15384: Removed unnecessary commas in a compound predicate. (master...patch-1) https://github.com/bitcoin/bitcoin/pull/15384
3112019-02-11T21:44:13 *** bitcoin-git has left #bitcoin-core-dev
3122019-02-11T21:45:01 *** bitcoin-git has joined #bitcoin-core-dev
3132019-02-11T21:45:01 <bitcoin-git> [bitcoin] macgeek30 closed pull request #15384: Removed unnecessary commas in a compound predicate. (master...patch-1) https://github.com/bitcoin/bitcoin/pull/15384
3142019-02-11T21:45:02 *** bitcoin-git has left #bitcoin-core-dev
3152019-02-11T21:50:28 *** bitcoin-git has joined #bitcoin-core-dev
3162019-02-11T21:50:28 <bitcoin-git> [bitcoin] practicalswift closed pull request #14239: Avoid dividing by zero in EstimateMedianVal (policy)/ConnectTip (validation)/CreateTransaction (wallet) (master...undefined-behaviour-division-by-zero) https://github.com/bitcoin/bitcoin/pull/14239
3172019-02-11T21:50:29 *** bitcoin-git has left #bitcoin-core-dev
3182019-02-11T21:50:37 *** Zenton has joined #bitcoin-core-dev
3192019-02-11T21:55:28 *** bitcoin-git has joined #bitcoin-core-dev
3202019-02-11T21:55:28 <bitcoin-git> [bitcoin] macgeek30 opened pull request #15385: Removed unnecessary commas in README.md (master...patch-3) https://github.com/bitcoin/bitcoin/pull/15385
3212019-02-11T21:55:29 *** bitcoin-git has left #bitcoin-core-dev
3222019-02-11T22:01:07 *** ken2812221 has quit IRC
3232019-02-11T22:02:28 *** bitcoin-git has joined #bitcoin-core-dev
3242019-02-11T22:02:28 <bitcoin-git> [bitcoin] macgeek30 closed pull request #15385: Removed unnecessary commas in README.md (master...patch-3) https://github.com/bitcoin/bitcoin/pull/15385
3252019-02-11T22:02:29 *** bitcoin-git has left #bitcoin-core-dev
3262019-02-11T22:04:27 <gmaxwell> what,is,happening,here?
3272019-02-11T22:05:24 *** spinza has quit IRC
3282019-02-11T22:11:09 *** fabianfabian has quit IRC
3292019-02-11T22:23:39 *** bitcoin-git has joined #bitcoin-core-dev
3302019-02-11T22:23:39 <bitcoin-git> [bitcoin] practicalswift closed pull request #15262: build: Enable C++14 in build, require C++14 compiler. (master...c++14) https://github.com/bitcoin/bitcoin/pull/15262
3312019-02-11T22:23:41 *** bitcoin-git has left #bitcoin-core-dev
3322019-02-11T22:23:50 *** Karyon_ has quit IRC
3332019-02-11T22:39:54 *** shesek has quit IRC
3342019-02-11T22:40:24 *** Guyver2 has quit IRC
3352019-02-11T22:49:49 *** Murch has quit IRC
3362019-02-11T22:50:42 *** Murch has joined #bitcoin-core-dev
3372019-02-11T22:51:21 *** bitcoin-git has joined #bitcoin-core-dev
3382019-02-11T22:51:21 <bitcoin-git> [bitcoin] practicalswift closed pull request #14479: serialization: Don't invoke undefined behaviour when doing type punning (master...serialization-ub) https://github.com/bitcoin/bitcoin/pull/14479
3392019-02-11T22:51:22 *** bitcoin-git has left #bitcoin-core-dev
3402019-02-11T22:54:43 *** laurentmt has joined #bitcoin-core-dev
3412019-02-11T22:56:53 *** elichai2 has quit IRC
3422019-02-11T22:58:42 *** spinza has joined #bitcoin-core-dev
3432019-02-11T22:59:13 *** laurentmt has quit IRC
3442019-02-11T23:04:39 *** dgenr8 has joined #bitcoin-core-dev
3452019-02-11T23:15:01 *** bitcoin-git has joined #bitcoin-core-dev
3462019-02-11T23:15:02 <bitcoin-git> [bitcoin] Csi18nAlistairMann closed pull request #15374: docs: add "sections" info to example bitcoin.conf (master...patch-1) https://github.com/bitcoin/bitcoin/pull/15374
3472019-02-11T23:15:02 *** bitcoin-git has left #bitcoin-core-dev
3482019-02-11T23:17:35 *** michaels_ has quit IRC
3492019-02-11T23:18:56 *** Karyon_ has joined #bitcoin-core-dev
3502019-02-11T23:22:46 *** Murch has quit IRC
3512019-02-11T23:26:14 *** shesek has joined #bitcoin-core-dev
3522019-02-11T23:26:14 *** shesek has joined #bitcoin-core-dev
3532019-02-11T23:26:18 *** sipa has quit IRC
3542019-02-11T23:35:54 *** dviola has quit IRC
3552019-02-11T23:39:16 *** jimpo_ has joined #bitcoin-core-dev
3562019-02-11T23:40:44 *** jouke_ has joined #bitcoin-core-dev
3572019-02-11T23:40:58 *** emzy_ has joined #bitcoin-core-dev
3582019-02-11T23:41:26 *** helo_ has joined #bitcoin-core-dev
3592019-02-11T23:41:53 *** comboy_ has joined #bitcoin-core-dev
3602019-02-11T23:45:02 *** jonasschnelli_ has joined #bitcoin-core-dev
3612019-02-11T23:46:11 *** spinza has quit IRC
3622019-02-11T23:46:33 *** Jackielove4u has quit IRC
3632019-02-11T23:46:33 *** cluelessperson has quit IRC
3642019-02-11T23:46:33 *** helo has quit IRC
3652019-02-11T23:46:35 *** hsmiths has quit IRC
3662019-02-11T23:46:35 *** valwal has quit IRC
3672019-02-11T23:46:35 *** infernix has quit IRC
3682019-02-11T23:46:35 *** jonasschnelli has quit IRC
3692019-02-11T23:46:35 *** comboy has quit IRC
3702019-02-11T23:46:35 *** dongcarl has quit IRC
3712019-02-11T23:46:35 *** jimpo has quit IRC
3722019-02-11T23:46:35 *** emzy has quit IRC
3732019-02-11T23:50:16 *** justanotheruser has joined #bitcoin-core-dev
3742019-02-11T23:56:35 *** Murch has joined #bitcoin-core-dev