12019-02-22T00:09:54 *** captjakk has joined #bitcoin-core-dev
22019-02-22T00:10:46 *** dqx_ has quit IRC
32019-02-22T00:11:25 *** dqx_ has joined #bitcoin-core-dev
42019-02-22T00:12:53 *** Murch has quit IRC
52019-02-22T00:16:36 *** dqx_ has quit IRC
62019-02-22T00:22:21 *** Aaronvan_ has quit IRC
72019-02-22T00:36:43 *** kexkey has joined #bitcoin-core-dev
82019-02-22T00:42:00 *** Empact has quit IRC
92019-02-22T00:45:24 *** Empact has joined #bitcoin-core-dev
102019-02-22T00:47:47 *** skyikot has quit IRC
112019-02-22T00:58:09 <gwillen> I just learned about Golomb-Rice codes from BIP 158. That's neat.
122019-02-22T00:58:55 *** dqx_ has joined #bitcoin-core-dev
132019-02-22T01:00:52 <gmaxwell> there are more general/efficient techniques, but golomb coding is at least easy to understand and simple to implement.
142019-02-22T01:01:20 <gmaxwell> (and actually efficient in the unusual case that you can make your probablities just right...)
152019-02-22T01:02:28 *** dqx_ has quit IRC
162019-02-22T01:02:49 <sipa> gmaxwell: you mean range/arithmetic/rANS ?
172019-02-22T01:04:26 <gwillen> the unary quotient/binary remainder scheme is very cute
182019-02-22T01:04:32 <gmaxwell> right (there are another half dozen techniques that also achieve effectively the same thing)
192019-02-22T01:04:48 <gwillen> I am surprised it wasn't presented in the course I had in college where we went over various clever self-delimiting number encoding schemes in an exercise
202019-02-22T01:06:28 <gmaxwell> did you get told the story about how huffman codes were invented?
212019-02-22T01:07:09 <gmaxwell> https://www.maa.org/press/periodicals/convergence/discovery-of-huffman-codes
222019-02-22T01:07:11 <gwillen> we certainly learned about huffman codes, I don't recall a story
232019-02-22T01:07:44 * sipa did not learn any stories about huffman
242019-02-22T01:08:26 <gmaxwell> fano basically tricked huffman into solving the problem by presenting it as coarsework, and not mentioning that it was considered a hard open problem.
252019-02-22T01:08:55 <sipa> coarse or course?
262019-02-22T01:09:04 <gmaxwell> of course.
272019-02-22T01:18:29 *** zhangzf has joined #bitcoin-core-dev
282019-02-22T01:20:03 *** captjakk has quit IRC
292019-02-22T01:20:38 *** captjakk has joined #bitcoin-core-dev
302019-02-22T01:24:47 *** captjakk has quit IRC
312019-02-22T01:37:45 *** Evel-Knievel has quit IRC
322019-02-22T01:42:54 *** Murch has joined #bitcoin-core-dev
332019-02-22T01:42:55 *** MrPaz has joined #bitcoin-core-dev
342019-02-22T01:47:05 *** jb55 has joined #bitcoin-core-dev
352019-02-22T01:47:54 <gwillen> is there a trick people use when reviewing to see the commits in the proper order? Do you just not use the github interface?
362019-02-22T01:48:23 <gwillen> (github sorts them in a nonsense order, using 'author timestamp' instead of commit timestamp or topological order)
372019-02-22T01:48:26 *** jarthur has quit IRC
382019-02-22T01:54:31 *** commavir has quit IRC
392019-02-22T01:56:05 *** commavir has joined #bitcoin-core-dev
402019-02-22T01:56:07 <sipa> gwillen: yeah, it's a pain and i don't understand why they do that
412019-02-22T01:56:18 <sipa> i complained once and iirc they said they wouldn't fix it
422019-02-22T01:58:30 <gmaxwell> can you use this to make a PR, get some acks on it, then add an out of order commit that appears above the acks?
432019-02-22T01:59:22 <sipa> the overview page always shows things in "edit order"; if you rewrite an earlier commit it gets moved to the bottom etc
442019-02-22T01:59:28 <sipa> so no
452019-02-22T01:59:59 <sipa> it's only in the commit list order (including on the overview page, within groups of multiple simultaneously-pushed commits) that's sorted by author date
462019-02-22T02:10:57 *** justanotheruser has joined #bitcoin-core-dev
472019-02-22T02:12:30 *** petertodd has quit IRC
482019-02-22T02:12:46 *** petertodd has joined #bitcoin-core-dev
492019-02-22T02:26:59 *** Murch has quit IRC
502019-02-22T02:27:09 *** skyikot has joined #bitcoin-core-dev
512019-02-22T03:06:33 *** blackbaba has joined #bitcoin-core-dev
522019-02-22T03:09:34 *** blackbaba has quit IRC
532019-02-22T03:20:51 <jb55> gwillen: add fetch = +refs/pull/*/head:refs/pull/origin/* and fetch = +refs/pull/*/merge:refs/merge/origin/*
542019-02-22T03:20:57 <jb55> to your .git/config
552019-02-22T03:21:46 <sipa> ah, yes!
562019-02-22T03:22:07 <sipa> that was such a help when i discovered it
572019-02-22T03:22:08 <jb55> then you can git log -p refs/merge/origin/<pr>^..refs/pull/origin/<pr>
582019-02-22T03:23:05 <jb55> I do this call with (magit-log) to do reviews in magit
592019-02-22T03:23:42 <jb55> if you use something like notmuch I have scripts that pulls the PR number automatically out of the subject and launches a magit review: jb55/notmuch-github
602019-02-22T03:24:30 <jb55> only thing that it can't do is code review inside magit, but the magit guy is working on that atm
612019-02-22T03:25:02 * jb55 isn't a fan of the github interface
622019-02-22T03:29:02 *** pinheadmz has quit IRC
632019-02-22T03:33:25 *** sipa has quit IRC
642019-02-22T03:38:43 *** sipa has joined #bitcoin-core-dev
652019-02-22T03:54:40 <gwillen> aha, thanks jb55
662019-02-22T04:40:27 <dongcarl> gwillen: Here are some more tips (including the above)! https://github.com/bitcoin/bitcoin/blob/master/doc/productivity.md#reference-prs-easily-with-refspecs
672019-02-22T04:46:33 *** bitcoin-git has joined #bitcoin-core-dev
682019-02-22T04:46:34 <bitcoin-git> [bitcoin] dongcarl closed pull request #11915: Qt: Reflect correct dbcache value in options panel. (master...dbcache_gui_fix) https://github.com/bitcoin/bitcoin/pull/11915
692019-02-22T04:46:41 *** bitcoin-git has left #bitcoin-core-dev
702019-02-22T05:24:15 *** pinheadmz has joined #bitcoin-core-dev
712019-02-22T05:33:53 *** skyikot has quit IRC
722019-02-22T05:45:04 *** Empact has quit IRC
732019-02-22T05:46:42 *** skyikot has joined #bitcoin-core-dev
742019-02-22T05:49:45 *** justanotheruser has quit IRC
752019-02-22T05:57:27 *** justanotheruser has joined #bitcoin-core-dev
762019-02-22T06:03:16 *** pinheadmz has quit IRC
772019-02-22T06:17:29 *** Empact has joined #bitcoin-core-dev
782019-02-22T06:27:17 *** fanquake has joined #bitcoin-core-dev
792019-02-22T06:34:01 *** Empact has quit IRC
802019-02-22T06:40:33 *** spinza has quit IRC
812019-02-22T06:50:45 *** spinza has joined #bitcoin-core-dev
822019-02-22T06:59:31 *** skyikot has quit IRC
832019-02-22T07:02:42 *** Zanthir has joined #bitcoin-core-dev
842019-02-22T07:03:15 *** pinheadmz has joined #bitcoin-core-dev
852019-02-22T07:09:13 *** Empact has joined #bitcoin-core-dev
862019-02-22T07:14:50 <IZooo> Hello :)
872019-02-22T07:25:52 *** Zanthir has quit IRC
882019-02-22T07:42:16 *** Evel-Knievel has joined #bitcoin-core-dev
892019-02-22T07:43:11 *** Zanthir has joined #bitcoin-core-dev
902019-02-22T07:48:31 *** irc_viewer_test has joined #bitcoin-core-dev
912019-02-22T07:54:38 *** Zanthir has quit IRC
922019-02-22T07:55:49 *** irc_viewer_test has quit IRC
932019-02-22T08:18:05 *** Empact has quit IRC
942019-02-22T08:19:49 *** petezz4 has joined #bitcoin-core-dev
952019-02-22T08:21:44 *** petezz4 has quit IRC
962019-02-22T08:22:10 *** petezz4 has joined #bitcoin-core-dev
972019-02-22T08:28:50 *** Empact has joined #bitcoin-core-dev
982019-02-22T08:32:16 *** pinheadmz has quit IRC
992019-02-22T08:41:16 <fanquake> wumpus 15273 is trivial to merge, otherwise probably close
1002019-02-22T08:43:58 <fanquake> luke-jr can you have a look at #14740
1012019-02-22T08:44:00 <gribble> https://github.com/bitcoin/bitcoin/issues/14740 | Update `rpcbind` doc to match the manpage by sp4ke · Pull Request #14740 · bitcoin/bitcoin · GitHub
1022019-02-22T09:03:00 *** setpill has joined #bitcoin-core-dev
1032019-02-22T09:03:52 *** zeb_ has joined #bitcoin-core-dev
1042019-02-22T09:05:39 *** bitcoin-git has joined #bitcoin-core-dev
1052019-02-22T09:05:39 <bitcoin-git> [bitcoin] Sjors closed pull request #15320: [Do Not Merge] break < Qt5.6 compatibility for addAction to test Travis (master...2019/02/do-not-merge-qt52) https://github.com/bitcoin/bitcoin/pull/15320
1062019-02-22T09:05:51 *** bitcoin-git has left #bitcoin-core-dev
1072019-02-22T09:06:26 <provoostenator> ^ TL&DR Travis actually catches QT > 5.5.1 syntax so we don't have to find out months after merge :-)
1082019-02-22T09:12:52 *** esotericnonsense has quit IRC
1092019-02-22T09:14:36 *** esotericnonsense has joined #bitcoin-core-dev
1102019-02-22T09:17:53 *** rafalcpp has quit IRC
1112019-02-22T09:18:26 *** esotericnonsense has quit IRC
1122019-02-22T09:18:36 *** queip has quit IRC
1132019-02-22T09:18:55 *** esotericnonsense has joined #bitcoin-core-dev
1142019-02-22T09:25:32 *** EagleTM has joined #bitcoin-core-dev
1152019-02-22T09:27:49 *** v8c9X has quit IRC
1162019-02-22T09:28:07 *** v8c9X has joined #bitcoin-core-dev
1172019-02-22T09:34:04 *** sipa has quit IRC
1182019-02-22T09:34:17 *** sipa has joined #bitcoin-core-dev
1192019-02-22T09:40:09 *** Empact has quit IRC
1202019-02-22T09:45:31 *** timothy has joined #bitcoin-core-dev
1212019-02-22T09:56:34 *** jungly has joined #bitcoin-core-dev
1222019-02-22T09:57:03 *** siom has joined #bitcoin-core-dev
1232019-02-22T10:04:38 *** kexkey has quit IRC
1242019-02-22T10:12:44 *** bitcoin-git has joined #bitcoin-core-dev
1252019-02-22T10:12:44 <bitcoin-git> [bitcoin] Sjors opened pull request #15461: [depends] update to Boost 1.66 (master...2019/02/depends_boost) https://github.com/bitcoin/bitcoin/pull/15461
1262019-02-22T10:12:45 *** bitcoin-git has left #bitcoin-core-dev
1272019-02-22T10:13:34 *** Chris_Stewart_5 has joined #bitcoin-core-dev
1282019-02-22T10:15:05 *** niska has quit IRC
1292019-02-22T10:16:28 *** spinza has quit IRC
1302019-02-22T10:16:30 <provoostenator> ^ no rush
1312019-02-22T10:23:21 *** niska has joined #bitcoin-core-dev
1322019-02-22T10:30:28 *** spinza has joined #bitcoin-core-dev
1332019-02-22T10:44:38 *** spinza has quit IRC
1342019-02-22T10:52:47 *** zhangzf has quit IRC
1352019-02-22T10:54:43 *** justanotheruser has quit IRC
1362019-02-22T11:09:39 *** owowo has quit IRC
1372019-02-22T11:12:54 *** spinza has joined #bitcoin-core-dev
1382019-02-22T11:14:41 *** owowo has joined #bitcoin-core-dev
1392019-02-22T11:23:24 *** DeanGuss has quit IRC
1402019-02-22T11:24:06 *** DeanGuss has joined #bitcoin-core-dev
1412019-02-22T11:45:34 *** yoctopede has quit IRC
1422019-02-22T11:46:42 *** yoctopede has joined #bitcoin-core-dev
1432019-02-22T11:47:51 *** DeanGuss has quit IRC
1442019-02-22T11:49:21 *** DeanGuss has joined #bitcoin-core-dev
1452019-02-22T12:03:37 *** mmgen has joined #bitcoin-core-dev
1462019-02-22T12:27:26 *** AaronvanW has joined #bitcoin-core-dev
1472019-02-22T12:28:36 *** Aaronvan_ has joined #bitcoin-core-dev
1482019-02-22T12:31:54 *** AaronvanW has quit IRC
1492019-02-22T12:32:33 *** zhangzf has joined #bitcoin-core-dev
1502019-02-22T12:35:24 *** bitcoin-git has joined #bitcoin-core-dev
1512019-02-22T12:35:24 <bitcoin-git> [bitcoin] laanwj pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/a83aedca1889...a094b5433242
1522019-02-22T12:35:25 <bitcoin-git> bitcoin/master a786c3b Douglas Roark: Slight tweak to the verify-commits script directions
1532019-02-22T12:35:26 <bitcoin-git> bitcoin/master a094b54 Wladimir J. van der Laan: Merge #15273: docs: Slight tweak to the verify-commits script directions
1542019-02-22T12:35:27 *** bitcoin-git has left #bitcoin-core-dev
1552019-02-22T12:36:04 *** bitcoin-git has joined #bitcoin-core-dev
1562019-02-22T12:36:04 <bitcoin-git> [bitcoin] laanwj merged pull request #15273: docs: Slight tweak to the verify-commits script directions (master...tweak_verify_commit_dirs) https://github.com/bitcoin/bitcoin/pull/15273
1572019-02-22T12:36:15 *** bitcoin-git has left #bitcoin-core-dev
1582019-02-22T12:42:49 *** JackH has joined #bitcoin-core-dev
1592019-02-22T12:42:53 *** EagleTM has quit IRC
1602019-02-22T12:56:51 *** siom has quit IRC
1612019-02-22T12:57:15 *** siom has joined #bitcoin-core-dev
1622019-02-22T13:00:57 *** Chris_Stewart_5 has quit IRC
1632019-02-22T13:03:34 *** owowo has quit IRC
1642019-02-22T13:03:39 *** Chris_Stewart_5 has joined #bitcoin-core-dev
1652019-02-22T13:03:51 *** ovovo has joined #bitcoin-core-dev
1662019-02-22T13:11:01 *** tomillo has joined #bitcoin-core-dev
1672019-02-22T13:12:30 *** ovovo has quit IRC
1682019-02-22T13:17:27 *** owowo has joined #bitcoin-core-dev
1692019-02-22T13:17:27 *** owowo has joined #bitcoin-core-dev
1702019-02-22T13:40:52 *** Chris_Stewart_5 has quit IRC
1712019-02-22T14:04:18 *** IZooo has quit IRC
1722019-02-22T14:06:52 *** AaronvanW has joined #bitcoin-core-dev
1732019-02-22T14:07:50 *** zhangzf has quit IRC
1742019-02-22T14:09:31 *** Aaronva__ has joined #bitcoin-core-dev
1752019-02-22T14:10:17 *** Aaronvan_ has quit IRC
1762019-02-22T14:12:00 *** AaronvanW has quit IRC
1772019-02-22T14:14:47 *** zeb_ has quit IRC
1782019-02-22T14:18:58 *** zhangzf has joined #bitcoin-core-dev
1792019-02-22T14:19:58 *** queip has joined #bitcoin-core-dev
1802019-02-22T14:23:36 *** Zanthir has joined #bitcoin-core-dev
1812019-02-22T14:29:40 *** Aaronva__ is now known as AaronvanW
1822019-02-22T14:40:43 *** Chris_Stewart_5 has joined #bitcoin-core-dev
1832019-02-22T14:46:55 *** fanquake has quit IRC
1842019-02-22T14:49:36 *** Zanthir has quit IRC
1852019-02-22T14:53:05 *** rafalcpp has joined #bitcoin-core-dev
1862019-02-22T14:59:02 *** justanotheruser has joined #bitcoin-core-dev
1872019-02-22T15:14:17 *** m8tion has joined #bitcoin-core-dev
1882019-02-22T15:16:59 *** millerti has joined #bitcoin-core-dev
1892019-02-22T15:27:32 *** user_ has joined #bitcoin-core-dev
1902019-02-22T15:32:09 *** arubi has quit IRC
1912019-02-22T15:32:31 *** arubi has joined #bitcoin-core-dev
1922019-02-22T15:33:56 *** Guyver2 has joined #bitcoin-core-dev
1932019-02-22T15:35:15 *** pinheadmz has joined #bitcoin-core-dev
1942019-02-22T15:37:10 *** hex17or has quit IRC
1952019-02-22T15:45:12 *** bitcoin-git has joined #bitcoin-core-dev
1962019-02-22T15:45:12 <bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/a094b5433242...77fcf252f65e
1972019-02-22T15:45:13 <bitcoin-git> bitcoin/master 53b3103 João Barbosa: refactor: Drop redundant wallet reference
1982019-02-22T15:45:13 <bitcoin-git> bitcoin/master 77fcf25 MarcoFalke: Merge #15458: refactor: Drop redundant wallet reference
1992019-02-22T15:45:16 *** bitcoin-git has left #bitcoin-core-dev
2002019-02-22T15:46:00 *** bitcoin-git has joined #bitcoin-core-dev
2012019-02-22T15:46:00 <bitcoin-git> [bitcoin] MarcoFalke merged pull request #15458: refactor: Drop redundant wallet reference (master...2019-02-interfaces-wallet) https://github.com/bitcoin/bitcoin/pull/15458
2022019-02-22T15:46:14 *** bitcoin-git has left #bitcoin-core-dev
2032019-02-22T15:48:02 *** hex17or has joined #bitcoin-core-dev
2042019-02-22T15:49:50 *** bitcoin-git has joined #bitcoin-core-dev
2052019-02-22T15:49:50 <bitcoin-git> [bitcoin] promag opened pull request #15462: gui: Fix async open wallet call order (master...2019-02-fix-15455) https://github.com/bitcoin/bitcoin/pull/15462
2062019-02-22T15:49:51 *** bitcoin-git has left #bitcoin-core-dev
2072019-02-22T15:51:47 *** promag_ has joined #bitcoin-core-dev
2082019-02-22T15:51:59 <promag_> tag 0.18 ^
2092019-02-22T15:55:00 *** owowo has quit IRC
2102019-02-22T15:58:31 *** promag has quit IRC
2112019-02-22T15:58:48 *** petezz4 has quit IRC
2122019-02-22T16:00:10 *** owowo has joined #bitcoin-core-dev
2132019-02-22T16:01:01 *** promag has joined #bitcoin-core-dev
2142019-02-22T16:01:58 *** setpill has quit IRC
2152019-02-22T16:04:01 *** decouverte has joined #bitcoin-core-dev
2162019-02-22T16:04:02 <decouverte> hey!
2172019-02-22T16:07:36 *** DeanGuss has quit IRC
2182019-02-22T16:08:44 *** DeanGuss has joined #bitcoin-core-dev
2192019-02-22T16:09:37 *** decouverte has quit IRC
2202019-02-22T16:11:16 *** bitcoin-git has joined #bitcoin-core-dev
2212019-02-22T16:11:16 <bitcoin-git> [bitcoin] promag opened pull request #15463: rpc: Speedup getaddressesbylabel (master...2019-02-fix-15447) https://github.com/bitcoin/bitcoin/pull/15463
2222019-02-22T16:11:28 *** bitcoin-git has left #bitcoin-core-dev
2232019-02-22T16:15:00 *** bitcoin-git has joined #bitcoin-core-dev
2242019-02-22T16:15:00 <bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/77fcf252f65e...169dced9a42b
2252019-02-22T16:15:01 <bitcoin-git> bitcoin/master fa9b60c MarcoFalke: Remove unused TransactionError constants
2262019-02-22T16:15:01 <bitcoin-git> bitcoin/master 169dced MarcoFalke: Merge #15408: Remove unused TransactionError constants
2272019-02-22T16:15:03 *** bitcoin-git has left #bitcoin-core-dev
2282019-02-22T16:15:36 *** bitcoin-git has joined #bitcoin-core-dev
2292019-02-22T16:15:36 <bitcoin-git> [bitcoin] MarcoFalke merged pull request #15408: Remove unused TransactionError constants (master...Mf1902-TransactionErrorConst) https://github.com/bitcoin/bitcoin/pull/15408
2302019-02-22T16:15:42 *** bitcoin-git has left #bitcoin-core-dev
2312019-02-22T16:16:18 *** irc_viewer_test has joined #bitcoin-core-dev
2322019-02-22T16:21:34 *** captjakk has joined #bitcoin-core-dev
2332019-02-22T16:23:27 *** Murch has joined #bitcoin-core-dev
2342019-02-22T16:29:41 *** bitcoin-git has joined #bitcoin-core-dev
2352019-02-22T16:29:41 <bitcoin-git> [bitcoin] promag opened pull request #15464: gui: Drop unused return values in WalletFrame (master...2019-02-walletframe) https://github.com/bitcoin/bitcoin/pull/15464
2362019-02-22T16:29:52 *** bitcoin-git has left #bitcoin-core-dev
2372019-02-22T16:30:53 *** captjakk has quit IRC
2382019-02-22T16:31:26 *** captjakk has joined #bitcoin-core-dev
2392019-02-22T16:42:24 *** skyikot has joined #bitcoin-core-dev
2402019-02-22T16:43:03 *** zhangzf has quit IRC
2412019-02-22T16:50:41 *** pinheadmz has joined #bitcoin-core-dev
2422019-02-22T16:51:49 *** irc_viewer_test has quit IRC
2432019-02-22T16:53:24 *** promag_ has quit IRC
2442019-02-22T17:06:14 *** kexkey has joined #bitcoin-core-dev
2452019-02-22T17:28:25 *** vexbuy has joined #bitcoin-core-dev
2462019-02-22T17:31:51 *** vexbuy has quit IRC
2472019-02-22T17:41:13 *** ap4lmtree- has joined #bitcoin-core-dev
2482019-02-22T17:43:45 *** ap4lmtree has quit IRC
2492019-02-22T17:50:28 *** Chris_Stewart_5 has quit IRC
2502019-02-22T17:52:25 *** vexbuy has joined #bitcoin-core-dev
2512019-02-22T17:57:55 *** vexbuy has quit IRC
2522019-02-22T18:01:06 *** jungly has quit IRC
2532019-02-22T18:05:50 *** bitcoin-git has joined #bitcoin-core-dev
2542019-02-22T18:05:50 <bitcoin-git> [bitcoin] stevenroose opened pull request #15466: tests: Print remaining jobs in test_runner.py (master...remaining-jobs) https://github.com/bitcoin/bitcoin/pull/15466
2552019-02-22T18:05:57 *** bitcoin-git has left #bitcoin-core-dev
2562019-02-22T18:05:59 *** Murch has quit IRC
2572019-02-22T18:06:15 *** pinheadmz has quit IRC
2582019-02-22T18:07:18 *** Murch has joined #bitcoin-core-dev
2592019-02-22T18:07:36 *** pinheadmz has joined #bitcoin-core-dev
2602019-02-22T18:08:20 *** atroxes has joined #bitcoin-core-dev
2612019-02-22T18:09:00 *** vexbuy has joined #bitcoin-core-dev
2622019-02-22T18:09:32 *** dqx has quit IRC
2632019-02-22T18:21:17 *** dqx has joined #bitcoin-core-dev
2642019-02-22T18:26:22 *** dqx has quit IRC
2652019-02-22T18:27:08 *** dqx has joined #bitcoin-core-dev
2662019-02-22T18:31:42 *** dqx has quit IRC
2672019-02-22T18:32:28 *** dqx has joined #bitcoin-core-dev
2682019-02-22T18:37:44 *** hebasto has joined #bitcoin-core-dev
2692019-02-22T18:42:56 *** promag_ has joined #bitcoin-core-dev
2702019-02-22T18:43:53 *** yoctopede has quit IRC
2712019-02-22T18:52:21 *** vexbuy has quit IRC
2722019-02-22T18:52:37 *** vexbuy has joined #bitcoin-core-dev
2732019-02-22T18:53:31 *** DeanGuss has quit IRC
2742019-02-22T18:54:04 *** Murch has quit IRC
2752019-02-22T19:03:03 *** Chris_Stewart_5 has joined #bitcoin-core-dev
2762019-02-22T19:04:33 *** promag_ has quit IRC
2772019-02-22T19:08:27 *** promag_ has joined #bitcoin-core-dev
2782019-02-22T19:12:56 *** promag_ has quit IRC
2792019-02-22T19:15:42 *** pinheadmz has quit IRC
2802019-02-22T19:16:12 *** pinheadmz has joined #bitcoin-core-dev
2812019-02-22T19:21:16 *** jimpo_ has quit IRC
2822019-02-22T19:21:51 *** vexbuy has quit IRC
2832019-02-22T19:23:18 *** vexbuy has joined #bitcoin-core-dev
2842019-02-22T19:25:29 *** jimpo has joined #bitcoin-core-dev
2852019-02-22T19:29:32 *** Thong_ has joined #bitcoin-core-dev
2862019-02-22T19:31:19 *** timothy has quit IRC
2872019-02-22T19:34:54 *** hebasto has quit IRC
2882019-02-22T19:38:21 *** Thong_ has quit IRC
2892019-02-22T19:43:19 *** Murch has joined #bitcoin-core-dev
2902019-02-22T19:44:10 *** bitcoin-git has joined #bitcoin-core-dev
2912019-02-22T19:44:11 <bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/169dced9a42b...f3f9c1de19e6
2922019-02-22T19:44:11 <bitcoin-git> bitcoin/master 39e20fc Daniel Kraft: Add missing #include.
2932019-02-22T19:44:12 <bitcoin-git> bitcoin/master f3f9c1d MarcoFalke: Merge #15435: rpc: Add missing #include
2942019-02-22T19:44:18 *** bitcoin-git has left #bitcoin-core-dev
2952019-02-22T19:44:51 *** bitcoin-git has joined #bitcoin-core-dev
2962019-02-22T19:44:52 <bitcoin-git> [bitcoin] MarcoFalke merged pull request #15435: rpc: Add missing #include (master...fix-include) https://github.com/bitcoin/bitcoin/pull/15435
2972019-02-22T19:44:56 *** bitcoin-git has left #bitcoin-core-dev
2982019-02-22T20:02:28 *** Guyver2 has quit IRC
2992019-02-22T20:08:23 *** jb55 has quit IRC
3002019-02-22T20:33:51 *** vexbuy has quit IRC
3012019-02-22T20:35:31 *** jb55 has joined #bitcoin-core-dev
3022019-02-22T20:35:44 *** siom_ has joined #bitcoin-core-dev
3032019-02-22T20:37:08 *** hex17or has quit IRC
3042019-02-22T20:38:03 *** siom has quit IRC
3052019-02-22T20:42:43 *** Guyver2 has joined #bitcoin-core-dev
3062019-02-22T21:16:28 *** Chris_Stewart_5 has quit IRC
3072019-02-22T21:19:03 *** fabianfabian has joined #bitcoin-core-dev
3082019-02-22T21:20:09 *** mmgen has quit IRC
3092019-02-22T21:22:31 *** Guyver2 has quit IRC
3102019-02-22T21:25:00 *** DeanGuss has joined #bitcoin-core-dev
3112019-02-22T21:31:50 *** siom_ has quit IRC
3122019-02-22T21:55:07 *** dviola has joined #bitcoin-core-dev
3132019-02-22T21:58:22 *** ddustin has joined #bitcoin-core-dev
3142019-02-22T21:58:55 *** ddustin has quit IRC
3152019-02-22T21:59:45 *** ddustin has joined #bitcoin-core-dev
3162019-02-22T22:01:12 *** ddustin has joined #bitcoin-core-dev
3172019-02-22T22:01:20 *** booyah has quit IRC
3182019-02-22T22:01:41 *** ddustin has quit IRC
3192019-02-22T22:02:16 *** ddustin has joined #bitcoin-core-dev
3202019-02-22T22:02:18 *** booyah has joined #bitcoin-core-dev
3212019-02-22T22:03:54 *** DougieBot5000_ has joined #bitcoin-core-dev
3222019-02-22T22:04:18 *** DougieBot5000 is now known as Guest83538
3232019-02-22T22:04:19 *** DougieBot5000_ is now known as DougieBot5000
3242019-02-22T22:19:22 *** spaced0ut has quit IRC
3252019-02-22T22:34:07 *** pinheadmz has quit IRC
3262019-02-22T22:37:19 *** Murch has quit IRC
3272019-02-22T22:37:42 *** pinheadmz has joined #bitcoin-core-dev
3282019-02-22T22:38:01 *** Murch has joined #bitcoin-core-dev
3292019-02-22T22:38:59 *** Murch has quit IRC
3302019-02-22T22:41:55 *** Karyon has joined #bitcoin-core-dev
3312019-02-22T22:51:19 *** Murch has joined #bitcoin-core-dev
3322019-02-22T22:58:25 *** irc_viewer_test has joined #bitcoin-core-dev
3332019-02-22T22:58:54 *** spinza has quit IRC
3342019-02-22T23:07:41 *** spinza has joined #bitcoin-core-dev
3352019-02-22T23:15:40 *** OneFive has joined #bitcoin-core-dev
3362019-02-22T23:22:30 *** irc_viewer_test has quit IRC
3372019-02-22T23:34:40 *** fabianfabian has quit IRC
3382019-02-22T23:54:31 *** millerti has quit IRC