1 2019-02-22T00:09:54 *** captjakk has joined #bitcoin-core-dev
2 2019-02-22T00:10:46 *** dqx_ has quit IRC
3 2019-02-22T00:11:25 *** dqx_ has joined #bitcoin-core-dev
4 2019-02-22T00:12:53 *** Murch has quit IRC
5 2019-02-22T00:16:36 *** dqx_ has quit IRC
6 2019-02-22T00:22:21 *** Aaronvan_ has quit IRC
7 2019-02-22T00:36:43 *** kexkey has joined #bitcoin-core-dev
8 2019-02-22T00:42:00 *** Empact has quit IRC
9 2019-02-22T00:45:24 *** Empact has joined #bitcoin-core-dev
10 2019-02-22T00:47:47 *** skyikot has quit IRC
11 2019-02-22T00:58:09 <gwillen> I just learned about Golomb-Rice codes from BIP 158. That's neat.
12 2019-02-22T00:58:55 *** dqx_ has joined #bitcoin-core-dev
13 2019-02-22T01:00:52 <gmaxwell> there are more general/efficient techniques, but golomb coding is at least easy to understand and simple to implement.
14 2019-02-22T01:01:20 <gmaxwell> (and actually efficient in the unusual case that you can make your probablities just right...)
15 2019-02-22T01:02:28 *** dqx_ has quit IRC
16 2019-02-22T01:02:49 <sipa> gmaxwell: you mean range/arithmetic/rANS ?
17 2019-02-22T01:04:26 <gwillen> the unary quotient/binary remainder scheme is very cute
18 2019-02-22T01:04:32 <gmaxwell> right (there are another half dozen techniques that also achieve effectively the same thing)
19 2019-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
20 2019-02-22T01:06:28 <gmaxwell> did you get told the story about how huffman codes were invented?
21 2019-02-22T01:07:09 <gmaxwell> https://www.maa.org/press/periodicals/convergence/discovery-of-huffman-codes
22 2019-02-22T01:07:11 <gwillen> we certainly learned about huffman codes, I don't recall a story
23 2019-02-22T01:07:44 * sipa did not learn any stories about huffman
24 2019-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.
25 2019-02-22T01:08:55 <sipa> coarse or course?
26 2019-02-22T01:09:04 <gmaxwell> of course.
27 2019-02-22T01:18:29 *** zhangzf has joined #bitcoin-core-dev
28 2019-02-22T01:20:03 *** captjakk has quit IRC
29 2019-02-22T01:20:38 *** captjakk has joined #bitcoin-core-dev
30 2019-02-22T01:24:47 *** captjakk has quit IRC
31 2019-02-22T01:37:45 *** Evel-Knievel has quit IRC
32 2019-02-22T01:42:54 *** Murch has joined #bitcoin-core-dev
33 2019-02-22T01:42:55 *** MrPaz has joined #bitcoin-core-dev
34 2019-02-22T01:47:05 *** jb55 has joined #bitcoin-core-dev
35 2019-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?
36 2019-02-22T01:48:23 <gwillen> (github sorts them in a nonsense order, using 'author timestamp' instead of commit timestamp or topological order)
37 2019-02-22T01:48:26 *** jarthur has quit IRC
38 2019-02-22T01:54:31 *** commavir has quit IRC
39 2019-02-22T01:56:05 *** commavir has joined #bitcoin-core-dev
40 2019-02-22T01:56:07 <sipa> gwillen: yeah, it's a pain and i don't understand why they do that
41 2019-02-22T01:56:18 <sipa> i complained once and iirc they said they wouldn't fix it
42 2019-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?
43 2019-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
44 2019-02-22T01:59:28 <sipa> so no
45 2019-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
46 2019-02-22T02:10:57 *** justanotheruser has joined #bitcoin-core-dev
47 2019-02-22T02:12:30 *** petertodd has quit IRC
48 2019-02-22T02:12:46 *** petertodd has joined #bitcoin-core-dev
49 2019-02-22T02:26:59 *** Murch has quit IRC
50 2019-02-22T02:27:09 *** skyikot has joined #bitcoin-core-dev
51 2019-02-22T03:06:33 *** blackbaba has joined #bitcoin-core-dev
52 2019-02-22T03:09:34 *** blackbaba has quit IRC
53 2019-02-22T03:20:51 <jb55> gwillen: add fetch = +refs/pull/*/head:refs/pull/origin/* and fetch = +refs/pull/*/merge:refs/merge/origin/*
54 2019-02-22T03:20:57 <jb55> to your .git/config
55 2019-02-22T03:21:46 <sipa> ah, yes!
56 2019-02-22T03:22:07 <sipa> that was such a help when i discovered it
57 2019-02-22T03:22:08 <jb55> then you can git log -p refs/merge/origin/<pr>^..refs/pull/origin/<pr>
58 2019-02-22T03:23:05 <jb55> I do this call with (magit-log) to do reviews in magit
59 2019-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
60 2019-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
61 2019-02-22T03:25:02 * jb55 isn't a fan of the github interface
62 2019-02-22T03:29:02 *** pinheadmz has quit IRC
63 2019-02-22T03:33:25 *** sipa has quit IRC
64 2019-02-22T03:38:43 *** sipa has joined #bitcoin-core-dev
65 2019-02-22T03:54:40 <gwillen> aha, thanks jb55
66 2019-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
67 2019-02-22T04:46:33 *** bitcoin-git has joined #bitcoin-core-dev
68 2019-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
69 2019-02-22T04:46:41 *** bitcoin-git has left #bitcoin-core-dev
70 2019-02-22T05:24:15 *** pinheadmz has joined #bitcoin-core-dev
71 2019-02-22T05:33:53 *** skyikot has quit IRC
72 2019-02-22T05:45:04 *** Empact has quit IRC
73 2019-02-22T05:46:42 *** skyikot has joined #bitcoin-core-dev
74 2019-02-22T05:49:45 *** justanotheruser has quit IRC
75 2019-02-22T05:57:27 *** justanotheruser has joined #bitcoin-core-dev
76 2019-02-22T06:03:16 *** pinheadmz has quit IRC
77 2019-02-22T06:17:29 *** Empact has joined #bitcoin-core-dev
78 2019-02-22T06:27:17 *** fanquake has joined #bitcoin-core-dev
79 2019-02-22T06:34:01 *** Empact has quit IRC
80 2019-02-22T06:40:33 *** spinza has quit IRC
81 2019-02-22T06:50:45 *** spinza has joined #bitcoin-core-dev
82 2019-02-22T06:59:31 *** skyikot has quit IRC
83 2019-02-22T07:02:42 *** Zanthir has joined #bitcoin-core-dev
84 2019-02-22T07:03:15 *** pinheadmz has joined #bitcoin-core-dev
85 2019-02-22T07:09:13 *** Empact has joined #bitcoin-core-dev
86 2019-02-22T07:14:50 <IZooo> Hello :)
87 2019-02-22T07:25:52 *** Zanthir has quit IRC
88 2019-02-22T07:42:16 *** Evel-Knievel has joined #bitcoin-core-dev
89 2019-02-22T07:43:11 *** Zanthir has joined #bitcoin-core-dev
90 2019-02-22T07:48:31 *** irc_viewer_test has joined #bitcoin-core-dev
91 2019-02-22T07:54:38 *** Zanthir has quit IRC
92 2019-02-22T07:55:49 *** irc_viewer_test has quit IRC
93 2019-02-22T08:18:05 *** Empact has quit IRC
94 2019-02-22T08:19:49 *** petezz4 has joined #bitcoin-core-dev
95 2019-02-22T08:21:44 *** petezz4 has quit IRC
96 2019-02-22T08:22:10 *** petezz4 has joined #bitcoin-core-dev
97 2019-02-22T08:28:50 *** Empact has joined #bitcoin-core-dev
98 2019-02-22T08:32:16 *** pinheadmz has quit IRC
99 2019-02-22T08:41:16 <fanquake> wumpus 15273 is trivial to merge, otherwise probably close
100 2019-02-22T08:43:58 <fanquake> luke-jr can you have a look at #14740
101 2019-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
102 2019-02-22T09:03:00 *** setpill has joined #bitcoin-core-dev
103 2019-02-22T09:03:52 *** zeb_ has joined #bitcoin-core-dev
104 2019-02-22T09:05:39 *** bitcoin-git has joined #bitcoin-core-dev
105 2019-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
106 2019-02-22T09:05:51 *** bitcoin-git has left #bitcoin-core-dev
107 2019-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 :-)
108 2019-02-22T09:12:52 *** esotericnonsense has quit IRC
109 2019-02-22T09:14:36 *** esotericnonsense has joined #bitcoin-core-dev
110 2019-02-22T09:17:53 *** rafalcpp has quit IRC
111 2019-02-22T09:18:26 *** esotericnonsense has quit IRC
112 2019-02-22T09:18:36 *** queip has quit IRC
113 2019-02-22T09:18:55 *** esotericnonsense has joined #bitcoin-core-dev
114 2019-02-22T09:25:32 *** EagleTM has joined #bitcoin-core-dev
115 2019-02-22T09:27:49 *** v8c9X has quit IRC
116 2019-02-22T09:28:07 *** v8c9X has joined #bitcoin-core-dev
117 2019-02-22T09:34:04 *** sipa has quit IRC
118 2019-02-22T09:34:17 *** sipa has joined #bitcoin-core-dev
119 2019-02-22T09:40:09 *** Empact has quit IRC
120 2019-02-22T09:45:31 *** timothy has joined #bitcoin-core-dev
121 2019-02-22T09:56:34 *** jungly has joined #bitcoin-core-dev
122 2019-02-22T09:57:03 *** siom has joined #bitcoin-core-dev
123 2019-02-22T10:04:38 *** kexkey has quit IRC
124 2019-02-22T10:12:44 *** bitcoin-git has joined #bitcoin-core-dev
125 2019-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
126 2019-02-22T10:12:45 *** bitcoin-git has left #bitcoin-core-dev
127 2019-02-22T10:13:34 *** Chris_Stewart_5 has joined #bitcoin-core-dev
128 2019-02-22T10:15:05 *** niska has quit IRC
129 2019-02-22T10:16:28 *** spinza has quit IRC
130 2019-02-22T10:16:30 <provoostenator> ^ no rush
131 2019-02-22T10:23:21 *** niska has joined #bitcoin-core-dev
132 2019-02-22T10:30:28 *** spinza has joined #bitcoin-core-dev
133 2019-02-22T10:44:38 *** spinza has quit IRC
134 2019-02-22T10:52:47 *** zhangzf has quit IRC
135 2019-02-22T10:54:43 *** justanotheruser has quit IRC
136 2019-02-22T11:09:39 *** owowo has quit IRC
137 2019-02-22T11:12:54 *** spinza has joined #bitcoin-core-dev
138 2019-02-22T11:14:41 *** owowo has joined #bitcoin-core-dev
139 2019-02-22T11:23:24 *** DeanGuss has quit IRC
140 2019-02-22T11:24:06 *** DeanGuss has joined #bitcoin-core-dev
141 2019-02-22T11:45:34 *** yoctopede has quit IRC
142 2019-02-22T11:46:42 *** yoctopede has joined #bitcoin-core-dev
143 2019-02-22T11:47:51 *** DeanGuss has quit IRC
144 2019-02-22T11:49:21 *** DeanGuss has joined #bitcoin-core-dev
145 2019-02-22T12:03:37 *** mmgen has joined #bitcoin-core-dev
146 2019-02-22T12:27:26 *** AaronvanW has joined #bitcoin-core-dev
147 2019-02-22T12:28:36 *** Aaronvan_ has joined #bitcoin-core-dev
148 2019-02-22T12:31:54 *** AaronvanW has quit IRC
149 2019-02-22T12:32:33 *** zhangzf has joined #bitcoin-core-dev
150 2019-02-22T12:35:24 *** bitcoin-git has joined #bitcoin-core-dev
151 2019-02-22T12:35:24 <bitcoin-git> [bitcoin] laanwj pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/a83aedca1889...a094b5433242
152 2019-02-22T12:35:25 <bitcoin-git> bitcoin/master a786c3b Douglas Roark: Slight tweak to the verify-commits script directions
153 2019-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
154 2019-02-22T12:35:27 *** bitcoin-git has left #bitcoin-core-dev
155 2019-02-22T12:36:04 *** bitcoin-git has joined #bitcoin-core-dev
156 2019-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
157 2019-02-22T12:36:15 *** bitcoin-git has left #bitcoin-core-dev
158 2019-02-22T12:42:49 *** JackH has joined #bitcoin-core-dev
159 2019-02-22T12:42:53 *** EagleTM has quit IRC
160 2019-02-22T12:56:51 *** siom has quit IRC
161 2019-02-22T12:57:15 *** siom has joined #bitcoin-core-dev
162 2019-02-22T13:00:57 *** Chris_Stewart_5 has quit IRC
163 2019-02-22T13:03:34 *** owowo has quit IRC
164 2019-02-22T13:03:39 *** Chris_Stewart_5 has joined #bitcoin-core-dev
165 2019-02-22T13:03:51 *** ovovo has joined #bitcoin-core-dev
166 2019-02-22T13:11:01 *** tomillo has joined #bitcoin-core-dev
167 2019-02-22T13:12:30 *** ovovo has quit IRC
168 2019-02-22T13:17:27 *** owowo has joined #bitcoin-core-dev
169 2019-02-22T13:17:27 *** owowo has joined #bitcoin-core-dev
170 2019-02-22T13:40:52 *** Chris_Stewart_5 has quit IRC
171 2019-02-22T14:04:18 *** IZooo has quit IRC
172 2019-02-22T14:06:52 *** AaronvanW has joined #bitcoin-core-dev
173 2019-02-22T14:07:50 *** zhangzf has quit IRC
174 2019-02-22T14:09:31 *** Aaronva__ has joined #bitcoin-core-dev
175 2019-02-22T14:10:17 *** Aaronvan_ has quit IRC
176 2019-02-22T14:12:00 *** AaronvanW has quit IRC
177 2019-02-22T14:14:47 *** zeb_ has quit IRC
178 2019-02-22T14:18:58 *** zhangzf has joined #bitcoin-core-dev
179 2019-02-22T14:19:58 *** queip has joined #bitcoin-core-dev
180 2019-02-22T14:23:36 *** Zanthir has joined #bitcoin-core-dev
181 2019-02-22T14:29:40 *** Aaronva__ is now known as AaronvanW
182 2019-02-22T14:40:43 *** Chris_Stewart_5 has joined #bitcoin-core-dev
183 2019-02-22T14:46:55 *** fanquake has quit IRC
184 2019-02-22T14:49:36 *** Zanthir has quit IRC
185 2019-02-22T14:53:05 *** rafalcpp has joined #bitcoin-core-dev
186 2019-02-22T14:59:02 *** justanotheruser has joined #bitcoin-core-dev
187 2019-02-22T15:14:17 *** m8tion has joined #bitcoin-core-dev
188 2019-02-22T15:16:59 *** millerti has joined #bitcoin-core-dev
189 2019-02-22T15:27:32 *** user_ has joined #bitcoin-core-dev
190 2019-02-22T15:32:09 *** arubi has quit IRC
191 2019-02-22T15:32:31 *** arubi has joined #bitcoin-core-dev
192 2019-02-22T15:33:56 *** Guyver2 has joined #bitcoin-core-dev
193 2019-02-22T15:35:15 *** pinheadmz has joined #bitcoin-core-dev
194 2019-02-22T15:37:10 *** hex17or has quit IRC
195 2019-02-22T15:45:12 *** bitcoin-git has joined #bitcoin-core-dev
196 2019-02-22T15:45:12 <bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/a094b5433242...77fcf252f65e
197 2019-02-22T15:45:13 <bitcoin-git> bitcoin/master 53b3103 João Barbosa: refactor: Drop redundant wallet reference
198 2019-02-22T15:45:13 <bitcoin-git> bitcoin/master 77fcf25 MarcoFalke: Merge #15458: refactor: Drop redundant wallet reference
199 2019-02-22T15:45:16 *** bitcoin-git has left #bitcoin-core-dev
200 2019-02-22T15:46:00 *** bitcoin-git has joined #bitcoin-core-dev
201 2019-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
202 2019-02-22T15:46:14 *** bitcoin-git has left #bitcoin-core-dev
203 2019-02-22T15:48:02 *** hex17or has joined #bitcoin-core-dev
204 2019-02-22T15:49:50 *** bitcoin-git has joined #bitcoin-core-dev
205 2019-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
206 2019-02-22T15:49:51 *** bitcoin-git has left #bitcoin-core-dev
207 2019-02-22T15:51:47 *** promag_ has joined #bitcoin-core-dev
208 2019-02-22T15:51:59 <promag_> tag 0.18 ^
209 2019-02-22T15:55:00 *** owowo has quit IRC
210 2019-02-22T15:58:31 *** promag has quit IRC
211 2019-02-22T15:58:48 *** petezz4 has quit IRC
212 2019-02-22T16:00:10 *** owowo has joined #bitcoin-core-dev
213 2019-02-22T16:01:01 *** promag has joined #bitcoin-core-dev
214 2019-02-22T16:01:58 *** setpill has quit IRC
215 2019-02-22T16:04:01 *** decouverte has joined #bitcoin-core-dev
216 2019-02-22T16:04:02 <decouverte> hey!
217 2019-02-22T16:07:36 *** DeanGuss has quit IRC
218 2019-02-22T16:08:44 *** DeanGuss has joined #bitcoin-core-dev
219 2019-02-22T16:09:37 *** decouverte has quit IRC
220 2019-02-22T16:11:16 *** bitcoin-git has joined #bitcoin-core-dev
221 2019-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
222 2019-02-22T16:11:28 *** bitcoin-git has left #bitcoin-core-dev
223 2019-02-22T16:15:00 *** bitcoin-git has joined #bitcoin-core-dev
224 2019-02-22T16:15:00 <bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/77fcf252f65e...169dced9a42b
225 2019-02-22T16:15:01 <bitcoin-git> bitcoin/master fa9b60c MarcoFalke: Remove unused TransactionError constants
226 2019-02-22T16:15:01 <bitcoin-git> bitcoin/master 169dced MarcoFalke: Merge #15408: Remove unused TransactionError constants
227 2019-02-22T16:15:03 *** bitcoin-git has left #bitcoin-core-dev
228 2019-02-22T16:15:36 *** bitcoin-git has joined #bitcoin-core-dev
229 2019-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
230 2019-02-22T16:15:42 *** bitcoin-git has left #bitcoin-core-dev
231 2019-02-22T16:16:18 *** irc_viewer_test has joined #bitcoin-core-dev
232 2019-02-22T16:21:34 *** captjakk has joined #bitcoin-core-dev
233 2019-02-22T16:23:27 *** Murch has joined #bitcoin-core-dev
234 2019-02-22T16:29:41 *** bitcoin-git has joined #bitcoin-core-dev
235 2019-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
236 2019-02-22T16:29:52 *** bitcoin-git has left #bitcoin-core-dev
237 2019-02-22T16:30:53 *** captjakk has quit IRC
238 2019-02-22T16:31:26 *** captjakk has joined #bitcoin-core-dev
239 2019-02-22T16:42:24 *** skyikot has joined #bitcoin-core-dev
240 2019-02-22T16:43:03 *** zhangzf has quit IRC
241 2019-02-22T16:50:41 *** pinheadmz has joined #bitcoin-core-dev
242 2019-02-22T16:51:49 *** irc_viewer_test has quit IRC
243 2019-02-22T16:53:24 *** promag_ has quit IRC
244 2019-02-22T17:06:14 *** kexkey has joined #bitcoin-core-dev
245 2019-02-22T17:28:25 *** vexbuy has joined #bitcoin-core-dev
246 2019-02-22T17:31:51 *** vexbuy has quit IRC
247 2019-02-22T17:41:13 *** ap4lmtree- has joined #bitcoin-core-dev
248 2019-02-22T17:43:45 *** ap4lmtree has quit IRC
249 2019-02-22T17:50:28 *** Chris_Stewart_5 has quit IRC
250 2019-02-22T17:52:25 *** vexbuy has joined #bitcoin-core-dev
251 2019-02-22T17:57:55 *** vexbuy has quit IRC
252 2019-02-22T18:01:06 *** jungly has quit IRC
253 2019-02-22T18:05:50 *** bitcoin-git has joined #bitcoin-core-dev
254 2019-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
255 2019-02-22T18:05:57 *** bitcoin-git has left #bitcoin-core-dev
256 2019-02-22T18:05:59 *** Murch has quit IRC
257 2019-02-22T18:06:15 *** pinheadmz has quit IRC
258 2019-02-22T18:07:18 *** Murch has joined #bitcoin-core-dev
259 2019-02-22T18:07:36 *** pinheadmz has joined #bitcoin-core-dev
260 2019-02-22T18:08:20 *** atroxes has joined #bitcoin-core-dev
261 2019-02-22T18:09:00 *** vexbuy has joined #bitcoin-core-dev
262 2019-02-22T18:09:32 *** dqx has quit IRC
263 2019-02-22T18:21:17 *** dqx has joined #bitcoin-core-dev
264 2019-02-22T18:26:22 *** dqx has quit IRC
265 2019-02-22T18:27:08 *** dqx has joined #bitcoin-core-dev
266 2019-02-22T18:31:42 *** dqx has quit IRC
267 2019-02-22T18:32:28 *** dqx has joined #bitcoin-core-dev
268 2019-02-22T18:37:44 *** hebasto has joined #bitcoin-core-dev
269 2019-02-22T18:42:56 *** promag_ has joined #bitcoin-core-dev
270 2019-02-22T18:43:53 *** yoctopede has quit IRC
271 2019-02-22T18:52:21 *** vexbuy has quit IRC
272 2019-02-22T18:52:37 *** vexbuy has joined #bitcoin-core-dev
273 2019-02-22T18:53:31 *** DeanGuss has quit IRC
274 2019-02-22T18:54:04 *** Murch has quit IRC
275 2019-02-22T19:03:03 *** Chris_Stewart_5 has joined #bitcoin-core-dev
276 2019-02-22T19:04:33 *** promag_ has quit IRC
277 2019-02-22T19:08:27 *** promag_ has joined #bitcoin-core-dev
278 2019-02-22T19:12:56 *** promag_ has quit IRC
279 2019-02-22T19:15:42 *** pinheadmz has quit IRC
280 2019-02-22T19:16:12 *** pinheadmz has joined #bitcoin-core-dev
281 2019-02-22T19:21:16 *** jimpo_ has quit IRC
282 2019-02-22T19:21:51 *** vexbuy has quit IRC
283 2019-02-22T19:23:18 *** vexbuy has joined #bitcoin-core-dev
284 2019-02-22T19:25:29 *** jimpo has joined #bitcoin-core-dev
285 2019-02-22T19:29:32 *** Thong_ has joined #bitcoin-core-dev
286 2019-02-22T19:31:19 *** timothy has quit IRC
287 2019-02-22T19:34:54 *** hebasto has quit IRC
288 2019-02-22T19:38:21 *** Thong_ has quit IRC
289 2019-02-22T19:43:19 *** Murch has joined #bitcoin-core-dev
290 2019-02-22T19:44:10 *** bitcoin-git has joined #bitcoin-core-dev
291 2019-02-22T19:44:11 <bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/169dced9a42b...f3f9c1de19e6
292 2019-02-22T19:44:11 <bitcoin-git> bitcoin/master 39e20fc Daniel Kraft: Add missing #include.
293 2019-02-22T19:44:12 <bitcoin-git> bitcoin/master f3f9c1d MarcoFalke: Merge #15435: rpc: Add missing #include
294 2019-02-22T19:44:18 *** bitcoin-git has left #bitcoin-core-dev
295 2019-02-22T19:44:51 *** bitcoin-git has joined #bitcoin-core-dev
296 2019-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
297 2019-02-22T19:44:56 *** bitcoin-git has left #bitcoin-core-dev
298 2019-02-22T20:02:28 *** Guyver2 has quit IRC
299 2019-02-22T20:08:23 *** jb55 has quit IRC
300 2019-02-22T20:33:51 *** vexbuy has quit IRC
301 2019-02-22T20:35:31 *** jb55 has joined #bitcoin-core-dev
302 2019-02-22T20:35:44 *** siom_ has joined #bitcoin-core-dev
303 2019-02-22T20:37:08 *** hex17or has quit IRC
304 2019-02-22T20:38:03 *** siom has quit IRC
305 2019-02-22T20:42:43 *** Guyver2 has joined #bitcoin-core-dev
306 2019-02-22T21:16:28 *** Chris_Stewart_5 has quit IRC
307 2019-02-22T21:19:03 *** fabianfabian has joined #bitcoin-core-dev
308 2019-02-22T21:20:09 *** mmgen has quit IRC
309 2019-02-22T21:22:31 *** Guyver2 has quit IRC
310 2019-02-22T21:25:00 *** DeanGuss has joined #bitcoin-core-dev
311 2019-02-22T21:31:50 *** siom_ has quit IRC
312 2019-02-22T21:55:07 *** dviola has joined #bitcoin-core-dev
313 2019-02-22T21:58:22 *** ddustin has joined #bitcoin-core-dev
314 2019-02-22T21:58:55 *** ddustin has quit IRC
315 2019-02-22T21:59:45 *** ddustin has joined #bitcoin-core-dev
316 2019-02-22T22:01:12 *** ddustin has joined #bitcoin-core-dev
317 2019-02-22T22:01:20 *** booyah has quit IRC
318 2019-02-22T22:01:41 *** ddustin has quit IRC
319 2019-02-22T22:02:16 *** ddustin has joined #bitcoin-core-dev
320 2019-02-22T22:02:18 *** booyah has joined #bitcoin-core-dev
321 2019-02-22T22:03:54 *** DougieBot5000_ has joined #bitcoin-core-dev
322 2019-02-22T22:04:18 *** DougieBot5000 is now known as Guest83538
323 2019-02-22T22:04:19 *** DougieBot5000_ is now known as DougieBot5000
324 2019-02-22T22:19:22 *** spaced0ut has quit IRC
325 2019-02-22T22:34:07 *** pinheadmz has quit IRC
326 2019-02-22T22:37:19 *** Murch has quit IRC
327 2019-02-22T22:37:42 *** pinheadmz has joined #bitcoin-core-dev
328 2019-02-22T22:38:01 *** Murch has joined #bitcoin-core-dev
329 2019-02-22T22:38:59 *** Murch has quit IRC
330 2019-02-22T22:41:55 *** Karyon has joined #bitcoin-core-dev
331 2019-02-22T22:51:19 *** Murch has joined #bitcoin-core-dev
332 2019-02-22T22:58:25 *** irc_viewer_test has joined #bitcoin-core-dev
333 2019-02-22T22:58:54 *** spinza has quit IRC
334 2019-02-22T23:07:41 *** spinza has joined #bitcoin-core-dev
335 2019-02-22T23:15:40 *** OneFive has joined #bitcoin-core-dev
336 2019-02-22T23:22:30 *** irc_viewer_test has quit IRC
337 2019-02-22T23:34:40 *** fabianfabian has quit IRC
338 2019-02-22T23:54:31 *** millerti has quit IRC