1 2016-02-10T00:04:25 *** johnsoft has joined #bitcoin-dev
2 2016-02-10T00:04:54 *** johnsoft has quit IRC
3 2016-02-10T00:05:17 *** rdymac has quit IRC
4 2016-02-10T00:05:41 *** adnn has joined #bitcoin-dev
5 2016-02-10T00:09:56 *** robink has quit IRC
6 2016-02-10T00:10:48 *** WKNiGHT has quit IRC
7 2016-02-10T00:11:01 *** laurentmt has joined #bitcoin-dev
8 2016-02-10T00:11:12 *** dansmith_btc has quit IRC
9 2016-02-10T00:17:08 *** theorbtwo has quit IRC
10 2016-02-10T00:18:51 *** t7 has quit IRC
11 2016-02-10T00:23:17 *** bityogi has quit IRC
12 2016-02-10T00:23:23 *** ceejep has quit IRC
13 2016-02-10T00:26:19 *** tawar has joined #bitcoin-dev
14 2016-02-10T00:26:29 *** wallet42 has quit IRC
15 2016-02-10T00:27:12 *** wallet42 has joined #bitcoin-dev
16 2016-02-10T00:30:24 *** wallet421 has joined #bitcoin-dev
17 2016-02-10T00:30:24 *** wallet42 is now known as Guest96349
18 2016-02-10T00:30:24 *** wallet421 is now known as wallet42
19 2016-02-10T00:34:24 *** grandmaster has joined #bitcoin-dev
20 2016-02-10T00:42:13 *** ceejep has joined #bitcoin-dev
21 2016-02-10T00:42:58 *** theorbtwo has joined #bitcoin-dev
22 2016-02-10T00:44:24 *** Dizzle has quit IRC
23 2016-02-10T00:48:10 *** theorbtwo has quit IRC
24 2016-02-10T00:50:36 *** laurentmt has quit IRC
25 2016-02-10T00:55:46 *** zooko has quit IRC
26 2016-02-10T01:01:54 *** concernedBTChold has quit IRC
27 2016-02-10T01:02:40 *** roconnor has joined #bitcoin-dev
28 2016-02-10T01:09:15 *** brson has quit IRC
29 2016-02-10T01:15:42 *** brson has joined #bitcoin-dev
30 2016-02-10T01:16:56 *** brg444 has quit IRC
31 2016-02-10T01:17:55 *** job_ has joined #bitcoin-dev
32 2016-02-10T01:19:59 *** rusty has quit IRC
33 2016-02-10T01:20:51 *** DougieBot5000 has joined #bitcoin-dev
34 2016-02-10T01:22:36 *** brson has quit IRC
35 2016-02-10T01:23:10 *** AaronvanW has quit IRC
36 2016-02-10T01:23:26 *** wallet421 has joined #bitcoin-dev
37 2016-02-10T01:23:26 *** wallet42 has quit IRC
38 2016-02-10T01:23:26 *** wallet421 is now known as wallet42
39 2016-02-10T01:23:26 *** wallet42 has joined #bitcoin-dev
40 2016-02-10T01:31:06 *** ThomasV has quit IRC
41 2016-02-10T01:38:08 *** job_ has quit IRC
42 2016-02-10T01:38:55 *** adnn has quit IRC
43 2016-02-10T01:43:00 *** _flow_ has quit IRC
44 2016-02-10T01:43:29 <Chris_Stewart_5> How do you tell the difference between numbers in Bitcoin script vs things like hashes
45 2016-02-10T01:43:47 <Chris_Stewart_5> is there a cap on how big numbers can be, i.e. 64 bits?
46 2016-02-10T01:44:06 *** robink_ has joined #bitcoin-dev
47 2016-02-10T01:44:38 <gmaxwell> data on the stack is just data. it's type is deteremined by the operations that act on it.
48 2016-02-10T01:44:49 <gmaxwell> there is a maximum size for a push of 520 bytes.
49 2016-02-10T01:45:04 <gmaxwell> the opcodes that act on numbers won't work on numbers beyond 4 bytes.
50 2016-02-10T01:48:09 <Chris_Stewart_5> So trying to type 'data' on the stack is unwise then?
51 2016-02-10T01:48:25 <Chris_Stewart_5> I.e. typing something as an Integer vs a script constant
52 2016-02-10T01:49:11 <gmaxwell> It's not that it's "unwise" but .. just unrelated to how the system actually works. :)
53 2016-02-10T01:51:20 *** ceejep has quit IRC
54 2016-02-10T01:52:42 <Chris_Stewart_5> gmaxwell: Gotcha. It is sort of confusing for test cases like this in core's script test suite ["0x09 0x00000000 0x00000000 0x10", "", "P2SH,STRICTENC", "equals zero when cast to Int64"]
55 2016-02-10T01:52:56 *** robink_ is now known as robink
56 2016-02-10T01:54:32 <Chris_Stewart_5> the best way to parse something like that is grouping all of those bytes into a single stream or breaking them out into four individual items
57 2016-02-10T02:05:26 *** CodesInChaos has quit IRC
58 2016-02-10T02:05:45 *** agricocb has joined #bitcoin-dev
59 2016-02-10T02:06:14 *** brson has joined #bitcoin-dev
60 2016-02-10T02:06:20 *** kgk has quit IRC
61 2016-02-10T02:07:43 *** bitri has joined #bitcoin-dev
62 2016-02-10T02:08:42 *** blueness has quit IRC
63 2016-02-10T02:10:58 <Chris_Stewart_5> also, is there a dedicated config files style for bitcoin/sidechains?
64 2016-02-10T02:12:05 *** btcdrak has joined #bitcoin-dev
65 2016-02-10T02:13:06 *** A|an has joined #bitcoin-dev
66 2016-02-10T02:13:22 *** wallet42 has quit IRC
67 2016-02-10T02:14:02 *** A|an has left #bitcoin-dev
68 2016-02-10T02:14:54 *** Ahmed90 has quit IRC
69 2016-02-10T02:18:19 *** rusty has joined #bitcoin-dev
70 2016-02-10T02:21:58 *** gruez has joined #bitcoin-dev
71 2016-02-10T02:22:49 *** brson has quit IRC
72 2016-02-10T02:27:01 *** belcher has quit IRC
73 2016-02-10T02:27:10 *** supasonic has quit IRC
74 2016-02-10T02:27:41 *** supasonic has joined #bitcoin-dev
75 2016-02-10T02:32:10 *** wasi has quit IRC
76 2016-02-10T02:38:47 *** blueness has joined #bitcoin-dev
77 2016-02-10T02:42:05 *** gdm85 has quit IRC
78 2016-02-10T02:46:01 *** bitri has quit IRC
79 2016-02-10T02:46:12 *** Starduster has quit IRC
80 2016-02-10T02:46:20 *** hbee has joined #bitcoin-dev
81 2016-02-10T02:51:00 *** conner_ has joined #bitcoin-dev
82 2016-02-10T03:03:00 *** kgk has joined #bitcoin-dev
83 2016-02-10T03:07:34 *** kgk has quit IRC
84 2016-02-10T03:07:50 *** xiangfu has joined #bitcoin-dev
85 2016-02-10T03:08:25 *** Ylbam has quit IRC
86 2016-02-10T03:10:40 *** Chris_Stewart_5 has quit IRC
87 2016-02-10T03:12:10 *** c-cex-yuriy has quit IRC
88 2016-02-10T03:19:34 *** tawar_ has joined #bitcoin-dev
89 2016-02-10T03:21:42 *** tawar has quit IRC
90 2016-02-10T03:22:23 *** hsmiths has quit IRC
91 2016-02-10T03:23:19 *** Subo1977 has joined #bitcoin-dev
92 2016-02-10T03:26:36 *** Delta_ has quit IRC
93 2016-02-10T03:29:14 *** hsmiths has joined #bitcoin-dev
94 2016-02-10T03:33:46 *** otoburb has quit IRC
95 2016-02-10T03:34:56 *** xiangfu has quit IRC
96 2016-02-10T03:34:57 *** arowser has quit IRC
97 2016-02-10T03:35:47 *** xiangfu has joined #bitcoin-dev
98 2016-02-10T03:35:52 *** arowser has joined #bitcoin-dev
99 2016-02-10T03:37:05 *** otoburb has joined #bitcoin-dev
100 2016-02-10T03:41:35 *** tegila has joined #bitcoin-dev
101 2016-02-10T03:42:26 *** deadalnix has quit IRC
102 2016-02-10T03:43:44 *** justanot1eruser has joined #bitcoin-dev
103 2016-02-10T03:44:41 *** justanotheruser has quit IRC
104 2016-02-10T03:44:45 *** Giszmo has quit IRC
105 2016-02-10T03:45:47 *** frankenmint has joined #bitcoin-dev
106 2016-02-10T03:56:00 *** rolandnsharp has quit IRC
107 2016-02-10T03:56:11 *** rolandnsharp has joined #bitcoin-dev
108 2016-02-10T04:11:29 *** Newyorkadam has quit IRC
109 2016-02-10T04:14:34 *** ceejep has joined #bitcoin-dev
110 2016-02-10T04:19:06 *** xiangfu has quit IRC
111 2016-02-10T04:20:00 *** mrkent_ has quit IRC
112 2016-02-10T04:21:04 *** xiangfu has joined #bitcoin-dev
113 2016-02-10T04:22:24 *** arowser has quit IRC
114 2016-02-10T04:22:40 *** arowser has joined #bitcoin-dev
115 2016-02-10T04:28:06 *** jtimon has quit IRC
116 2016-02-10T04:32:20 *** TheSeven has quit IRC
117 2016-02-10T04:32:36 *** taw__ has joined #bitcoin-dev
118 2016-02-10T04:33:05 *** contrapumpkin has joined #bitcoin-dev
119 2016-02-10T04:33:39 *** TheSeven has joined #bitcoin-dev
120 2016-02-10T04:35:35 *** copumpkin has quit IRC
121 2016-02-10T04:35:36 *** tawar_ has quit IRC
122 2016-02-10T04:35:45 *** Newyorkadam has joined #bitcoin-dev
123 2016-02-10T04:38:13 *** deadalnix has joined #bitcoin-dev
124 2016-02-10T04:38:44 *** swappermall has joined #bitcoin-dev
125 2016-02-10T04:39:00 <cluelessperson> In seriousness, If you had a business interested in buying ~$1 Million in BTC. How would you go about it?
126 2016-02-10T04:39:46 *** xiangfu has quit IRC
127 2016-02-10T04:40:52 *** xiangfu has joined #bitcoin-dev
128 2016-02-10T04:43:23 *** justanot1eruser is now known as justanotheruser
129 2016-02-10T04:43:54 <Luke-Jr> cluelessperson: off-topic, take it to #bitcoin
130 2016-02-10T04:44:47 <cluelessperson> Luke-Jr, sorry, I thought I was in OTC :)
131 2016-02-10T04:45:05 <gruez> just wondering, when a new bitcoin version is released, why doesn't a dev announce it on bitcointalk?
132 2016-02-10T04:45:30 <gruez> the announcements there are usually delayed by around 12 hours
133 2016-02-10T04:46:46 *** kadoban has joined #bitcoin-dev
134 2016-02-10T04:46:50 *** taw__ is now known as tawar
135 2016-02-10T04:47:51 *** justanotheruser has quit IRC
136 2016-02-10T04:48:28 *** Newyorkadam has quit IRC
137 2016-02-10T04:50:43 *** Newyorkadam has joined #bitcoin-dev
138 2016-02-10T04:51:57 *** theorbtwo has joined #bitcoin-dev
139 2016-02-10T04:54:04 *** xiangfu has quit IRC
140 2016-02-10T04:54:59 <Luke-Jr> gruez: most(?) of us left bitcointalk years ago
141 2016-02-10T04:55:19 <Luke-Jr> due to lack of moderation; too much noise
142 2016-02-10T04:55:39 <gruez> :\
143 2016-02-10T04:56:21 *** IrishGringo has joined #bitcoin-dev
144 2016-02-10T04:56:21 *** sparetire has quit IRC
145 2016-02-10T04:58:07 <bsm1175321> bitcointalk is a cespool.
146 2016-02-10T04:58:31 *** justanotheruser has joined #bitcoin-dev
147 2016-02-10T04:59:08 <gmaxwell> gruez: I can pin things in the main forum, when I've posted announcements hostfat has created his own and pinned it rather than mine.
148 2016-02-10T05:01:55 *** IrishGringo has quit IRC
149 2016-02-10T05:02:36 *** kgk has joined #bitcoin-dev
150 2016-02-10T05:07:59 *** Newyorkadam has quit IRC
151 2016-02-10T05:08:02 *** kgk has quit IRC
152 2016-02-10T05:10:32 <gruez> <@gmaxwell> gruez: I can pin things in the main forum, when I've posted announcements hostfat has created his own and pinned it rather than mine.
153 2016-02-10T05:10:48 <gruez> you mean you can't pin things in the main forum?
154 2016-02-10T05:12:43 *** metalcamp has joined #bitcoin-dev
155 2016-02-10T05:14:16 *** blueness has quit IRC
156 2016-02-10T05:14:38 *** GuruMonk has joined #bitcoin-dev
157 2016-02-10T05:20:56 *** ryitpm has quit IRC
158 2016-02-10T05:24:29 *** ryitpm has joined #bitcoin-dev
159 2016-02-10T05:30:36 <rusty> kanzure, btcdrak: thoughts on https://lists.linuxfoundation.org/mailman/admindb/bitcoin-dev?sender=voisine%40gmail.com ?
160 2016-02-10T05:37:20 <rusty> kanzure, btcdrak: when we're rejecting for content (eg. misunderstandings), I might start wording it as a reply on bitcoin-dev-moderation, so others can read it too.
161 2016-02-10T05:40:14 *** deadalnix has quit IRC
162 2016-02-10T05:46:19 *** jujumax has joined #bitcoin-dev
163 2016-02-10T05:46:38 *** FistfulOfCoin is now known as Fistful_of_Coins
164 2016-02-10T06:00:23 *** p15x has joined #bitcoin-dev
165 2016-02-10T06:01:42 <kanzure> rusty: "obviously not reach that limit" haha... miners can't check the actula bandwidth of the network anyway.
166 2016-02-10T06:01:49 <kanzure> rusty: i think we just need to start rejecting obviously wrong broken stuff :(
167 2016-02-10T06:02:04 <rusty> kanzure: yes, but we also need to correct it publicly.
168 2016-02-10T06:02:29 <rusty> kanzure: also, by that logic miners wouldn't be mining 1MB blocks today.
169 2016-02-10T06:05:26 *** Belxjander has quit IRC
170 2016-02-10T06:07:32 *** Belxjander has joined #bitcoin-dev
171 2016-02-10T06:17:34 *** chris13243 has joined #bitcoin-dev
172 2016-02-10T06:19:05 *** deadalnix has joined #bitcoin-dev
173 2016-02-10T06:20:02 *** Belxjander has quit IRC
174 2016-02-10T06:22:02 *** ThomasV has joined #bitcoin-dev
175 2016-02-10T06:22:10 *** Madars has quit IRC
176 2016-02-10T06:22:28 *** OxADADA has quit IRC
177 2016-02-10T06:22:29 *** davec has quit IRC
178 2016-02-10T06:22:50 *** deadalnix has quit IRC
179 2016-02-10T06:23:25 *** deadalnix has joined #bitcoin-dev
180 2016-02-10T06:24:20 *** OxADADA has joined #bitcoin-dev
181 2016-02-10T06:24:43 <rusty> kanzure: done. https://lists.ozlabs.org/pipermail/bitcoin-dev-moderation/2016-February/000073.html
182 2016-02-10T06:25:33 *** deadalnix has quit IRC
183 2016-02-10T06:25:48 *** Belxjander has joined #bitcoin-dev
184 2016-02-10T06:26:31 *** priidu has joined #bitcoin-dev
185 2016-02-10T06:29:30 *** p15x has quit IRC
186 2016-02-10T06:29:32 *** davec has joined #bitcoin-dev
187 2016-02-10T06:29:34 *** blueness has joined #bitcoin-dev
188 2016-02-10T06:31:00 *** kadoban has quit IRC
189 2016-02-10T06:33:40 *** chris13243 has quit IRC
190 2016-02-10T06:35:40 *** Madars has joined #bitcoin-dev
191 2016-02-10T06:38:26 *** [2]OpenProv is now known as 7YUAAVOBX
192 2016-02-10T06:44:46 *** nodejunkie has joined #bitcoin-dev
193 2016-02-10T06:46:06 *** MoALTz has joined #bitcoin-dev
194 2016-02-10T06:47:18 *** rusty has quit IRC
195 2016-02-10T06:49:04 *** chjj has quit IRC
196 2016-02-10T06:52:11 *** p15x has joined #bitcoin-dev
197 2016-02-10T07:01:56 *** chjj has joined #bitcoin-dev
198 2016-02-10T07:05:23 *** kgk has joined #bitcoin-dev
199 2016-02-10T07:06:23 *** metalcamp has quit IRC
200 2016-02-10T07:08:28 *** adnn has joined #bitcoin-dev
201 2016-02-10T07:09:07 *** tachys has joined #bitcoin-dev
202 2016-02-10T07:09:09 *** neozaru has joined #bitcoin-dev
203 2016-02-10T07:11:29 *** Ylbam has joined #bitcoin-dev
204 2016-02-10T07:11:46 *** kgk has quit IRC
205 2016-02-10T07:12:14 *** roidster has quit IRC
206 2016-02-10T07:16:23 *** Belxjander has quit IRC
207 2016-02-10T07:19:50 *** Belxjander has joined #bitcoin-dev
208 2016-02-10T07:23:51 *** Palsson has joined #bitcoin-dev
209 2016-02-10T07:26:10 *** paveljanik has quit IRC
210 2016-02-10T07:27:22 *** ThomasV has quit IRC
211 2016-02-10T07:28:12 *** jujumax has quit IRC
212 2016-02-10T07:29:29 *** BashCo has quit IRC
213 2016-02-10T07:30:20 *** Belxjander has quit IRC
214 2016-02-10T07:32:15 *** Belxjander has joined #bitcoin-dev
215 2016-02-10T07:42:51 *** Sushii has quit IRC
216 2016-02-10T07:46:21 *** Sushii has joined #bitcoin-dev
217 2016-02-10T07:47:01 *** pdev has quit IRC
218 2016-02-10T07:49:30 *** digitalmagus has joined #bitcoin-dev
219 2016-02-10T07:51:46 *** GuruMonk has quit IRC
220 2016-02-10T07:52:22 *** ongolaBoy has joined #bitcoin-dev
221 2016-02-10T07:53:04 *** ThomasV has joined #bitcoin-dev
222 2016-02-10T07:54:51 *** bit2017 has joined #bitcoin-dev
223 2016-02-10T07:55:16 *** pdev has joined #bitcoin-dev
224 2016-02-10T07:56:56 *** Belxjander has quit IRC
225 2016-02-10T08:00:16 *** GAit has quit IRC
226 2016-02-10T08:00:29 *** Belxjander has joined #bitcoin-dev
227 2016-02-10T08:01:40 *** DougieBot5000 has quit IRC
228 2016-02-10T08:05:05 *** gdm85 has joined #bitcoin-dev
229 2016-02-10T08:05:57 *** easye has joined #bitcoin-dev
230 2016-02-10T08:06:36 *** BashCo has joined #bitcoin-dev
231 2016-02-10T08:07:20 *** neozaru has quit IRC
232 2016-02-10T08:07:59 *** kgk has joined #bitcoin-dev
233 2016-02-10T08:12:26 *** kgk has quit IRC
234 2016-02-10T08:16:33 *** Palsson_ has joined #bitcoin-dev
235 2016-02-10T08:16:42 *** DatBeeDoe has joined #bitcoin-dev
236 2016-02-10T08:17:07 *** DatBeeDoe has quit IRC
237 2016-02-10T08:18:16 *** Belxjander has quit IRC
238 2016-02-10T08:19:11 *** Palsson has quit IRC
239 2016-02-10T08:19:46 *** Belxjander has joined #bitcoin-dev
240 2016-02-10T08:20:34 *** tachys has quit IRC
241 2016-02-10T08:26:20 *** 7YUAAVOBX has quit IRC
242 2016-02-10T08:29:22 *** n0n0__ has joined #bitcoin-dev
243 2016-02-10T08:29:28 *** molz has quit IRC
244 2016-02-10T08:30:18 *** grandmaster is now known as dansmith_btc
245 2016-02-10T08:30:56 *** Grouver has joined #bitcoin-dev
246 2016-02-10T08:32:38 <dansmith_btc> Just a meta suggestion to the webmaster of bitcoinstats.com where the logs of this chan are stored: Please index your website with Google. I tried to search the archive via google with a few keywords that Im sure were present in a convo and came up empty. So, deffinitely the logs are not getting indexed properly.
247 2016-02-10T08:36:42 *** _flow_ has joined #bitcoin-dev
248 2016-02-10T08:40:05 *** damethos has joined #bitcoin-dev
249 2016-02-10T08:42:19 *** moli has joined #bitcoin-dev
250 2016-02-10T08:43:32 *** markus-k has joined #bitcoin-dev
251 2016-02-10T08:46:18 *** adnn has quit IRC
252 2016-02-10T08:47:32 *** Belxjander has quit IRC
253 2016-02-10T08:47:33 *** adnn has joined #bitcoin-dev
254 2016-02-10T08:47:44 *** ThomasV has quit IRC
255 2016-02-10T08:49:09 *** Emcy_ has quit IRC
256 2016-02-10T08:50:57 *** markus-k has quit IRC
257 2016-02-10T08:52:17 *** Belxjander has joined #bitcoin-dev
258 2016-02-10T09:00:05 *** paveljanik has joined #bitcoin-dev
259 2016-02-10T09:00:40 *** paveljanik has quit IRC
260 2016-02-10T09:06:31 *** nodejunkie has quit IRC
261 2016-02-10T09:09:50 *** LeMiner has quit IRC
262 2016-02-10T09:13:06 *** ThomasV has joined #bitcoin-dev
263 2016-02-10T09:14:09 *** AtashiCon has quit IRC
264 2016-02-10T09:15:20 *** AtashiCon has joined #bitcoin-dev
265 2016-02-10T09:16:01 *** markus-k has joined #bitcoin-dev
266 2016-02-10T09:17:04 <dansmith_btc> Running v0.12-rc4, seems like it doesn't respond to SIGTERM, whenever I do Ctrl+c or kill PID, it keeps on syncing acc.to debug.log, FWIW Im running with args -datadir=<path> -prune=550 -checkblocks=1 -keypool=0
267 2016-02-10T09:20:27 <phantomcircuit> dansmith_btc, sigterm sets a shutdown flag but wont break into things like ActivateBestChain
268 2016-02-10T09:20:37 <phantomcircuit> it will exit but not immediately
269 2016-02-10T09:22:58 <dansmith_btc> that explains it, thanks
270 2016-02-10T09:24:19 *** weems has quit IRC
271 2016-02-10T09:26:47 *** AaronvanW has joined #bitcoin-dev
272 2016-02-10T09:31:53 *** rusty has joined #bitcoin-dev
273 2016-02-10T09:31:57 *** rusty has quit IRC
274 2016-02-10T09:31:58 *** rusty has joined #bitcoin-dev
275 2016-02-10T09:38:08 <dansmith_btc> When gettxoutsetinfo makes a utxo hash, does it take into account that utxo is fully loaded in RAM or does it always hash from the disk?
276 2016-02-10T09:38:57 *** rusty has left #bitcoin-dev
277 2016-02-10T09:39:46 *** ThomasV has quit IRC
278 2016-02-10T09:41:43 *** markus-k has quit IRC
279 2016-02-10T09:44:12 *** ongolaBoy has quit IRC
280 2016-02-10T09:45:43 <phantomcircuit> dansmith_btc, does it matter?
281 2016-02-10T09:46:58 *** Belxjander has quit IRC
282 2016-02-10T09:47:48 *** Belxjander has joined #bitcoin-dev
283 2016-02-10T09:48:26 <dansmith_btc> speed-wise it matters whether to hash from disk or from RAM.
284 2016-02-10T09:50:44 <dansmith_btc> ah ok, maybe the OS would already know the mapping and take data from RAM
285 2016-02-10T09:53:22 *** adnn has quit IRC
286 2016-02-10T10:00:59 *** one_zero has quit IRC
287 2016-02-10T10:04:26 *** roconnor has quit IRC
288 2016-02-10T10:08:35 *** supasonic has quit IRC
289 2016-02-10T10:10:21 *** kgk has joined #bitcoin-dev
290 2016-02-10T10:12:53 *** aschildbach has joined #bitcoin-dev
291 2016-02-10T10:15:00 *** kgk has quit IRC
292 2016-02-10T10:17:56 *** Starduster has joined #bitcoin-dev
293 2016-02-10T10:24:36 *** dkog has quit IRC
294 2016-02-10T10:25:59 *** adnn has joined #bitcoin-dev
295 2016-02-10T10:26:28 *** markus-k has joined #bitcoin-dev
296 2016-02-10T10:28:59 *** ThomasV has joined #bitcoin-dev
297 2016-02-10T10:31:23 *** trixis has joined #bitcoin-dev
298 2016-02-10T10:32:02 *** trixis is now known as Guest77250
299 2016-02-10T10:32:14 *** markus-k has quit IRC
300 2016-02-10T10:32:25 *** tachys has joined #bitcoin-dev
301 2016-02-10T10:32:26 *** dkog has joined #bitcoin-dev
302 2016-02-10T10:32:40 *** markus-k has joined #bitcoin-dev
303 2016-02-10T10:33:26 *** Guest77250 has quit IRC
304 2016-02-10T10:33:46 *** twixisowned has quit IRC
305 2016-02-10T10:34:18 *** c-cex-yuriy has joined #bitcoin-dev
306 2016-02-10T10:35:04 *** IAmNotDorian has joined #bitcoin-dev
307 2016-02-10T10:35:04 *** IAmNotDorian has joined #bitcoin-dev
308 2016-02-10T10:36:46 *** tachys has quit IRC
309 2016-02-10T10:40:55 *** chjj has quit IRC
310 2016-02-10T10:45:11 *** Guyver2 has joined #bitcoin-dev
311 2016-02-10T10:48:15 *** melvster has quit IRC
312 2016-02-10T10:53:37 <sturles> Where would be the most proper place to suggest increasing the default value of -blockmaxsize from 750000 to 1000000 bytes? List, here or just a pull request?
313 2016-02-10T10:56:30 *** laurentmt has joined #bitcoin-dev
314 2016-02-10T10:57:53 *** drnet has joined #bitcoin-dev
315 2016-02-10T10:58:23 <Luke-Jr> sturles: nowhere.
316 2016-02-10T10:58:53 <sturles> Hmm. Increasing -blockminsize then?
317 2016-02-10T10:59:02 <Luke-Jr> sturles: nowhere.
318 2016-02-10T10:59:41 <Luke-Jr> convince miners to set them if you want (but anything other than down is bad advice)
319 2016-02-10T11:00:16 <sturles> The default for -blockminsize is 0. Can it be negative?
320 2016-02-10T11:02:02 *** melvster has joined #bitcoin-dev
321 2016-02-10T11:03:46 *** drnet has quit IRC
322 2016-02-10T11:08:47 *** rdymac has joined #bitcoin-dev
323 2016-02-10T11:09:04 *** trixisowned has joined #bitcoin-dev
324 2016-02-10T11:14:42 *** chmod755 has joined #bitcoin-dev
325 2016-02-10T11:14:43 *** chmod755 has joined #bitcoin-dev
326 2016-02-10T11:28:51 *** G1lius has joined #bitcoin-dev
327 2016-02-10T11:32:47 *** adnn has quit IRC
328 2016-02-10T11:33:50 *** laurentmt has quit IRC
329 2016-02-10T11:41:24 *** clopez has quit IRC
330 2016-02-10T11:44:37 *** clopez has joined #bitcoin-dev
331 2016-02-10T11:50:36 *** arthus has joined #bitcoin-dev
332 2016-02-10T11:54:19 *** Gi0 has joined #bitcoin-dev
333 2016-02-10T12:00:21 *** ribasushi has quit IRC
334 2016-02-10T12:09:52 *** ribasushi has joined #bitcoin-dev
335 2016-02-10T12:11:52 *** chmod755 has quit IRC
336 2016-02-10T12:12:49 *** kgk has joined #bitcoin-dev
337 2016-02-10T12:16:26 *** ThomasV has quit IRC
338 2016-02-10T12:17:35 *** kgk has quit IRC
339 2016-02-10T12:25:46 *** cryptapus_ has joined #bitcoin-dev
340 2016-02-10T12:27:06 *** gevs has joined #bitcoin-dev
341 2016-02-10T12:48:54 *** ThomasV has joined #bitcoin-dev
342 2016-02-10T12:49:32 *** den2204 has joined #bitcoin-dev
343 2016-02-10T12:53:21 *** paveljanik has joined #bitcoin-dev
344 2016-02-10T13:03:11 *** agricocb has quit IRC
345 2016-02-10T13:04:39 *** roidster has joined #bitcoin-dev
346 2016-02-10T13:04:52 *** roidster is now known as Guest65785
347 2016-02-10T13:05:59 *** Guest65785 is now known as roidster
348 2016-02-10T13:07:13 *** jtimon has joined #bitcoin-dev
349 2016-02-10T13:10:49 *** den2204 has quit IRC
350 2016-02-10T13:11:04 *** den2204_ has joined #bitcoin-dev
351 2016-02-10T13:14:13 *** markus-k has quit IRC
352 2016-02-10T13:14:39 *** kgk has joined #bitcoin-dev
353 2016-02-10T13:15:04 *** markus-k has joined #bitcoin-dev
354 2016-02-10T13:19:15 *** kgk has quit IRC
355 2016-02-10T13:21:11 *** markus-k has quit IRC
356 2016-02-10T13:22:31 <waxwing> so if blockminsize is -1MB, remove the last block? :)
357 2016-02-10T13:22:44 *** metalcamp has joined #bitcoin-dev
358 2016-02-10T13:23:32 <waxwing> we could get the much requested feature of transaction reversibility. the govt. would be pleased :)
359 2016-02-10T13:26:51 <phantomcircuit> sturles, the default should actually be more like 250kB
360 2016-02-10T13:27:04 <phantomcircuit> that it's 750kB is a quirk of history
361 2016-02-10T13:28:17 <buZz> waxwing: bitundo would not like it if you made it a native functionality
362 2016-02-10T13:28:32 *** atgreen has quit IRC
363 2016-02-10T13:31:41 *** stevenroose has quit IRC
364 2016-02-10T13:31:41 *** stevenroose|BNC is now known as stevenroose
365 2016-02-10T13:32:04 *** stevenroose_ has joined #bitcoin-dev
366 2016-02-10T13:32:24 *** stevenroose_ has quit IRC
367 2016-02-10T13:33:47 *** puff1sh has joined #bitcoin-dev
368 2016-02-10T13:35:19 *** stevenroose_ has joined #bitcoin-dev
369 2016-02-10T13:37:20 *** laurentmt has joined #bitcoin-dev
370 2016-02-10T13:40:18 *** metalcamp_ has joined #bitcoin-dev
371 2016-02-10T13:41:06 *** lysobit has quit IRC
372 2016-02-10T13:41:21 *** wasi has joined #bitcoin-dev
373 2016-02-10T13:43:46 *** metalcamp has quit IRC
374 2016-02-10T13:45:15 *** paveljanik has quit IRC
375 2016-02-10T13:47:14 *** LeMiner has joined #bitcoin-dev
376 2016-02-10T13:47:56 *** lysobit has joined #bitcoin-dev
377 2016-02-10T13:52:36 *** theorbtwo has quit IRC
378 2016-02-10T13:56:57 *** ThomasV has quit IRC
379 2016-02-10T13:58:58 *** Giszmo has joined #bitcoin-dev
380 2016-02-10T13:59:20 *** agricocb has joined #bitcoin-dev
381 2016-02-10T14:08:46 *** M-mistake has joined #bitcoin-dev
382 2016-02-10T14:11:14 *** tantalum has quit IRC
383 2016-02-10T14:11:40 *** cryptapus has quit IRC
384 2016-02-10T14:11:46 *** p15x has quit IRC
385 2016-02-10T14:12:45 *** puff1sh has quit IRC
386 2016-02-10T14:13:50 *** tantalum has joined #bitcoin-dev
387 2016-02-10T14:14:51 *** tachys has joined #bitcoin-dev
388 2016-02-10T14:15:58 *** kgk has joined #bitcoin-dev
389 2016-02-10T14:19:56 *** tachys has quit IRC
390 2016-02-10T14:20:06 *** kgk has quit IRC
391 2016-02-10T14:23:48 *** Chris_Stewart_5 has joined #bitcoin-dev
392 2016-02-10T14:24:00 *** gruez has left #bitcoin-dev
393 2016-02-10T14:24:23 *** airbreather__ has joined #bitcoin-dev
394 2016-02-10T14:25:39 *** theorbtwo has joined #bitcoin-dev
395 2016-02-10T14:27:24 *** airbreather_ has quit IRC
396 2016-02-10T14:28:24 *** atgreen has joined #bitcoin-dev
397 2016-02-10T14:28:58 *** Chris_Stewart_5 has quit IRC
398 2016-02-10T14:30:32 *** M-mistake has quit IRC
399 2016-02-10T14:33:17 *** frankenmint has quit IRC
400 2016-02-10T14:33:48 *** GAit has joined #bitcoin-dev
401 2016-02-10T14:34:41 *** Sushii has quit IRC
402 2016-02-10T14:34:41 *** cjcj has quit IRC
403 2016-02-10T14:38:56 *** jaclupi has quit IRC
404 2016-02-10T14:43:32 *** aschildbach has quit IRC
405 2016-02-10T14:44:59 *** Beef has quit IRC
406 2016-02-10T14:45:40 *** xabbix has quit IRC
407 2016-02-10T14:46:03 *** xabbix has joined #bitcoin-dev
408 2016-02-10T14:48:25 *** Beef has joined #bitcoin-dev
409 2016-02-10T14:50:21 *** ThomasV has joined #bitcoin-dev
410 2016-02-10T14:50:29 *** metalcamp_ has quit IRC
411 2016-02-10T14:56:32 *** AaronvanW has quit IRC
412 2016-02-10T14:56:52 *** hexhaxtron_ has joined #bitcoin-dev
413 2016-02-10T14:59:57 *** jaclupi has joined #bitcoin-dev
414 2016-02-10T15:00:22 *** hexhaxtron_ has left #bitcoin-dev
415 2016-02-10T15:00:27 *** cjcj has joined #bitcoin-dev
416 2016-02-10T15:01:14 *** tegila_ has joined #bitcoin-dev
417 2016-02-10T15:03:34 *** sparetire has joined #bitcoin-dev
418 2016-02-10T15:04:04 *** Chris_Stewart_5 has joined #bitcoin-dev
419 2016-02-10T15:04:15 *** tegila has quit IRC
420 2016-02-10T15:06:47 *** laurentmt has quit IRC
421 2016-02-10T15:10:30 *** zooko has joined #bitcoin-dev
422 2016-02-10T15:11:05 *** laurentmt has joined #bitcoin-dev
423 2016-02-10T15:13:28 *** markus-k has joined #bitcoin-dev
424 2016-02-10T15:14:18 *** laurentmt has quit IRC
425 2016-02-10T15:14:24 *** bityogi has joined #bitcoin-dev
426 2016-02-10T15:23:47 *** laurentmt has joined #bitcoin-dev
427 2016-02-10T15:34:10 *** frankenmint has joined #bitcoin-dev
428 2016-02-10T15:38:11 *** CheckDavid has joined #bitcoin-dev
429 2016-02-10T15:39:16 *** frankenmint has quit IRC
430 2016-02-10T15:40:20 *** conner_ has quit IRC
431 2016-02-10T15:41:54 *** molz has joined #bitcoin-dev
432 2016-02-10T15:42:29 *** moli has quit IRC
433 2016-02-10T15:43:10 *** damethos has quit IRC
434 2016-02-10T15:55:22 *** Chris_Stewart_5 has quit IRC
435 2016-02-10T15:57:04 *** jujumax has joined #bitcoin-dev
436 2016-02-10T15:58:42 *** IAmNotDorian has quit IRC
437 2016-02-10T16:00:50 *** tawar has quit IRC
438 2016-02-10T16:02:36 *** conner_ has joined #bitcoin-dev
439 2016-02-10T16:02:55 *** r0kc4t has quit IRC
440 2016-02-10T16:03:07 *** BashCo has quit IRC
441 2016-02-10T16:04:10 *** tawar has joined #bitcoin-dev
442 2016-02-10T16:06:06 *** tawar has quit IRC
443 2016-02-10T16:06:30 *** melvster has quit IRC
444 2016-02-10T16:08:17 *** G1lius has quit IRC
445 2016-02-10T16:09:37 *** Chris_Stewart_5 has joined #bitcoin-dev
446 2016-02-10T16:11:55 *** AaronvanW has joined #bitcoin-dev
447 2016-02-10T16:11:56 *** Starduster has quit IRC
448 2016-02-10T16:16:06 *** weems has joined #bitcoin-dev
449 2016-02-10T16:16:27 *** metalcamp has joined #bitcoin-dev
450 2016-02-10T16:16:57 *** metalcamp has joined #bitcoin-dev
451 2016-02-10T16:17:26 *** arthus has quit IRC
452 2016-02-10T16:17:46 *** kgk has joined #bitcoin-dev
453 2016-02-10T16:19:19 *** aschildbach has joined #bitcoin-dev
454 2016-02-10T16:19:33 *** melvster has joined #bitcoin-dev
455 2016-02-10T16:21:11 *** supasonic has joined #bitcoin-dev
456 2016-02-10T16:21:45 *** n0n0__ has quit IRC
457 2016-02-10T16:22:15 <jeremias_> https://notehub.org/8k84i any comments on this
458 2016-02-10T16:22:30 <jeremias_> comments also welcome on reddit: https://www.reddit.com/r/Bitcoin/comments/452h4j/idea_how_to_save_blockchain_space_for_micro/
459 2016-02-10T16:22:58 *** kgk has quit IRC
460 2016-02-10T16:24:06 *** metalcamp has quit IRC
461 2016-02-10T16:24:09 *** Ahmed90 has joined #bitcoin-dev
462 2016-02-10T16:24:27 *** BashCo has joined #bitcoin-dev
463 2016-02-10T16:24:41 *** metalcamp_ has joined #bitcoin-dev
464 2016-02-10T16:25:33 *** DougieBot5000 has joined #bitcoin-dev
465 2016-02-10T16:27:37 *** tachys has joined #bitcoin-dev
466 2016-02-10T16:29:34 *** brson has joined #bitcoin-dev
467 2016-02-10T16:34:08 *** n0n0__ has joined #bitcoin-dev
468 2016-02-10T16:35:12 *** frankenmint has joined #bitcoin-dev
469 2016-02-10T16:40:32 *** frankenmint has quit IRC
470 2016-02-10T16:42:34 *** n0n0__ has quit IRC
471 2016-02-10T16:42:47 *** n0n0_ has joined #bitcoin-dev
472 2016-02-10T16:43:02 *** kadoban has joined #bitcoin-dev
473 2016-02-10T16:49:06 *** agricocb has quit IRC
474 2016-02-10T16:49:42 *** digitalmagus has quit IRC
475 2016-02-10T16:51:58 *** aschildbach has quit IRC
476 2016-02-10T16:52:35 *** chmod755 has joined #bitcoin-dev
477 2016-02-10T16:53:07 *** wasi has quit IRC
478 2016-02-10T16:53:34 *** nodejunkie has joined #bitcoin-dev
479 2016-02-10T16:54:03 *** Palsson_ has quit IRC
480 2016-02-10T16:58:17 *** agricocb has joined #bitcoin-dev
481 2016-02-10T17:07:18 *** Grouver has quit IRC
482 2016-02-10T17:08:45 *** Gi0 has quit IRC
483 2016-02-10T17:09:17 *** neozaru has joined #bitcoin-dev
484 2016-02-10T17:16:04 *** tachys has quit IRC
485 2016-02-10T17:16:09 *** GuruMonk has joined #bitcoin-dev
486 2016-02-10T17:17:17 *** zooko` has joined #bitcoin-dev
487 2016-02-10T17:18:15 *** arthus has joined #bitcoin-dev
488 2016-02-10T17:19:06 *** zooko has quit IRC
489 2016-02-10T17:26:24 *** conner_ has quit IRC
490 2016-02-10T17:26:44 *** radius_ has quit IRC
491 2016-02-10T17:27:11 *** DiabloD3 has joined #bitcoin-dev
492 2016-02-10T17:27:20 *** bhaak has quit IRC
493 2016-02-10T17:27:30 *** Starduster has joined #bitcoin-dev
494 2016-02-10T17:27:54 *** radius_ has joined #bitcoin-dev
495 2016-02-10T17:28:08 *** DiabloD3 has quit IRC
496 2016-02-10T17:30:32 *** bhaak has joined #bitcoin-dev
497 2016-02-10T17:30:51 *** nibbler has quit IRC
498 2016-02-10T17:31:00 *** nibbler has joined #bitcoin-dev
499 2016-02-10T17:32:06 *** Dizzle has joined #bitcoin-dev
500 2016-02-10T17:33:33 *** Palsson has joined #bitcoin-dev
501 2016-02-10T17:35:08 *** bhaak has quit IRC
502 2016-02-10T17:42:05 *** tachys has joined #bitcoin-dev
503 2016-02-10T17:43:55 *** janko33 has joined #bitcoin-dev
504 2016-02-10T17:46:24 *** tachys has quit IRC
505 2016-02-10T17:51:13 *** chmod755 has quit IRC
506 2016-02-10T17:51:16 *** MoALTz__ has joined #bitcoin-dev
507 2016-02-10T17:52:06 *** MoALTz has quit IRC
508 2016-02-10T17:52:10 *** MoALTz__ is now known as MoALTz
509 2016-02-10T17:56:25 *** mnk has quit IRC
510 2016-02-10T17:57:53 *** molz has quit IRC
511 2016-02-10T17:58:21 *** molz has joined #bitcoin-dev
512 2016-02-10T18:03:06 *** conner_ has joined #bitcoin-dev
513 2016-02-10T18:08:00 *** paveljanik has joined #bitcoin-dev
514 2016-02-10T18:08:21 *** Dizzle__ has joined #bitcoin-dev
515 2016-02-10T18:09:18 *** b-itcoinssg has joined #bitcoin-dev
516 2016-02-10T18:09:18 *** GAit has quit IRC
517 2016-02-10T18:09:55 *** GAit has joined #bitcoin-dev
518 2016-02-10T18:10:45 *** Dizzle has quit IRC
519 2016-02-10T18:11:12 *** job_ has joined #bitcoin-dev
520 2016-02-10T18:12:52 *** zooko` has quit IRC
521 2016-02-10T18:17:39 *** chris13243 has joined #bitcoin-dev
522 2016-02-10T18:18:22 *** IAmNotDorian has joined #bitcoin-dev
523 2016-02-10T18:18:22 *** IAmNotDorian has joined #bitcoin-dev
524 2016-02-10T18:20:23 *** kgk has joined #bitcoin-dev
525 2016-02-10T18:24:56 *** kgk has quit IRC
526 2016-02-10T18:25:24 *** supasonic has quit IRC
527 2016-02-10T18:25:45 *** nibbler has quit IRC
528 2016-02-10T18:25:58 *** nibbler has joined #bitcoin-dev
529 2016-02-10T18:32:34 *** xegoo has quit IRC
530 2016-02-10T18:32:38 *** zooko has joined #bitcoin-dev
531 2016-02-10T18:34:55 *** conner_ has quit IRC
532 2016-02-10T18:35:15 *** conner_ has joined #bitcoin-dev
533 2016-02-10T18:38:40 *** xegoo has joined #bitcoin-dev
534 2016-02-10T18:41:26 *** impulse has quit IRC
535 2016-02-10T18:42:50 *** impulse has joined #bitcoin-dev
536 2016-02-10T18:43:30 *** denisx has joined #bitcoin-dev
537 2016-02-10T18:48:20 *** zooko has quit IRC
538 2016-02-10T18:49:21 *** mnk has joined #bitcoin-dev
539 2016-02-10T18:52:22 *** mnk has quit IRC
540 2016-02-10T18:52:35 *** mnk has joined #bitcoin-dev
541 2016-02-10T18:53:22 *** nodejunkie has quit IRC
542 2016-02-10T18:53:35 *** IAmNotDorian has quit IRC
543 2016-02-10T18:55:11 *** conner_ has quit IRC
544 2016-02-10T18:57:06 *** JelliADM has joined #bitcoin-dev
545 2016-02-10T18:57:50 *** zooko has joined #bitcoin-dev
546 2016-02-10T18:58:49 *** JelliADM has left #bitcoin-dev
547 2016-02-10T18:59:46 *** chris13243 has quit IRC
548 2016-02-10T19:03:50 *** Belxjander has quit IRC
549 2016-02-10T19:05:41 *** Belxjander has joined #bitcoin-dev
550 2016-02-10T19:06:16 *** supasonic has joined #bitcoin-dev
551 2016-02-10T19:06:45 *** ThomasV has quit IRC
552 2016-02-10T19:07:46 *** rlifchitz has quit IRC
553 2016-02-10T19:11:33 *** shurnormal has joined #bitcoin-dev
554 2016-02-10T19:17:00 *** rlifchitz has joined #bitcoin-dev
555 2016-02-10T19:17:02 *** cbit has joined #bitcoin-dev
556 2016-02-10T19:17:41 *** afk11 has quit IRC
557 2016-02-10T19:19:03 *** afk11 has joined #bitcoin-dev
558 2016-02-10T19:22:07 *** kgk has joined #bitcoin-dev
559 2016-02-10T19:22:45 *** Dizzle__ is now known as Dizzle
560 2016-02-10T19:23:11 *** t7 has joined #bitcoin-dev
561 2016-02-10T19:25:12 *** stevenroose_ has quit IRC
562 2016-02-10T19:25:15 *** Beef has quit IRC
563 2016-02-10T19:26:36 *** kgk has quit IRC
564 2016-02-10T19:26:55 *** supasonic has quit IRC
565 2016-02-10T19:27:36 *** shawnleary has joined #bitcoin-dev
566 2016-02-10T19:31:56 *** morcos has quit IRC
567 2016-02-10T19:32:15 *** zooko has quit IRC
568 2016-02-10T19:33:29 *** chris13243 has joined #bitcoin-dev
569 2016-02-10T19:36:28 *** sword_smith has quit IRC
570 2016-02-10T19:37:53 *** sword_smith has joined #bitcoin-dev
571 2016-02-10T19:45:28 *** morcos has joined #bitcoin-dev
572 2016-02-10T19:48:59 *** markus-k has quit IRC
573 2016-02-10T19:49:35 *** deadalnix has joined #bitcoin-dev
574 2016-02-10T19:51:20 *** Belxjander has quit IRC
575 2016-02-10T19:54:23 *** wallet42 has joined #bitcoin-dev
576 2016-02-10T19:55:35 *** shurnormal has quit IRC
577 2016-02-10T19:57:44 *** Belxjander has joined #bitcoin-dev
578 2016-02-10T19:59:28 *** mrkent has joined #bitcoin-dev
579 2016-02-10T20:01:48 *** cbit has quit IRC
580 2016-02-10T20:01:59 *** Guest87 has joined #bitcoin-dev
581 2016-02-10T20:02:14 *** shurnormal has joined #bitcoin-dev
582 2016-02-10T20:02:16 *** arthus has quit IRC
583 2016-02-10T20:03:41 *** Beef has joined #bitcoin-dev
584 2016-02-10T20:03:48 *** Guest87 has quit IRC
585 2016-02-10T20:03:51 *** Beef has quit IRC
586 2016-02-10T20:04:48 *** Beef has joined #bitcoin-dev
587 2016-02-10T20:05:57 *** murch has joined #bitcoin-dev
588 2016-02-10T20:06:31 *** tegila_ has quit IRC
589 2016-02-10T20:08:24 *** ThomasV has joined #bitcoin-dev
590 2016-02-10T20:11:52 *** conner_ has joined #bitcoin-dev
591 2016-02-10T20:12:24 *** melvster has quit IRC
592 2016-02-10T20:13:46 *** SpenQ has joined #bitcoin-dev
593 2016-02-10T20:14:05 *** skyraider_ has joined #bitcoin-dev
594 2016-02-10T20:15:33 *** melvster has joined #bitcoin-dev
595 2016-02-10T20:19:26 *** chris13243 has quit IRC
596 2016-02-10T20:22:09 *** zooko has joined #bitcoin-dev
597 2016-02-10T20:23:33 *** kgk has joined #bitcoin-dev
598 2016-02-10T20:26:00 *** Altoidnerd has joined #bitcoin-dev
599 2016-02-10T20:26:03 *** Altoidnerd has left #bitcoin-dev
600 2016-02-10T20:27:30 *** fakesatoshi has joined #bitcoin-dev
601 2016-02-10T20:27:51 *** kgk has quit IRC
602 2016-02-10T20:28:02 <fakesatoshi> we can release a new release every time classic releases an old release. This way they'll be one version behind forever
603 2016-02-10T20:28:21 <fakesatoshi> we can release 0.12 now that they released 0.11.2
604 2016-02-10T20:30:18 *** fakesatoshi has quit IRC
605 2016-02-10T20:36:24 *** bitcoin-dev474 has joined #bitcoin-dev
606 2016-02-10T20:36:37 <bitcoin-dev474> https://www.reddit.com/r/btc/comments/454cwd/ipv6_bug_in_bu_where_to_report_bu_core/
607 2016-02-10T20:36:42 *** chjj has joined #bitcoin-dev
608 2016-02-10T20:36:58 *** brson has quit IRC
609 2016-02-10T20:42:28 *** WKNiGHT has joined #bitcoin-dev
610 2016-02-10T20:43:43 *** blueness has quit IRC
611 2016-02-10T20:48:56 *** blueness has joined #bitcoin-dev
612 2016-02-10T20:51:52 *** priidu has quit IRC
613 2016-02-10T20:52:46 *** bitcoin-dev474 has quit IRC
614 2016-02-10T20:55:01 *** blueness has joined #bitcoin-dev
615 2016-02-10T20:55:54 *** Guest89899 has joined #bitcoin-dev
616 2016-02-10T21:04:44 *** chris13243 has joined #bitcoin-dev
617 2016-02-10T21:05:20 *** cryptapus_ has quit IRC
618 2016-02-10T21:07:22 *** denisx has quit IRC
619 2016-02-10T21:08:54 *** denisx has joined #bitcoin-dev
620 2016-02-10T21:09:52 *** rnvk1 has quit IRC
621 2016-02-10T21:10:27 *** b-itcoinssg has quit IRC
622 2016-02-10T21:11:20 *** rnvk has joined #bitcoin-dev
623 2016-02-10T21:13:16 *** GuruMonk has quit IRC
624 2016-02-10T21:16:46 *** chris13243 has quit IRC
625 2016-02-10T21:16:55 *** adnn has joined #bitcoin-dev
626 2016-02-10T21:27:36 *** rnvk has quit IRC
627 2016-02-10T21:28:17 *** wallet42 has quit IRC
628 2016-02-10T21:28:59 *** brson has joined #bitcoin-dev
629 2016-02-10T21:30:02 *** laurentmt has quit IRC
630 2016-02-10T21:34:08 *** roidster has quit IRC
631 2016-02-10T21:35:41 *** supasonic has joined #bitcoin-dev
632 2016-02-10T21:39:03 *** twixisowned has joined #bitcoin-dev
633 2016-02-10T21:39:04 *** optimator_ has joined #bitcoin-dev
634 2016-02-10T21:39:49 *** Clown- has joined #bitcoin-dev
635 2016-02-10T21:39:50 *** |Clown| has quit IRC
636 2016-02-10T21:39:50 *** Clown- is now known as |Clown|
637 2016-02-10T21:41:11 *** MrHodl has joined #bitcoin-dev
638 2016-02-10T21:41:11 *** MrHodl has left #bitcoin-dev
639 2016-02-10T21:41:37 *** jrick_ has joined #bitcoin-dev
640 2016-02-10T21:42:01 *** wpalczynski_ has joined #bitcoin-dev
641 2016-02-10T21:42:34 *** merlinco1ey has joined #bitcoin-dev
642 2016-02-10T21:42:55 *** hantek has joined #bitcoin-dev
643 2016-02-10T21:43:01 *** GAit has quit IRC
644 2016-02-10T21:43:08 *** robbak_ has joined #bitcoin-dev
645 2016-02-10T21:43:18 *** horlicks1 has joined #bitcoin-dev
646 2016-02-10T21:43:47 *** PRab_ has joined #bitcoin-dev
647 2016-02-10T21:43:54 *** wrabbit has quit IRC
648 2016-02-10T21:43:56 *** pigeons_ has joined #bitcoin-dev
649 2016-02-10T21:43:56 *** nullpt_ has joined #bitcoin-dev
650 2016-02-10T21:44:01 *** sturles_ has joined #bitcoin-dev
651 2016-02-10T21:44:02 *** wrabbit has joined #bitcoin-dev
652 2016-02-10T21:44:03 *** bjobjo has joined #bitcoin-dev
653 2016-02-10T21:44:13 *** emzy_ has joined #bitcoin-dev
654 2016-02-10T21:44:13 *** Raccoon^ has joined #bitcoin-dev
655 2016-02-10T21:44:16 *** nnnn has joined #bitcoin-dev
656 2016-02-10T21:44:17 *** xintox_ has joined #bitcoin-dev
657 2016-02-10T21:45:46 *** sturles has quit IRC
658 2016-02-10T21:45:46 *** sturles_ is now known as sturles
659 2016-02-10T21:46:11 *** dstien_ has joined #bitcoin-dev
660 2016-02-10T21:47:24 *** jrick has quit IRC
661 2016-02-10T21:47:30 *** jrick_ is now known as jrick
662 2016-02-10T21:48:30 *** agricocb has quit IRC
663 2016-02-10T21:48:31 *** BashCo has quit IRC
664 2016-02-10T21:48:31 *** ribasushi has quit IRC
665 2016-02-10T21:48:31 *** trixisowned has quit IRC
666 2016-02-10T21:48:31 *** robbak has quit IRC
667 2016-02-10T21:48:31 *** hanti has quit IRC
668 2016-02-10T21:48:31 *** horlicks has quit IRC
669 2016-02-10T21:48:31 *** fuc has quit IRC
670 2016-02-10T21:48:31 *** Soligor has quit IRC
671 2016-02-10T21:48:31 *** BGL has quit IRC
672 2016-02-10T21:48:31 *** arij has quit IRC
673 2016-02-10T21:48:31 *** xMopxShell has quit IRC
674 2016-02-10T21:48:31 *** stevenroose has quit IRC
675 2016-02-10T21:48:32 *** nullpt has quit IRC
676 2016-02-10T21:48:32 *** dwn has quit IRC
677 2016-02-10T21:48:32 *** wpalczynski has quit IRC
678 2016-02-10T21:48:32 *** Raccoon has quit IRC
679 2016-02-10T21:48:32 *** kefkius has quit IRC
680 2016-02-10T21:48:32 *** guruvan has quit IRC
681 2016-02-10T21:48:32 *** bjobjo_ has quit IRC
682 2016-02-10T21:48:32 *** olivierjanss has quit IRC
683 2016-02-10T21:48:32 *** xintox has quit IRC
684 2016-02-10T21:48:32 *** _sf_ has quit IRC
685 2016-02-10T21:48:32 *** starsoccer has quit IRC
686 2016-02-10T21:48:32 *** pigeons has quit IRC
687 2016-02-10T21:48:33 *** brooss_ has quit IRC
688 2016-02-10T21:48:33 *** optimator has quit IRC
689 2016-02-10T21:48:33 *** yena has quit IRC
690 2016-02-10T21:48:33 *** teward has quit IRC
691 2016-02-10T21:48:33 *** emzy has quit IRC
692 2016-02-10T21:48:33 *** huseby has quit IRC
693 2016-02-10T21:48:33 *** drazisil has quit IRC
694 2016-02-10T21:48:33 *** PRab has quit IRC
695 2016-02-10T21:48:33 *** merlincorey has quit IRC
696 2016-02-10T21:48:33 *** dstien has quit IRC
697 2016-02-10T21:48:33 *** jmcn has quit IRC
698 2016-02-10T21:48:33 *** BashCo_ has joined #bitcoin-dev
699 2016-02-10T21:48:33 *** hantek is now known as hanti
700 2016-02-10T21:48:33 *** hanti has joined #bitcoin-dev
701 2016-02-10T21:48:33 *** Raccoon^ is now known as Raccoon
702 2016-02-10T21:48:36 *** brooss has joined #bitcoin-dev
703 2016-02-10T21:48:40 *** ribasushi_ has joined #bitcoin-dev
704 2016-02-10T21:48:40 *** ribasushi_ is now known as ribasushi
705 2016-02-10T21:48:42 *** PRab_ is now known as PRab
706 2016-02-10T21:48:52 *** arij has joined #bitcoin-dev
707 2016-02-10T21:49:02 *** rnvk has joined #bitcoin-dev
708 2016-02-10T21:49:03 *** geneous has joined #bitcoin-dev
709 2016-02-10T21:49:12 *** xMopxShell has joined #bitcoin-dev
710 2016-02-10T21:49:14 *** starsoccer has joined #bitcoin-dev
711 2016-02-10T21:49:37 *** starsoccer is now known as Guest5628
712 2016-02-10T21:49:38 *** wpalczynski_ is now known as wpalczynski
713 2016-02-10T21:50:12 *** kefkius has joined #bitcoin-dev
714 2016-02-10T21:50:36 *** guruvan has joined #bitcoin-dev
715 2016-02-10T21:52:44 *** merlinco1ey is now known as merlincorey
716 2016-02-10T21:52:49 *** merlincorey has quit IRC
717 2016-02-10T21:52:49 *** merlincorey has joined #bitcoin-dev
718 2016-02-10T21:53:52 *** GAit has joined #bitcoin-dev
719 2016-02-10T21:54:47 *** teward has joined #bitcoin-dev
720 2016-02-10T21:54:48 *** chris13243 has joined #bitcoin-dev
721 2016-02-10T21:54:55 *** Soligor has joined #bitcoin-dev
722 2016-02-10T21:55:35 *** job_ has quit IRC
723 2016-02-10T21:55:42 *** drazisil has joined #bitcoin-dev
724 2016-02-10T21:56:55 *** agricocb has joined #bitcoin-dev
725 2016-02-10T21:57:26 *** rnvk has quit IRC
726 2016-02-10T21:59:10 *** _sf_ has joined #bitcoin-dev
727 2016-02-10T21:59:25 *** olivierjanss has joined #bitcoin-dev
728 2016-02-10T22:00:23 *** huseby has joined #bitcoin-dev
729 2016-02-10T22:00:51 *** t7_ has joined #bitcoin-dev
730 2016-02-10T22:00:58 *** yena has joined #bitcoin-dev
731 2016-02-10T22:02:26 *** t7 has quit IRC
732 2016-02-10T22:02:27 *** t7_ is now known as t7
733 2016-02-10T22:02:48 *** kgk has joined #bitcoin-dev
734 2016-02-10T22:03:21 *** paveljanik has quit IRC
735 2016-02-10T22:08:08 *** HostFat has joined #bitcoin-dev
736 2016-02-10T22:08:37 *** wallet42 has joined #bitcoin-dev
737 2016-02-10T22:09:06 *** aXR-[u] has joined #bitcoin-dev
738 2016-02-10T22:10:32 *** pieter___ has joined #bitcoin-dev
739 2016-02-10T22:13:24 *** Belxjander has quit IRC
740 2016-02-10T22:14:17 * pieter___ says hi
741 2016-02-10T22:16:05 *** airbreather_ has joined #bitcoin-dev
742 2016-02-10T22:17:15 *** skyraider__ has joined #bitcoin-dev
743 2016-02-10T22:17:31 *** t7_ has joined #bitcoin-dev
744 2016-02-10T22:17:46 *** YoY_ has joined #bitcoin-dev
745 2016-02-10T22:19:32 *** owlhooter has quit IRC
746 2016-02-10T22:19:34 *** Belxjander has joined #bitcoin-dev
747 2016-02-10T22:20:31 *** pieter___ has left #bitcoin-dev
748 2016-02-10T22:21:04 *** execut3 has joined #bitcoin-dev
749 2016-02-10T22:21:32 *** emzy has joined #bitcoin-dev
750 2016-02-10T22:21:47 *** Beaph has joined #bitcoin-dev
751 2016-02-10T22:21:50 *** btcdrak_ has joined #bitcoin-dev
752 2016-02-10T22:22:02 *** antizionist___ has joined #bitcoin-dev
753 2016-02-10T22:22:45 *** brson has quit IRC
754 2016-02-10T22:22:56 *** skyraider_ has quit IRC
755 2016-02-10T22:22:56 *** pdev has quit IRC
756 2016-02-10T22:22:56 *** _yoy_ has quit IRC
757 2016-02-10T22:22:56 *** t7 has quit IRC
758 2016-02-10T22:22:56 *** teward has quit IRC
759 2016-02-10T22:22:57 *** Beef has quit IRC
760 2016-02-10T22:22:58 *** emzy_ has quit IRC
761 2016-02-10T22:22:58 *** airbreather__ has quit IRC
762 2016-02-10T22:22:58 *** shesek has quit IRC
763 2016-02-10T22:22:59 *** midnightmagic has quit IRC
764 2016-02-10T22:22:59 *** btcdrak has quit IRC
765 2016-02-10T22:22:59 *** olivierjanss has quit IRC
766 2016-02-10T22:22:59 *** antizionist__ has quit IRC
767 2016-02-10T22:22:59 *** Beaph is now known as Beef
768 2016-02-10T22:23:02 *** skyraider__ is now known as skyraider_
769 2016-02-10T22:23:06 *** midnightmagic has joined #bitcoin-dev
770 2016-02-10T22:23:07 *** t7_ is now known as t7
771 2016-02-10T22:23:17 *** olivierjanss has joined #bitcoin-dev
772 2016-02-10T22:23:18 *** antizionist___ is now known as antizionist__
773 2016-02-10T22:24:18 *** murch has quit IRC
774 2016-02-10T22:24:39 *** btcdrak_ is now known as btcdrak
775 2016-02-10T22:25:24 *** frankenmint has joined #bitcoin-dev
776 2016-02-10T22:27:44 *** teward has joined #bitcoin-dev
777 2016-02-10T22:29:45 *** zooko has quit IRC
778 2016-02-10T22:32:54 *** neozaru has quit IRC
779 2016-02-10T22:35:06 *** tantalum has quit IRC
780 2016-02-10T22:35:46 *** Guyver2 has quit IRC
781 2016-02-10T22:43:40 *** ThomasV has quit IRC
782 2016-02-10T22:44:00 *** wasi has joined #bitcoin-dev
783 2016-02-10T22:46:30 *** brson has joined #bitcoin-dev
784 2016-02-10T22:46:42 *** Guyver2 has joined #bitcoin-dev
785 2016-02-10T22:50:12 *** job_ has joined #bitcoin-dev
786 2016-02-10T22:50:46 *** SpenQ has quit IRC
787 2016-02-10T22:51:32 *** arthus has joined #bitcoin-dev
788 2016-02-10T22:53:46 *** agricocb has quit IRC
789 2016-02-10T22:54:10 *** supasonic has quit IRC
790 2016-02-10T22:54:30 *** atgreen has quit IRC
791 2016-02-10T22:54:33 *** GAit has quit IRC
792 2016-02-10T22:54:52 *** tegila has joined #bitcoin-dev
793 2016-02-10T23:00:54 *** owlhooter has joined #bitcoin-dev
794 2016-02-10T23:01:01 *** wallet42 has quit IRC
795 2016-02-10T23:01:55 *** denisx has quit IRC
796 2016-02-10T23:02:10 *** denisx has joined #bitcoin-dev
797 2016-02-10T23:04:21 *** blueness has quit IRC
798 2016-02-10T23:05:46 *** AaronvanW has quit IRC
799 2016-02-10T23:06:47 *** GAit has joined #bitcoin-dev
800 2016-02-10T23:07:27 *** Guyver2 has quit IRC
801 2016-02-10T23:08:06 *** brson has quit IRC
802 2016-02-10T23:09:21 *** blueness has joined #bitcoin-dev
803 2016-02-10T23:12:27 *** moli has joined #bitcoin-dev
804 2016-02-10T23:12:56 *** molz has quit IRC
805 2016-02-10T23:14:05 *** roidster has joined #bitcoin-dev
806 2016-02-10T23:14:15 *** roidster is now known as Guest95790
807 2016-02-10T23:15:29 *** Guest95790 is now known as roidster
808 2016-02-10T23:17:50 *** gruez has joined #bitcoin-dev
809 2016-02-10T23:19:48 *** nibbler has left #bitcoin-dev
810 2016-02-10T23:20:02 *** pooler has quit IRC
811 2016-02-10T23:24:33 *** denisx has quit IRC
812 2016-02-10T23:27:43 *** janko33 has quit IRC
813 2016-02-10T23:32:10 *** Beef has quit IRC
814 2016-02-10T23:33:56 *** chjj has quit IRC
815 2016-02-10T23:34:01 *** ignit has joined #bitcoin-dev
816 2016-02-10T23:38:34 *** Beef has joined #bitcoin-dev
817 2016-02-10T23:41:50 *** molz has joined #bitcoin-dev
818 2016-02-10T23:42:01 *** pigeons_ is now known as pigeons
819 2016-02-10T23:42:16 *** brson has joined #bitcoin-dev
820 2016-02-10T23:43:33 *** pooler has joined #bitcoin-dev
821 2016-02-10T23:45:26 *** moli has quit IRC
822 2016-02-10T23:48:22 *** davec has quit IRC
823 2016-02-10T23:48:32 *** chjj has joined #bitcoin-dev
824 2016-02-10T23:49:02 *** davec has joined #bitcoin-dev
825 2016-02-10T23:49:57 *** frankenmint has quit IRC
826 2016-02-10T23:51:29 *** one_zero has joined #bitcoin-dev
827 2016-02-10T23:52:19 *** jtoomim has quit IRC
828 2016-02-10T23:52:46 *** moa has joined #bitcoin-dev
829 2016-02-10T23:54:08 *** DougieBot5000 has quit IRC
830 2016-02-10T23:59:02 *** Belxjander has quit IRC