1 2016-01-14T00:00:55 *** AaronvanW has joined #bitcoin-dev
2 2016-01-14T00:02:39 *** ThomasV has quit IRC
3 2016-01-14T00:03:15 *** Ahmed90 has quit IRC
4 2016-01-14T00:05:54 <benjyz1> I understand if one wants to argue one way or another. technical here however simply means: remaining fully anonymous
5 2016-01-14T00:06:15 *** Belxjander has joined #bitcoin-dev
6 2016-01-14T00:07:15 *** benjyz1 has quit IRC
7 2016-01-14T00:09:14 <rael_wiki> hi, I am using python-bitcoinlib to perform rpc calls to a bitcon node. I deal with amounts in satoshis, so, when I send an amount to my node via rpc, I need to convert the amount to BTC. That means my amounts turn from integers to floats. To avoid rounding I wanted to use python's Decimals but doing so, when python-bitcoinlib's module receives my dictionary and tries to convert it to json, it is not able to convert decimals. Any help on how to send
8 2016-01-14T00:09:42 <rael_wiki> Any help on how to send such requests without losing precision?
9 2016-01-14T00:10:44 *** benrcole has joined #bitcoin-dev
10 2016-01-14T00:17:15 *** Belxjander has quit IRC
11 2016-01-14T00:17:57 *** guest21333 has joined #bitcoin-dev
12 2016-01-14T00:18:55 *** lsrp has quit IRC
13 2016-01-14T00:20:48 *** lsrp has joined #bitcoin-dev
14 2016-01-14T00:21:09 *** Belxjander has joined #bitcoin-dev
15 2016-01-14T00:30:06 *** t7 has quit IRC
16 2016-01-14T00:30:58 *** one_zero has joined #bitcoin-dev
17 2016-01-14T00:33:12 *** jl2012 has quit IRC
18 2016-01-14T00:33:31 *** AaronvanW has quit IRC
19 2016-01-14T00:33:32 *** jl2012 has joined #bitcoin-dev
20 2016-01-14T00:35:42 *** Belxjander has quit IRC
21 2016-01-14T00:37:17 *** patcon has quit IRC
22 2016-01-14T00:38:45 *** SeXploit has quit IRC
23 2016-01-14T00:39:48 *** TheSeven has joined #bitcoin-dev
24 2016-01-14T00:40:00 *** rawdr has quit IRC
25 2016-01-14T00:41:14 *** rawdr has joined #bitcoin-dev
26 2016-01-14T00:41:36 *** Belxjander has joined #bitcoin-dev
27 2016-01-14T00:41:49 *** clopez_ has quit IRC
28 2016-01-14T00:44:24 *** clopez has joined #bitcoin-dev
29 2016-01-14T00:46:02 *** lsrp has quit IRC
30 2016-01-14T00:51:18 *** lsrp has joined #bitcoin-dev
31 2016-01-14T00:51:51 *** DougieBot5000 has joined #bitcoin-dev
32 2016-01-14T00:55:06 *** Belxjander has quit IRC
33 2016-01-14T00:56:00 *** Belxjander has joined #bitcoin-dev
34 2016-01-14T00:57:35 *** deadalnix has quit IRC
35 2016-01-14T01:00:48 *** laurentmt has joined #bitcoin-dev
36 2016-01-14T01:04:50 *** AtnevRed has joined #bitcoin-dev
37 2016-01-14T01:07:09 <alpalp> real_wiki: format as a string, padding with zeros
38 2016-01-14T01:07:15 <alpalp> rael_wiki, see above
39 2016-01-14T01:09:24 *** AtnevRed has quit IRC
40 2016-01-14T01:09:39 *** laurentmt has quit IRC
41 2016-01-14T01:13:00 *** patcon has joined #bitcoin-dev
42 2016-01-14T01:18:14 *** Belxjander has quit IRC
43 2016-01-14T01:19:58 *** agricocb has joined #bitcoin-dev
44 2016-01-14T01:21:35 *** lsrp has quit IRC
45 2016-01-14T01:21:41 *** oneeman has joined #bitcoin-dev
46 2016-01-14T01:22:14 *** tjader has quit IRC
47 2016-01-14T01:23:24 *** Belxjander has joined #bitcoin-dev
48 2016-01-14T01:26:14 <alpalp> if you are using python-bitcoinlib you have enough precision with with floats.
49 2016-01-14T01:27:37 *** tjader has joined #bitcoin-dev
50 2016-01-14T01:30:36 *** blueness has quit IRC
51 2016-01-14T01:32:06 <nwilcox> What's the roadmap for ./src/json? Is it being maintained/improved or replaced?
52 2016-01-14T01:32:10 *** GAit has quit IRC
53 2016-01-14T01:33:22 *** SeXploit has joined #bitcoin-dev
54 2016-01-14T01:34:11 <rael_wiki> alpalp: thank you, I can't use a string padded with zeroes because the rpc protocol requires a json real number
55 2016-01-14T01:34:30 *** xiangfu has joined #bitcoin-dev
56 2016-01-14T01:34:38 <rael_wiki> alpalp: so can I be sure that python floats are never rounded before the 8th decimal?
57 2016-01-14T01:36:01 <alpalp> no worse than JSON real's.
58 2016-01-14T01:36:41 *** kang_ has joined #bitcoin-dev
59 2016-01-14T01:38:39 *** GGuyZ has quit IRC
60 2016-01-14T01:38:42 *** SeXploit_ has joined #bitcoin-dev
61 2016-01-14T01:39:36 *** jtimon has quit IRC
62 2016-01-14T01:39:36 *** benrcole has quit IRC
63 2016-01-14T01:41:37 <alpalp> 64-bit floating point numbers give you about 15-17 significant digits.
64 2016-01-14T01:41:52 *** sparetire has quit IRC
65 2016-01-14T01:42:17 *** SeXploit has quit IRC
66 2016-01-14T01:43:02 <rael_wiki> alpalp: all right, thank you
67 2016-01-14T01:44:01 *** brson has quit IRC
68 2016-01-14T01:45:14 <Luke-Jr> rael_wiki: have fun https://github.com/jgarzik/python-bitcoinrpc/pull/63
69 2016-01-14T01:45:42 <Luke-Jr> alpalp: JSON does not have "real's"
70 2016-01-14T01:45:48 *** blueness has joined #bitcoin-dev
71 2016-01-14T01:45:57 <alpalp> the python lib does.
72 2016-01-14T01:46:11 *** patcon has quit IRC
73 2016-01-14T01:48:00 <rael_wiki> Luke-Jr: yeah, sorry, with JSON 'reals' I meant a numeric type (i.e. 2.75 instead of the string '2.75')
74 2016-01-14T01:48:39 *** owowo has quit IRC
75 2016-01-14T01:48:48 <Luke-Jr> rael_wiki: I think python-bitcoinlib is based on python-bitcoinrpc, so you can probably port the fix
76 2016-01-14T01:49:08 <alpalp> should have just used satoshis :(
77 2016-01-14T01:49:32 <rael_wiki> Luke-Jr: thanks a lot for your pull request
78 2016-01-14T01:51:42 <Luke-Jr> alpalp: yes
79 2016-01-14T01:52:03 *** c-cex-yuriy has quit IRC
80 2016-01-14T01:53:45 <merlincorey> Luke-Jr: what is the fix?
81 2016-01-14T01:53:57 <Luke-Jr> merlincorey: encoding the Decimal type correctly
82 2016-01-14T01:54:54 <merlincorey> I use that library (python-bitcoinrpc) -- so I guess mine is already patched
83 2016-01-14T01:55:08 <merlincorey> what is good about python-bitcoinlib over it?
84 2016-01-14T01:55:16 <merlincorey> (general question)
85 2016-01-14T01:55:26 <Luke-Jr> merlincorey: I just submitted the PR for the fix, so you wouldn't have it..
86 2016-01-14T01:55:45 <rael_wiki> Luke-Jr: now that you mention it, I've recently had to change the code of that library for my personal use. In fact, when running ~10 processes which concurrently performed rpc requests to a single 0.11 bitcoin node, the node got stuck at random points. After investigating it a bit, I believe it was because those different processes often sent the same request id, which, I think in some way messed up with the node's management of requests.
87 2016-01-14T01:55:47 <merlincorey> Luke-Jr: then I WILL have it :P
88 2016-01-14T01:55:54 <merlincorey> Luke-Jr: but I don't use Decimal type anyway
89 2016-01-14T01:56:12 <rael_wiki> Luke-Jr: I fixed it by changing the library so that concurrent processes always use different request ids. If you want some more details I can send you some more data and the code that apparently fixed the issue.
90 2016-01-14T01:56:35 <Luke-Jr> rael_wiki: are you the same person who reported that a few hours ago?
91 2016-01-14T01:56:45 <Luke-Jr> lorenzoasr
92 2016-01-14T01:57:01 <rael_wiki> Luke-Jr: me and that user ( lorenzoasr ) are working together on this
93 2016-01-14T01:58:19 *** GGuyZ has joined #bitcoin-dev
94 2016-01-14T01:58:42 <Luke-Jr> ok, so not independent confirmation :x
95 2016-01-14T01:59:46 <rael_wiki> Luke-Jr: I just mentioned it to have some more opinions about it, if you have any idea about the reason why that happend or a better fix I would gladly hear it ;)
96 2016-01-14T02:01:18 <Luke-Jr> rael_wiki: if you want to help track it down, it'd be nice to have a rpc test that can reproduce it (see qa/rpc-tests dir)
97 2016-01-14T02:06:04 <rael_wiki> Luke-Jr: we'd gladly look into it, although not today, as it's 3AM at the moment where I'm writing from. In case, if we have any doubts about how to write those tests we will ask in this channel
98 2016-01-14T02:06:50 <Luke-Jr> >_<
99 2016-01-14T02:07:19 *** kang_ has quit IRC
100 2016-01-14T02:08:07 *** brg444 has quit IRC
101 2016-01-14T02:08:21 *** Ylbam has quit IRC
102 2016-01-14T02:13:39 *** bendavenport has quit IRC
103 2016-01-14T02:14:47 *** SeXploit_ has quit IRC
104 2016-01-14T02:16:31 *** p15 has joined #bitcoin-dev
105 2016-01-14T02:17:26 *** Peter_Geschel has quit IRC
106 2016-01-14T02:19:13 *** adam3us has quit IRC
107 2016-01-14T02:19:28 *** owowo has joined #bitcoin-dev
108 2016-01-14T02:19:38 *** rael_wiki has quit IRC
109 2016-01-14T02:20:18 *** priidu has quit IRC
110 2016-01-14T02:20:36 *** Peter_Geschel has joined #bitcoin-dev
111 2016-01-14T02:24:39 *** DigiByteDev has joined #bitcoin-dev
112 2016-01-14T02:27:23 *** owowo has quit IRC
113 2016-01-14T02:27:31 *** owowo has joined #bitcoin-dev
114 2016-01-14T02:27:31 *** owowo has joined #bitcoin-dev
115 2016-01-14T02:38:43 *** eki5bvu7njh has quit IRC
116 2016-01-14T02:40:18 *** benrcole has joined #bitcoin-dev
117 2016-01-14T02:45:11 *** benrcole has quit IRC
118 2016-01-14T02:46:56 *** rawdr has quit IRC
119 2016-01-14T02:47:42 *** rawdr has joined #bitcoin-dev
120 2016-01-14T02:48:11 *** GGuyZ has quit IRC
121 2016-01-14T02:49:34 *** adam3us has joined #bitcoin-dev
122 2016-01-14T02:49:49 *** rusty1 has joined #bitcoin-dev
123 2016-01-14T02:50:01 *** DougieBot5000_ has joined #bitcoin-dev
124 2016-01-14T02:50:16 *** NikolaTesla80 has joined #bitcoin-dev
125 2016-01-14T02:50:53 *** PaulCape_ has joined #bitcoin-dev
126 2016-01-14T02:51:00 *** tjader has quit IRC
127 2016-01-14T02:51:06 *** DougieBot5000 has quit IRC
128 2016-01-14T02:51:07 *** DougieBot5000_ is now known as DougieBot5000
129 2016-01-14T02:51:36 *** Clown has joined #bitcoin-dev
130 2016-01-14T02:51:37 *** Clown has joined #bitcoin-dev
131 2016-01-14T02:51:37 *** DigiByteDev has quit IRC
132 2016-01-14T02:51:37 *** |Clown| has quit IRC
133 2016-01-14T02:51:37 *** Clown is now known as |Clown|
134 2016-01-14T02:52:54 *** DigiByteDev has joined #bitcoin-dev
135 2016-01-14T02:52:54 *** _fortis has quit IRC
136 2016-01-14T02:52:54 *** FManTropyx has quit IRC
137 2016-01-14T02:52:54 *** Apexseals has quit IRC
138 2016-01-14T02:52:54 *** aulait has quit IRC
139 2016-01-14T02:52:55 *** altgribble has quit IRC
140 2016-01-14T02:52:55 *** dabb has quit IRC
141 2016-01-14T02:52:55 *** BrainOverfl0w has quit IRC
142 2016-01-14T02:52:56 *** tekto has quit IRC
143 2016-01-14T02:52:56 *** dabb has joined #bitcoin-dev
144 2016-01-14T02:52:57 *** BrainOverfl0w has joined #bitcoin-dev
145 2016-01-14T02:52:57 *** tekto has joined #bitcoin-dev
146 2016-01-14T02:52:57 *** JackH has quit IRC
147 2016-01-14T02:53:08 *** altgribble has joined #bitcoin-dev
148 2016-01-14T02:53:14 *** NikolaTesla has quit IRC
149 2016-01-14T02:53:15 *** PaulCapestany has quit IRC
150 2016-01-14T02:53:15 *** Anduck has quit IRC
151 2016-01-14T02:53:23 *** Anduck has joined #bitcoin-dev
152 2016-01-14T02:53:25 *** JackH has joined #bitcoin-dev
153 2016-01-14T02:53:45 *** Apexseals has joined #bitcoin-dev
154 2016-01-14T02:53:47 *** rusty has quit IRC
155 2016-01-14T02:54:44 *** _fortis has joined #bitcoin-dev
156 2016-01-14T02:55:35 *** rawdr has quit IRC
157 2016-01-14T02:55:37 <petertodd> rael_wiki: python-bitcoinlib uses python integers internally; conversion to/from on the RPC layer is done at the last minute, so any conversion issues have to be fixed there
158 2016-01-14T02:57:09 *** aulait has joined #bitcoin-dev
159 2016-01-14T02:57:27 *** Burrito has quit IRC
160 2016-01-14T02:57:47 *** hsmiths has quit IRC
161 2016-01-14T02:58:16 *** tjader has joined #bitcoin-dev
162 2016-01-14T02:59:13 *** adam3us has quit IRC
163 2016-01-14T03:00:06 *** Peter_Geschel has quit IRC
164 2016-01-14T03:03:22 *** DigiByteDev has quit IRC
165 2016-01-14T03:06:00 *** AtnevRed has joined #bitcoin-dev
166 2016-01-14T03:06:35 *** copumpkin has joined #bitcoin-dev
167 2016-01-14T03:06:43 *** brg444 has joined #bitcoin-dev
168 2016-01-14T03:08:05 *** Peter_Geschel has joined #bitcoin-dev
169 2016-01-14T03:08:08 *** adam3us has joined #bitcoin-dev
170 2016-01-14T03:10:04 *** hsmiths has joined #bitcoin-dev
171 2016-01-14T03:10:58 *** AtnevRed has quit IRC
172 2016-01-14T03:13:17 *** Peter_Geschel has quit IRC
173 2016-01-14T03:17:16 *** rawdr has joined #bitcoin-dev
174 2016-01-14T03:17:23 *** twixisowned has joined #bitcoin-dev
175 2016-01-14T03:18:53 *** adam3us has quit IRC
176 2016-01-14T03:19:02 *** davec has quit IRC
177 2016-01-14T03:19:06 *** Peter_Geschel has joined #bitcoin-dev
178 2016-01-14T03:19:18 *** trixisowned has quit IRC
179 2016-01-14T03:19:28 *** davec has joined #bitcoin-dev
180 2016-01-14T03:20:15 *** Giszmo has quit IRC
181 2016-01-14T03:24:54 *** p15 has quit IRC
182 2016-01-14T03:31:06 *** adam3us has joined #bitcoin-dev
183 2016-01-14T03:32:03 *** jarkinox has joined #bitcoin-dev
184 2016-01-14T03:33:50 *** eki5bvu7njh has joined #bitcoin-dev
185 2016-01-14T03:39:37 *** Giszmo has joined #bitcoin-dev
186 2016-01-14T03:41:32 *** Delta_ has joined #bitcoin-dev
187 2016-01-14T03:41:53 *** benrcole has joined #bitcoin-dev
188 2016-01-14T03:44:10 *** Subo1977 has quit IRC
189 2016-01-14T03:47:39 *** benrcole has quit IRC
190 2016-01-14T03:49:24 *** hashtag has quit IRC
191 2016-01-14T03:50:17 *** Squidicuz has joined #bitcoin-dev
192 2016-01-14T03:51:51 *** rawdr has quit IRC
193 2016-01-14T03:52:42 *** jgarzik has joined #bitcoin-dev
194 2016-01-14T03:52:55 *** rusty1 has quit IRC
195 2016-01-14T03:53:19 *** rawdr has joined #bitcoin-dev
196 2016-01-14T03:53:34 *** shaul has joined #bitcoin-dev
197 2016-01-14T03:59:42 *** SeXploit has joined #bitcoin-dev
198 2016-01-14T04:03:45 *** PaulCape_ has quit IRC
199 2016-01-14T04:03:53 *** shaul has quit IRC
200 2016-01-14T04:04:13 *** PaulCapestany has joined #bitcoin-dev
201 2016-01-14T04:04:55 *** ryitpm has quit IRC
202 2016-01-14T04:05:43 *** Chris_Stewart_5 has quit IRC
203 2016-01-14T04:07:26 *** GGuyZ has joined #bitcoin-dev
204 2016-01-14T04:08:35 *** ryitpm has joined #bitcoin-dev
205 2016-01-14T04:08:46 *** treaki_ has quit IRC
206 2016-01-14T04:08:57 *** treaki has joined #bitcoin-dev
207 2016-01-14T04:09:21 *** AVGibby_ has quit IRC
208 2016-01-14T04:09:51 *** AVGibby_ has joined #bitcoin-dev
209 2016-01-14T04:09:58 *** rusty has joined #bitcoin-dev
210 2016-01-14T04:10:18 *** nanotube has quit IRC
211 2016-01-14T04:12:52 *** stevenroose has quit IRC
212 2016-01-14T04:12:52 *** stevenroose|BNC is now known as stevenroose
213 2016-01-14T04:12:59 *** copumpkin has quit IRC
214 2016-01-14T04:15:33 *** adam3us has quit IRC
215 2016-01-14T04:15:39 *** benrcole has joined #bitcoin-dev
216 2016-01-14T04:16:45 *** nanotube has joined #bitcoin-dev
217 2016-01-14T04:18:35 *** TheSeven has quit IRC
218 2016-01-14T04:18:50 *** tjader has quit IRC
219 2016-01-14T04:19:12 *** p15x has joined #bitcoin-dev
220 2016-01-14T04:19:29 *** TheSeven has joined #bitcoin-dev
221 2016-01-14T04:20:30 *** benrcole has quit IRC
222 2016-01-14T04:27:24 *** GGuyZ has quit IRC
223 2016-01-14T04:27:49 *** patcon has joined #bitcoin-dev
224 2016-01-14T04:28:23 *** tjader has joined #bitcoin-dev
225 2016-01-14T04:30:16 *** jarkinox has quit IRC
226 2016-01-14T04:32:10 *** GGuyZ has joined #bitcoin-dev
227 2016-01-14T04:35:24 *** GGuyZ has quit IRC
228 2016-01-14T04:36:22 *** patcon has quit IRC
229 2016-01-14T04:38:52 *** jcorgan|away is now known as jcorgan
230 2016-01-14T04:45:33 *** SeXploit has quit IRC
231 2016-01-14T04:50:03 *** oneeman has quit IRC
232 2016-01-14T04:58:32 *** roconnor has joined #bitcoin-dev
233 2016-01-14T04:58:35 *** guest21333 has quit IRC
234 2016-01-14T05:02:32 *** Orchen has joined #bitcoin-dev
235 2016-01-14T05:06:31 *** Orchen has left #bitcoin-dev
236 2016-01-14T05:10:25 *** blkdb has quit IRC
237 2016-01-14T05:10:36 *** blkdb has joined #bitcoin-dev
238 2016-01-14T05:13:23 *** rnvk has quit IRC
239 2016-01-14T05:14:15 *** ceejep has quit IRC
240 2016-01-14T05:32:58 *** roidster has joined #bitcoin-dev
241 2016-01-14T05:38:04 *** xiangfu has quit IRC
242 2016-01-14T05:44:27 *** p15x has quit IRC
243 2016-01-14T05:51:42 *** xiangfu has joined #bitcoin-dev
244 2016-01-14T05:52:18 *** tjader has quit IRC
245 2016-01-14T05:52:58 *** Sporklin2 has joined #bitcoin-dev
246 2016-01-14T05:53:36 *** Sporklin has quit IRC
247 2016-01-14T05:53:47 *** ThomasV has joined #bitcoin-dev
248 2016-01-14T05:58:01 *** tjader has joined #bitcoin-dev
249 2016-01-14T06:01:27 *** adam3us has joined #bitcoin-dev
250 2016-01-14T06:07:19 *** roidster has quit IRC
251 2016-01-14T06:10:00 *** Giszmo has quit IRC
252 2016-01-14T06:16:08 *** Subo1977 has joined #bitcoin-dev
253 2016-01-14T06:16:55 *** Delta_ has quit IRC
254 2016-01-14T06:20:47 *** kadoban has quit IRC
255 2016-01-14T06:22:24 *** xiangfu has quit IRC
256 2016-01-14T06:22:40 *** xiangfu has joined #bitcoin-dev
257 2016-01-14T06:26:29 *** p15 has joined #bitcoin-dev
258 2016-01-14T06:36:44 *** rusty has quit IRC
259 2016-01-14T06:40:53 *** neozaru has joined #bitcoin-dev
260 2016-01-14T06:42:35 *** blackmarble_ has quit IRC
261 2016-01-14T06:42:52 *** brg444 has quit IRC
262 2016-01-14T06:43:58 *** blackmarble_ has joined #bitcoin-dev
263 2016-01-14T06:53:41 *** Ylbam has joined #bitcoin-dev
264 2016-01-14T06:58:31 *** patcon has joined #bitcoin-dev
265 2016-01-14T07:07:19 *** AtnevRed has joined #bitcoin-dev
266 2016-01-14T07:09:21 *** CheckDavid has quit IRC
267 2016-01-14T07:10:49 *** melik has quit IRC
268 2016-01-14T07:12:12 *** AtnevRed has quit IRC
269 2016-01-14T07:12:58 *** jcorgan is now known as jcorgan|away
270 2016-01-14T07:18:47 *** ThomasV has quit IRC
271 2016-01-14T07:20:10 *** cjcj has quit IRC
272 2016-01-14T07:21:50 *** tjader has quit IRC
273 2016-01-14T07:28:07 *** tjader has joined #bitcoin-dev
274 2016-01-14T07:32:53 *** twixisowned has quit IRC
275 2016-01-14T07:35:57 *** Elglobonoob has quit IRC
276 2016-01-14T07:35:59 *** Elglobo has quit IRC
277 2016-01-14T07:36:41 *** Elglobo has joined #bitcoin-dev
278 2016-01-14T07:40:25 *** n0n0_ has joined #bitcoin-dev
279 2016-01-14T07:40:33 *** blackmarble_ has quit IRC
280 2016-01-14T07:40:35 *** Belxjander has quit IRC
281 2016-01-14T07:41:25 *** blackmarble_ has joined #bitcoin-dev
282 2016-01-14T07:42:42 *** Belxjander has joined #bitcoin-dev
283 2016-01-14T07:44:10 *** IAmNotDorian has joined #bitcoin-dev
284 2016-01-14T07:44:10 *** IAmNotDorian has joined #bitcoin-dev
285 2016-01-14T07:48:35 *** neozaru has quit IRC
286 2016-01-14T07:53:30 *** metalcamp has joined #bitcoin-dev
287 2016-01-14T07:58:44 *** DougieBot5000 has quit IRC
288 2016-01-14T08:03:18 *** Belxjander has quit IRC
289 2016-01-14T08:03:50 *** patcon has quit IRC
290 2016-01-14T08:04:44 *** Belxjander has joined #bitcoin-dev
291 2016-01-14T08:05:14 *** Beef has quit IRC
292 2016-01-14T08:08:55 *** jaclupi has quit IRC
293 2016-01-14T08:09:30 *** Beef has joined #bitcoin-dev
294 2016-01-14T08:09:31 *** Beef has joined #bitcoin-dev
295 2016-01-14T08:13:13 *** ThomasV has joined #bitcoin-dev
296 2016-01-14T08:14:42 *** kgk has quit IRC
297 2016-01-14T08:15:23 *** IAmNotDorian has quit IRC
298 2016-01-14T08:15:39 *** jtimon has joined #bitcoin-dev
299 2016-01-14T08:16:23 *** guest21333 has joined #bitcoin-dev
300 2016-01-14T08:19:37 *** paveljanik has joined #bitcoin-dev
301 2016-01-14T08:19:38 *** paveljanik has quit IRC
302 2016-01-14T08:19:38 *** paveljanik has joined #bitcoin-dev
303 2016-01-14T08:19:52 *** metalcamp has quit IRC
304 2016-01-14T08:20:27 *** gielbier has quit IRC
305 2016-01-14T08:22:18 *** Grouver has joined #bitcoin-dev
306 2016-01-14T08:27:00 *** ThomasV has quit IRC
307 2016-01-14T08:27:08 *** priidu has joined #bitcoin-dev
308 2016-01-14T08:33:12 *** guest21333 has quit IRC
309 2016-01-14T08:34:33 *** metalcamp has joined #bitcoin-dev
310 2016-01-14T08:41:24 *** trixisowned has joined #bitcoin-dev
311 2016-01-14T08:44:44 *** jtimon has quit IRC
312 2016-01-14T08:44:55 *** supasonic has quit IRC
313 2016-01-14T08:46:05 *** BashCo has quit IRC
314 2016-01-14T08:51:22 *** Belxjander has quit IRC
315 2016-01-14T08:51:36 *** tjader has quit IRC
316 2016-01-14T08:55:58 *** BTC has joined #bitcoin-dev
317 2016-01-14T08:57:15 *** tjader has joined #bitcoin-dev
318 2016-01-14T08:57:29 *** Belxjander has joined #bitcoin-dev
319 2016-01-14T08:59:08 *** mnk has quit IRC
320 2016-01-14T08:59:29 *** BTC has quit IRC
321 2016-01-14T09:00:08 *** rolandnsharp48 has quit IRC
322 2016-01-14T09:00:21 *** rolandnsharp has joined #bitcoin-dev
323 2016-01-14T09:01:49 *** conner has joined #bitcoin-dev
324 2016-01-14T09:07:37 *** BashCo has joined #bitcoin-dev
325 2016-01-14T09:08:31 *** AtnevRed has joined #bitcoin-dev
326 2016-01-14T09:09:04 *** sarath_ has joined #bitcoin-dev
327 2016-01-14T09:09:24 *** moli has quit IRC
328 2016-01-14T09:09:53 *** damethos has joined #bitcoin-dev
329 2016-01-14T09:10:35 *** conner has quit IRC
330 2016-01-14T09:11:01 *** kgk has joined #bitcoin-dev
331 2016-01-14T09:12:59 *** AtnevRed has quit IRC
332 2016-01-14T09:13:43 *** asyn has joined #bitcoin-dev
333 2016-01-14T09:14:59 *** zookolaptop has quit IRC
334 2016-01-14T09:15:26 *** kgk has quit IRC
335 2016-01-14T09:19:01 *** Aexoden has quit IRC
336 2016-01-14T09:21:11 *** Aexoden has joined #bitcoin-dev
337 2016-01-14T09:21:13 *** conner has joined #bitcoin-dev
338 2016-01-14T09:24:31 *** conner has quit IRC
339 2016-01-14T09:43:55 *** xiangfu has quit IRC
340 2016-01-14T09:44:11 *** xiangfu has joined #bitcoin-dev
341 2016-01-14T09:47:45 *** simba_ has joined #bitcoin-dev
342 2016-01-14T09:49:41 *** simba_ has quit IRC
343 2016-01-14T09:49:59 *** conner has joined #bitcoin-dev
344 2016-01-14T09:50:06 *** moa has quit IRC
345 2016-01-14T09:52:12 *** kabaum has joined #bitcoin-dev
346 2016-01-14T09:52:45 *** asyn1 has joined #bitcoin-dev
347 2016-01-14T09:52:54 *** asyn has quit IRC
348 2016-01-14T09:54:44 *** blackmarble_ has quit IRC
349 2016-01-14T09:56:41 *** asyn1 has left #bitcoin-dev
350 2016-01-14T09:58:34 *** conner has quit IRC
351 2016-01-14T09:59:02 *** rdymac has joined #bitcoin-dev
352 2016-01-14T10:00:43 *** derron has joined #bitcoin-dev
353 2016-01-14T10:02:03 *** Guyver2 has joined #bitcoin-dev
354 2016-01-14T10:04:32 *** roconnor has quit IRC
355 2016-01-14T10:05:33 *** sparetire has joined #bitcoin-dev
356 2016-01-14T10:06:02 *** Belxjander has quit IRC
357 2016-01-14T10:06:03 *** ThomasV has joined #bitcoin-dev
358 2016-01-14T10:09:39 *** derron has quit IRC
359 2016-01-14T10:10:49 *** GAit has joined #bitcoin-dev
360 2016-01-14T10:11:02 *** AaronvanW has joined #bitcoin-dev
361 2016-01-14T10:11:35 *** conner has joined #bitcoin-dev
362 2016-01-14T10:12:47 *** Belxjander has joined #bitcoin-dev
363 2016-01-14T10:12:56 *** one_zero has quit IRC
364 2016-01-14T10:23:10 *** tjader has quit IRC
365 2016-01-14T10:23:35 *** Belxjander has quit IRC
366 2016-01-14T10:25:45 *** Belxjander has joined #bitcoin-dev
367 2016-01-14T10:27:58 *** tjader has joined #bitcoin-dev
368 2016-01-14T10:28:26 *** G1lius has joined #bitcoin-dev
369 2016-01-14T10:32:43 *** ThomasV has quit IRC
370 2016-01-14T10:34:42 *** jaclupi has joined #bitcoin-dev
371 2016-01-14T10:37:48 *** conner has quit IRC
372 2016-01-14T10:39:19 *** xiangfu has quit IRC
373 2016-01-14T10:42:45 *** Belxjander has quit IRC
374 2016-01-14T10:44:53 *** Belxjander has joined #bitcoin-dev
375 2016-01-14T10:49:46 *** Guyver2 has quit IRC
376 2016-01-14T10:55:53 *** atgreen has quit IRC
377 2016-01-14T11:00:47 *** jzk has quit IRC
378 2016-01-14T11:09:23 *** AtnevRed has joined #bitcoin-dev
379 2016-01-14T11:11:39 *** atgreen has joined #bitcoin-dev
380 2016-01-14T11:14:17 *** AtnevRed has quit IRC
381 2016-01-14T11:17:00 *** Belxjander has quit IRC
382 2016-01-14T11:18:50 *** Belxjander has joined #bitcoin-dev
383 2016-01-14T11:19:16 *** deadalnix has joined #bitcoin-dev
384 2016-01-14T11:19:58 *** deadalnix has joined #bitcoin-dev
385 2016-01-14T11:22:13 *** ThomasKeller has quit IRC
386 2016-01-14T11:27:14 *** jayzeekay has joined #bitcoin-dev
387 2016-01-14T11:33:32 *** sarath_ has quit IRC
388 2016-01-14T11:34:24 *** melvster has quit IRC
389 2016-01-14T11:35:14 *** GAit has quit IRC
390 2016-01-14T11:47:43 *** melvster has joined #bitcoin-dev
391 2016-01-14T11:48:20 *** veggi3s has quit IRC
392 2016-01-14T11:51:26 *** tjader has quit IRC
393 2016-01-14T11:56:06 *** halvors has joined #bitcoin-dev
394 2016-01-14T11:56:57 <halvors> I'm trying to create a new genesis block for my experiement.
395 2016-01-14T11:56:57 <halvors> I've replaced the block hash, the timestamp, the time, the nonce and the merkle in the source code.
396 2016-01-14T11:56:57 <halvors> But when starting bitcoin i get the error: "bitcoind: chainparams.cpp:124: CMainParams::CMainParams(): Assertion `consensus.hashGenesisBlock == uint256S("0x00000000a26e561bb46c262b714ea6495fd7de8b83b70dba20a1e50bebcb6496")' failed.
397 2016-01-14T11:56:57 <halvors> Aborted (core dumped)"
398 2016-01-14T11:56:57 <halvors> http://pastebin.com/bM0Fvw23
399 2016-01-14T11:56:57 <halvors> That is my generated block
400 2016-01-14T11:57:11 <halvors> Any ideas what i'm doing wrong here?
401 2016-01-14T11:58:00 *** tjader has joined #bitcoin-dev
402 2016-01-14T12:01:46 *** laurentmt has joined #bitcoin-dev
403 2016-01-14T12:03:09 *** laurentmt has quit IRC
404 2016-01-14T12:08:21 *** Belxjander has quit IRC
405 2016-01-14T12:09:09 *** jtimon has joined #bitcoin-dev
406 2016-01-14T12:09:24 *** Belxjander has joined #bitcoin-dev
407 2016-01-14T12:10:11 *** IAmNotDorian has joined #bitcoin-dev
408 2016-01-14T12:10:12 *** IAmNotDorian has joined #bitcoin-dev
409 2016-01-14T12:12:25 *** kgk has joined #bitcoin-dev
410 2016-01-14T12:14:35 *** RazielZ has joined #bitcoin-dev
411 2016-01-14T12:15:05 <paveljanik> halvors, here, the only thing you are doing wrong, is asking your questions. Different hash of genesis block -> altcoin -> off topic. You have to find the assert in the source code and change it... Look at src/chainparams.cpp#78. But please ask in #altcoins or elsewhere. Thank you.
412 2016-01-14T12:18:12 *** Raziel has quit IRC
413 2016-01-14T12:19:07 *** kgk has quit IRC
414 2016-01-14T12:19:09 *** ThomasKeller has joined #bitcoin-dev
415 2016-01-14T12:21:13 *** nelisky has joined #bitcoin-dev
416 2016-01-14T12:21:58 *** damethos has quit IRC
417 2016-01-14T12:23:52 *** blackwraith has joined #bitcoin-dev
418 2016-01-14T12:24:33 *** melik has joined #bitcoin-dev
419 2016-01-14T12:25:21 *** priidu has quit IRC
420 2016-01-14T12:25:54 *** cryptapus_ has joined #bitcoin-dev
421 2016-01-14T12:25:55 *** cryptapus_ has joined #bitcoin-dev
422 2016-01-14T12:30:10 *** melik has quit IRC
423 2016-01-14T12:34:56 *** blueness has quit IRC
424 2016-01-14T12:35:11 *** rdymac has quit IRC
425 2016-01-14T12:45:28 *** conner has joined #bitcoin-dev
426 2016-01-14T12:46:32 *** _yoy_ has quit IRC
427 2016-01-14T12:50:31 *** YoY has joined #bitcoin-dev
428 2016-01-14T12:53:06 *** shaul has joined #bitcoin-dev
429 2016-01-14T12:55:03 *** atgreen has quit IRC
430 2016-01-14T12:56:52 *** rnvk has joined #bitcoin-dev
431 2016-01-14T12:56:59 *** Belxjander has quit IRC
432 2016-01-14T12:58:55 *** shaul has quit IRC
433 2016-01-14T12:59:54 *** shaul has joined #bitcoin-dev
434 2016-01-14T13:00:05 *** Belxjander has joined #bitcoin-dev
435 2016-01-14T13:02:26 *** berndj has quit IRC
436 2016-01-14T13:05:14 *** GAit has joined #bitcoin-dev
437 2016-01-14T13:07:00 *** stalled has quit IRC
438 2016-01-14T13:07:54 *** laurentmt has joined #bitcoin-dev
439 2016-01-14T13:09:36 *** veggi3s has joined #bitcoin-dev
440 2016-01-14T13:10:04 *** AtnevRed has joined #bitcoin-dev
441 2016-01-14T13:10:46 *** laurentmt has quit IRC
442 2016-01-14T13:11:02 <halvors> It's tecnically still bitcoin. Just want to experiement with the technology :)
443 2016-01-14T13:14:48 *** AtnevRed has quit IRC
444 2016-01-14T13:15:02 *** berndj has joined #bitcoin-dev
445 2016-01-14T13:15:46 *** berndj has quit IRC
446 2016-01-14T13:16:00 *** berndj has joined #bitcoin-dev
447 2016-01-14T13:17:55 *** Emcy has quit IRC
448 2016-01-14T13:20:52 *** |Clown| has quit IRC
449 2016-01-14T13:22:11 *** tjader has quit IRC
450 2016-01-14T13:26:44 *** Belxjander has quit IRC
451 2016-01-14T13:26:53 *** |Clown| has joined #bitcoin-dev
452 2016-01-14T13:26:54 *** |Clown| has joined #bitcoin-dev
453 2016-01-14T13:27:36 *** tjader has joined #bitcoin-dev
454 2016-01-14T13:28:05 *** shaul has quit IRC
455 2016-01-14T13:30:35 *** shurnormal has quit IRC
456 2016-01-14T13:31:00 *** ThomasV has joined #bitcoin-dev
457 2016-01-14T13:31:42 *** Belxjander has joined #bitcoin-dev
458 2016-01-14T13:36:03 *** nelisky has quit IRC
459 2016-01-14T13:36:08 *** stalled has joined #bitcoin-dev
460 2016-01-14T13:43:17 *** atgreen has joined #bitcoin-dev
461 2016-01-14T13:46:34 *** AndroUserotff has joined #bitcoin-dev
462 2016-01-14T13:50:10 *** shaul has joined #bitcoin-dev
463 2016-01-14T13:52:06 *** nelisky has joined #bitcoin-dev
464 2016-01-14T13:52:47 *** Palsson has quit IRC
465 2016-01-14T13:56:59 *** hashtag has joined #bitcoin-dev
466 2016-01-14T13:58:51 *** Chris_Stewart_5 has joined #bitcoin-dev
467 2016-01-14T14:00:08 *** nelisky has quit IRC
468 2016-01-14T14:01:56 *** jtimon has quit IRC
469 2016-01-14T14:02:33 *** jonasschnelli has quit IRC
470 2016-01-14T14:03:28 *** Giszmo has joined #bitcoin-dev
471 2016-01-14T14:07:55 *** AVGibby_ has quit IRC
472 2016-01-14T14:07:59 *** lorenzoasr has quit IRC
473 2016-01-14T14:08:13 *** nelisky has joined #bitcoin-dev
474 2016-01-14T14:09:55 *** jonasschnelli has joined #bitcoin-dev
475 2016-01-14T14:10:30 *** shaul has quit IRC
476 2016-01-14T14:10:34 *** hsdje4b has joined #bitcoin-dev
477 2016-01-14T14:11:06 <Chris_Stewart_5> Morning everyone!
478 2016-01-14T14:11:59 *** hsdje4b has quit IRC
479 2016-01-14T14:12:25 *** hsdje4b has joined #bitcoin-dev
480 2016-01-14T14:12:52 *** melik has joined #bitcoin-dev
481 2016-01-14T14:14:00 *** eki5bvu7njh has quit IRC
482 2016-01-14T14:15:17 *** binaryFateCloud has quit IRC
483 2016-01-14T14:15:29 *** binaryFateCloud has joined #bitcoin-dev
484 2016-01-14T14:16:04 *** kgk has joined #bitcoin-dev
485 2016-01-14T14:17:36 *** melik has quit IRC
486 2016-01-14T14:19:00 *** nelisky has quit IRC
487 2016-01-14T14:20:36 *** kgk has quit IRC
488 2016-01-14T14:22:24 *** GGuyZ has joined #bitcoin-dev
489 2016-01-14T14:23:42 *** p15 has quit IRC
490 2016-01-14T14:30:43 *** shurnormal has joined #bitcoin-dev
491 2016-01-14T14:31:03 *** shaul has joined #bitcoin-dev
492 2016-01-14T14:31:51 *** shaul has quit IRC
493 2016-01-14T14:37:35 *** agricocb has quit IRC
494 2016-01-14T14:39:18 *** Chris_Stewart_5 has quit IRC
495 2016-01-14T14:41:00 *** Belxjander has quit IRC
496 2016-01-14T14:41:16 *** laurentmt has joined #bitcoin-dev
497 2016-01-14T14:42:10 *** xegoo_ has quit IRC
498 2016-01-14T14:43:13 *** Belxjander has joined #bitcoin-dev
499 2016-01-14T14:52:19 *** c-cex-yuriy has joined #bitcoin-dev
500 2016-01-14T14:52:19 *** Chris_Stewart_5 has joined #bitcoin-dev
501 2016-01-14T14:52:46 *** DerpUnion has joined #bitcoin-dev
502 2016-01-14T14:59:22 <dhill> PSA, openssh users -> https://twitter.com/marver/status/687643518861471745
503 2016-01-14T14:59:31 <dhill> UseRoaming no in your ssh_config
504 2016-01-14T15:00:53 *** laurentmt has quit IRC
505 2016-01-14T15:08:04 *** rael_wiki has joined #bitcoin-dev
506 2016-01-14T15:10:59 *** AtnevRed has joined #bitcoin-dev
507 2016-01-14T15:13:40 *** SynBTC has quit IRC
508 2016-01-14T15:15:48 *** AtnevRed has quit IRC
509 2016-01-14T15:16:06 *** binaryFateCloud has quit IRC
510 2016-01-14T15:17:39 *** kgk has joined #bitcoin-dev
511 2016-01-14T15:18:33 *** binaryFateCloud has joined #bitcoin-dev
512 2016-01-14T15:21:32 *** SeXploit has joined #bitcoin-dev
513 2016-01-14T15:21:58 *** Sporklin2 is now known as Sporklin
514 2016-01-14T15:22:35 *** kgk has quit IRC
515 2016-01-14T15:27:48 *** n0n0__ has joined #bitcoin-dev
516 2016-01-14T15:27:50 *** rnvk has quit IRC
517 2016-01-14T15:29:59 *** rawdr has quit IRC
518 2016-01-14T15:30:37 *** chmod755 has joined #bitcoin-dev
519 2016-01-14T15:31:12 *** n0n0_ has quit IRC
520 2016-01-14T15:33:57 *** agricocb has joined #bitcoin-dev
521 2016-01-14T15:59:38 *** mnk has joined #bitcoin-dev
522 2016-01-14T16:00:25 *** jarkinox has joined #bitcoin-dev
523 2016-01-14T16:00:54 *** melik has joined #bitcoin-dev
524 2016-01-14T16:01:29 *** DougieBot5000 has joined #bitcoin-dev
525 2016-01-14T16:04:44 *** jtimon has joined #bitcoin-dev
526 2016-01-14T16:05:26 *** melik has quit IRC
527 2016-01-14T16:05:49 *** tantalum has joined #bitcoin-dev
528 2016-01-14T16:10:07 *** jarkinox has quit IRC
529 2016-01-14T16:18:12 *** GAit has quit IRC
530 2016-01-14T16:18:17 *** ceejep has joined #bitcoin-dev
531 2016-01-14T16:18:58 *** laurentmt has joined #bitcoin-dev
532 2016-01-14T16:19:01 *** kgk has joined #bitcoin-dev
533 2016-01-14T16:23:27 *** laurentmt has quit IRC
534 2016-01-14T16:23:29 *** kgk has quit IRC
535 2016-01-14T16:24:02 *** tjader has quit IRC
536 2016-01-14T16:27:11 *** ceejep has quit IRC
537 2016-01-14T16:27:23 *** owowo has quit IRC
538 2016-01-14T16:28:49 *** tjader has joined #bitcoin-dev
539 2016-01-14T16:29:42 *** pixelated_ has quit IRC
540 2016-01-14T16:30:38 *** rawdr has joined #bitcoin-dev
541 2016-01-14T16:31:37 *** Burrito has joined #bitcoin-dev
542 2016-01-14T16:32:35 *** ThomasV has quit IRC
543 2016-01-14T16:36:37 *** CheckDavid has joined #bitcoin-dev
544 2016-01-14T16:37:17 <Luke-Jr> http://www.mail-archive.com/misc@openbsd.org/msg144351.html
545 2016-01-14T16:37:49 *** ceejep has joined #bitcoin-dev
546 2016-01-14T16:38:26 *** ceejep has quit IRC
547 2016-01-14T16:40:42 *** ceejep has joined #bitcoin-dev
548 2016-01-14T16:41:40 *** owowo has joined #bitcoin-dev
549 2016-01-14T16:45:48 *** ThomasV has joined #bitcoin-dev
550 2016-01-14T16:46:47 *** ceejep has quit IRC
551 2016-01-14T16:47:23 *** ceejep has joined #bitcoin-dev
552 2016-01-14T16:50:07 *** easye has quit IRC
553 2016-01-14T16:50:21 *** ceejep has quit IRC
554 2016-01-14T16:50:37 *** ceejep has joined #bitcoin-dev
555 2016-01-14T16:50:54 *** Clown- has joined #bitcoin-dev
556 2016-01-14T16:50:54 *** Clown- has joined #bitcoin-dev
557 2016-01-14T16:50:55 *** |Clown| is now known as Guest99058
558 2016-01-14T16:50:55 *** Clown- is now known as |Clown|
559 2016-01-14T16:53:02 *** MoALTz has quit IRC
560 2016-01-14T16:54:18 *** ceejep has quit IRC
561 2016-01-14T16:54:32 *** DerpUnion has quit IRC
562 2016-01-14T17:01:41 *** IanT_ has joined #bitcoin-dev
563 2016-01-14T17:04:47 *** bitcoin-dev375 has joined #bitcoin-dev
564 2016-01-14T17:09:00 *** BashCo has quit IRC
565 2016-01-14T17:11:45 *** AtnevRed has joined #bitcoin-dev
566 2016-01-14T17:12:52 *** ryitpm has quit IRC
567 2016-01-14T17:14:26 *** Belxjander has quit IRC
568 2016-01-14T17:15:11 *** ryitpm has joined #bitcoin-dev
569 2016-01-14T17:16:03 *** rduejbvgu has joined #bitcoin-dev
570 2016-01-14T17:16:36 *** GAit has joined #bitcoin-dev
571 2016-01-14T17:16:50 *** AtnevRed has quit IRC
572 2016-01-14T17:18:20 *** zookolaptop has joined #bitcoin-dev
573 2016-01-14T17:19:08 *** MoALTz has joined #bitcoin-dev
574 2016-01-14T17:19:19 *** janko33 has joined #bitcoin-dev
575 2016-01-14T17:19:24 *** hsdje4b has quit IRC
576 2016-01-14T17:20:16 *** zookolaptop has quit IRC
577 2016-01-14T17:20:36 *** G1lius has quit IRC
578 2016-01-14T17:22:35 *** zookolaptop has joined #bitcoin-dev
579 2016-01-14T17:23:03 *** Belxjander has joined #bitcoin-dev
580 2016-01-14T17:23:03 *** shurnormal has quit IRC
581 2016-01-14T17:23:41 *** zookolaptop is now known as zooko
582 2016-01-14T17:23:46 *** jtimon has quit IRC
583 2016-01-14T17:23:51 *** gavinandresen has quit IRC
584 2016-01-14T17:24:26 *** IanT_ has quit IRC
585 2016-01-14T17:27:18 *** zooko` has joined #bitcoin-dev
586 2016-01-14T17:27:31 *** zooko has quit IRC
587 2016-01-14T17:27:46 *** kadoban has joined #bitcoin-dev
588 2016-01-14T17:28:12 *** rduejbvgu has quit IRC
589 2016-01-14T17:28:22 *** zooko` is now known as zooko
590 2016-01-14T17:30:05 *** zooko has quit IRC
591 2016-01-14T17:30:35 *** supasonic has joined #bitcoin-dev
592 2016-01-14T17:31:27 *** Ahmed90 has joined #bitcoin-dev
593 2016-01-14T17:32:26 *** zooko has joined #bitcoin-dev
594 2016-01-14T17:35:10 *** gavinandresen has joined #bitcoin-dev
595 2016-01-14T17:35:19 *** bitcoin-dev375 has quit IRC
596 2016-01-14T17:38:02 *** Grouver has quit IRC
597 2016-01-14T17:38:34 *** shurnormal has joined #bitcoin-dev
598 2016-01-14T17:40:05 *** melik has joined #bitcoin-dev
599 2016-01-14T17:41:44 *** IanT_ has joined #bitcoin-dev
600 2016-01-14T17:42:50 *** blueness has joined #bitcoin-dev
601 2016-01-14T17:44:51 *** melik has quit IRC
602 2016-01-14T17:46:39 <bsm117532> I'm trying to understand this extension block/generalized soft fork discussion. Do I understand correctly that the 1MB standard bitcoin block must have an additional anyone-can-spend or an anyone-can-pay output in the coinbase, corresponding to netting out the extension block?
603 2016-01-14T17:48:05 *** adam3us has quit IRC
604 2016-01-14T17:50:03 *** moli has joined #bitcoin-dev
605 2016-01-14T17:50:09 <maaku> bsm117532: there are many ways to implement extension blocks
606 2016-01-14T17:50:38 <maaku> i'm not sure why that would be necessary
607 2016-01-14T17:51:11 <gavinandresen> hey maaku, you busy? I'm thinking about validation cost metrics today... https://gist.github.com/gavinandresen/4135d03a56e0ecd146c7
608 2016-01-14T17:51:13 <bsm117532> Ok then how to you net out the contents of the extension block?
609 2016-01-14T17:51:38 *** IanT_ has quit IRC
610 2016-01-14T17:51:46 <bsm117532> Depending on how it was implemented, it might look like coin creation to old clients (so be invalid).
611 2016-01-14T17:52:18 <maaku> gavinandresen: jonas nick would be the one to talk to ... i actually don't know his nick if he is on here
612 2016-01-14T17:52:43 <gavinandresen> maaku: thanks, I'll see if I have his email and if not ask you to connect us
613 2016-01-14T17:52:44 *** adam3us has joined #bitcoin-dev
614 2016-01-14T17:52:45 <maaku> he has a solid metric that predicts validation cost with really good accuracy, it was presented at Scaling Bitcoin HK
615 2016-01-14T17:52:55 *** tjader has quit IRC
616 2016-01-14T17:53:03 <jonasschnelli> nickler is his nick i guess
617 2016-01-14T17:53:16 <maaku> bsm117532: what do you mean "net out" and why do you need to do that?
618 2016-01-14T17:53:44 <maaku> bsm117532: extension block is a sidechain. you use the two-way peg to move between them
619 2016-01-14T17:53:49 <gavinandresen> to save me looking at the code... is the segwit soft fork going to use accurate sigop counting or the inaccurate old method?
620 2016-01-14T17:53:53 *** t7 has joined #bitcoin-dev
621 2016-01-14T17:53:57 <bsm117532> maaku: The sum of all transactions in the extension block have to go somewhere, as seen by old clients...
622 2016-01-14T17:54:07 <maaku> bsm117532: nope, they don't
623 2016-01-14T17:54:17 <bsm117532> Ok, why not?
624 2016-01-14T17:54:34 <maaku> why would they? old clients don't see the extension block, they don't care at all what happens there
625 2016-01-14T17:55:02 <bsm117532> So funds that got transferred in an extension block would always have to stay in the extension block?
626 2016-01-14T17:56:07 *** gielbier has joined #bitcoin-dev
627 2016-01-14T17:56:10 <instagibbs> "nickler" is his irc nick but he aint on
628 2016-01-14T17:56:19 <instagibbs> oh wait, yes he is
629 2016-01-14T17:56:26 *** bendavenport has joined #bitcoin-dev
630 2016-01-14T17:56:36 *** gielbier has quit IRC
631 2016-01-14T17:56:36 *** gielbier has joined #bitcoin-dev
632 2016-01-14T17:57:10 <maaku> bsm117532: same as a sidechain (which an extension block is) -- btc is parked in an output of a specific form when it moves into an extension block
633 2016-01-14T17:57:11 *** BlueMatt has joined #bitcoin-dev
634 2016-01-14T17:57:16 <jonasschnelli> gavinandresen: https://github.com/sipa/bitcoin/commit/0f9efb009ac84298f57d51ee2283f2c6bdc9b451
635 2016-01-14T17:57:30 <maaku> when you move funds out, you claim one or more of these parked outputs
636 2016-01-14T17:57:37 *** jtimon has joined #bitcoin-dev
637 2016-01-14T17:57:42 <maaku> no need to involve coinbase or miners
638 2016-01-14T17:58:56 *** tjader has joined #bitcoin-dev
639 2016-01-14T17:58:59 <bsm117532> If the miners are not involved then this is a lot of new logic in the side of wallets, no?
640 2016-01-14T17:59:09 <maaku> i don't follow
641 2016-01-14T17:59:11 <bsm117532> OTOH couldn't miners "hide" some transactions in this manner?
642 2016-01-14T17:59:24 <gavinandresen> jonasschnelli: thanks... that's using the kinda-sort-accurate p2sh counting method, not the absolutely-accurate method I implemented for BIP101 and would be used with a validation cost metric.
643 2016-01-14T18:00:06 *** IanT_ has joined #bitcoin-dev
644 2016-01-14T18:00:23 <bsm117532> maaku: Who is "you" in your above sentence? It's either the miner or the user and his wallet, crafting this kind of tx.
645 2016-01-14T18:00:32 <jonasschnelli> gavinandresen: open a PR on sipas segwith2 branch: https://github.com/sipa/bitcoin/pulls :-)
646 2016-01-14T18:00:38 <instagibbs> gavinandresen, nickler and I used your branch for the talk, with a bunch of stuff tacked on
647 2016-01-14T18:00:48 *** kalz has quit IRC
648 2016-01-14T18:01:47 <maaku> bsm117532: yes, using the extension block at all (not just moving funds) requires wallet upgrades
649 2016-01-14T18:01:50 <gavinandresen> jonasschnelli: just thinking through whether or not it would matter in the future-- not worth the extra complexity if it won't
650 2016-01-14T18:02:04 *** blackwraith has quit IRC
651 2016-01-14T18:02:20 <maaku> bsm117532: i really don't understand what you are trying to do involving a miner, or really what miners have to do with anything here
652 2016-01-14T18:02:22 <jonasschnelli> Agreed. To bad sipa is not here.
653 2016-01-14T18:02:58 <gavinandresen> If a validation metric dynamic limit would have to be done as a hard fork, then I don't think it matters-- the counting rule can change willy-nilly.
654 2016-01-14T18:03:02 <maaku> gavinandresen: It is my intention to propose replacing the cost accounting sipa wrote with nickler's cost metric
655 2016-01-14T18:03:41 <maaku> i should have mentioned though that instagibbs knows quite a bit about this as well
656 2016-01-14T18:03:44 <gavinandresen> maaku: before the segwit soft fork or after ?
657 2016-01-14T18:03:52 <bsm117532> Not trying to "do" anything, just trying to understand how it would work. Miners are creating these new blocks so there must be some kind of rules as to their structure.
658 2016-01-14T18:03:57 <instagibbs> https://github.com/instagibbs/bitcoin/tree/rt
659 2016-01-14T18:04:00 <maaku> he and nickler organized the HK talk regarding this
660 2016-01-14T18:04:13 <maaku> gavinandresen: before
661 2016-01-14T18:04:38 <gavinandresen> maaku: awesome
662 2016-01-14T18:04:58 <maaku> gavinandresen: no idea if I can get others to agree though :P
663 2016-01-14T18:05:00 <bsm117532> What I'm actually noodling about is making the beads in a braid be actual bitcoin blocks, and soft-forking it in this way. The beads in the braid become "extension blocks" in exactly the same way.
664 2016-01-14T18:05:02 <gavinandresen> I won't bother sipa about the vague statement in the segwit spec about sigop counting :)
665 2016-01-14T18:06:13 <maaku> bsm117532: it's easiest to understand extension blocks as sidechains -- read the sidechains whitepaper if you need to know how those work
666 2016-01-14T18:06:47 <bsm117532> I'll read it again. That's not the only way to do it though, right?
667 2016-01-14T18:06:47 <maaku> the extension block is a sidechain exactly like bitcoin in every way, and the sidechain peg between the two is consensus-enforced (full nodes watch both blocks)
668 2016-01-14T18:06:48 *** rael_wiki has quit IRC
669 2016-01-14T18:07:13 <maaku> bsm117532: sure there's an infinite number of ways to do it, but that's certainly the reference way
670 2016-01-14T18:07:27 *** IanT_ has quit IRC
671 2016-01-14T18:07:28 *** brg444 has joined #bitcoin-dev
672 2016-01-14T18:07:42 *** priidu has joined #bitcoin-dev
673 2016-01-14T18:07:55 <bsm117532> Ok. At first I didn't like this idea at all but I'm coming around. It's certainly better than a hard fork.
674 2016-01-14T18:08:48 <BlueMatt> bsm117532: eww
675 2016-01-14T18:08:57 <BlueMatt> bsm117532: its listed under the "risks" section in the sidechains whitepaper for a reason
676 2016-01-14T18:09:26 <bsm117532> Do the wallet modifications have to diddle with whether their tx's appear in extension blocks, utxo's were in extension blocks, etc? Or is as simple as wallets broadcasting a new tx version number?
677 2016-01-14T18:09:46 <BlueMatt> the first one
678 2016-01-14T18:09:55 <bsm117532> Ok, then yuck.
679 2016-01-14T18:10:05 <bsm117532> That's why I was thinking about miners doing it.
680 2016-01-14T18:10:08 <BlueMatt> and a bunch of logic for moving your coins out of the extension block to pay someone who hasnt "opted into this blocksize increase"
681 2016-01-14T18:10:13 <BlueMatt> it really is not a softfork
682 2016-01-14T18:10:26 <BlueMatt> i mean is, but the way it works it is really, really not
683 2016-01-14T18:10:54 <maaku> it really is gross
684 2016-01-14T18:11:10 <bsm117532> But if miners put things into extension blocks, without cooperation of wallets... it fucks up SPV, no?
685 2016-01-14T18:11:15 <maaku> also, it's a tiny tiny itsy bitsy step from there to evil fork
686 2016-01-14T18:11:48 <BlueMatt> bsm117532: if you do that you'll fuck up any number of things
687 2016-01-14T18:12:14 <BlueMatt> bsm117532: one other issue is that the decision about whether a transaction can be in the "other block" needs to be picked by the receiver
688 2016-01-14T18:12:15 <BlueMatt> not the sender
689 2016-01-14T18:12:34 <bsm117532> Well, old nodes have a divergent utxo set.
690 2016-01-14T18:12:38 <bsm117532> BlueMatt: ah I see...
691 2016-01-14T18:12:56 *** ThomasV has quit IRC
692 2016-01-14T18:13:01 <maaku> bsm117532: you can't let the utxo set diverge
693 2016-01-14T18:13:11 <maaku> that's definately a failure mode
694 2016-01-14T18:13:23 <bsm117532> That's why I rejected the idea when I first heard it...
695 2016-01-14T18:13:41 <maaku> right ok, and that's the reason for the sidechain mechanism
696 2016-01-14T18:13:58 <maaku> the classic blocks and the extension blocks have different utxo sets
697 2016-01-14T18:14:12 <bsm117532> Ok I think I understand better, thanks. Will look over the sidechain paper again. But I think I might just omit the topic from the braids paper.
698 2016-01-14T18:17:20 *** brson has joined #bitcoin-dev
699 2016-01-14T18:17:46 *** bitcoin-dev765 has joined #bitcoin-dev
700 2016-01-14T18:21:54 *** kgk has joined #bitcoin-dev
701 2016-01-14T18:21:55 *** bitcoin-dev765 has quit IRC
702 2016-01-14T18:26:23 *** kgk has quit IRC
703 2016-01-14T18:27:18 *** stevenroose_ has joined #bitcoin-dev
704 2016-01-14T18:28:00 *** stevenroose has quit IRC
705 2016-01-14T18:28:04 *** stevenroose_ is now known as stevenroose
706 2016-01-14T18:28:14 *** stevenroose|BNC has joined #bitcoin-dev
707 2016-01-14T18:28:55 *** rael_wiki has joined #bitcoin-dev
708 2016-01-14T18:39:21 *** CheckDavid has quit IRC
709 2016-01-14T18:40:54 *** melik has joined #bitcoin-dev
710 2016-01-14T18:41:29 *** rael_wiki has quit IRC
711 2016-01-14T18:42:24 *** robink_ has quit IRC
712 2016-01-14T18:42:56 *** robink_ has joined #bitcoin-dev
713 2016-01-14T18:45:05 *** Grouver has joined #bitcoin-dev
714 2016-01-14T18:45:15 *** melik has quit IRC
715 2016-01-14T18:46:41 *** Belxjander has quit IRC
716 2016-01-14T18:47:31 *** mrkent has joined #bitcoin-dev
717 2016-01-14T18:48:10 *** Belxjander has joined #bitcoin-dev
718 2016-01-14T18:49:50 *** robink_ is now known as robink
719 2016-01-14T18:57:37 *** meLon has quit IRC
720 2016-01-14T18:57:58 *** bitcoin-dev068 has joined #bitcoin-dev
721 2016-01-14T18:59:03 *** owowo has quit IRC
722 2016-01-14T18:59:51 <wumpus> meeting?
723 2016-01-14T18:59:53 *** achow101 has joined #bitcoin-dev
724 2016-01-14T18:59:58 <btcdrak> wumpus ack
725 2016-01-14T19:00:05 <wumpus> #startmeeting
726 2016-01-14T19:00:05 <lightningbot`> Meeting started Thu Jan 14 19:00:05 2016 UTC. The chair is wumpus. Information about MeetBot at http://wiki.debian.org/MeetBot.
727 2016-01-14T19:00:05 <lightningbot`> Useful Commands: #action #agreed #help #info #idea #link #topic.
728 2016-01-14T19:00:11 <kanzure> can we get some links to the segwit bips?
729 2016-01-14T19:00:11 *** rnvk has joined #bitcoin-dev
730 2016-01-14T19:00:23 <wumpus> where?
731 2016-01-14T19:00:57 <kanzure> ah okay, found them.
732 2016-01-14T19:01:00 <wumpus> any topics?
733 2016-01-14T19:01:11 *** rael_wiki has joined #bitcoin-dev
734 2016-01-14T19:01:13 <kanzure> https://github.com/bitcoin/bips/blob/master/bip-0141.mediawiki https://github.com/bitcoin/bips/blob/master/bip-0142.mediawiki https://github.com/bitcoin/bips/blob/master/bip-0143.mediawiki https://github.com/bitcoin/bips/blob/master/bip-0144.mediawiki
735 2016-01-14T19:01:13 <btcdrak> kanzure: https://github.com/bitcoin/bips/blob/master/README.mediawiki
736 2016-01-14T19:01:15 *** kangx_ has joined #bitcoin-dev
737 2016-01-14T19:01:42 <jtimon> I would like to talk about consensus code encapsulation if there's time
738 2016-01-14T19:01:55 <morcos> i would like to talk about versionbits
739 2016-01-14T19:02:09 <jtimon> +1 versionbits as topic
740 2016-01-14T19:02:12 <btcdrak> ack on versionbits
741 2016-01-14T19:02:13 <wumpus> ok, let's start with versionbits
742 2016-01-14T19:02:14 <cfields> second both of those
743 2016-01-14T19:02:15 <wumpus> #topic versionbits
744 2016-01-14T19:02:24 <btcdrak> #link https://github.com/bitcoin/bitcoin/pull/6816
745 2016-01-14T19:02:24 *** MarcoFalke has joined #bitcoin-dev
746 2016-01-14T19:02:42 <morcos> ok, i'm volunteering to take over championing this as both rusty and CodeShark say they are busy on other things
747 2016-01-14T19:02:48 *** sipa has joined #bitcoin-dev
748 2016-01-14T19:02:50 <wumpus> great!
749 2016-01-14T19:02:51 <btcdrak> CodeShark updates his implementation #6816 and rebased to current master
750 2016-01-14T19:02:58 *** devrando2 has joined #bitcoin-dev
751 2016-01-14T19:03:01 <btcdrak> *updated
752 2016-01-14T19:03:04 <morcos> btcdrak: i don't know if i'm going to use his implementation or not
753 2016-01-14T19:03:15 <morcos> i'd like to spend some time reviewing what rusty did first and then decide
754 2016-01-14T19:03:15 <btcdrak> morcos: sure just a data point.
755 2016-01-14T19:03:26 <morcos> so lets not ask people to review yetg
756 2016-01-14T19:03:38 <btcdrak> #link https://github.com/rustyrussell/bitcoin/compare/bip-9-versionbits
757 2016-01-14T19:03:40 <morcos> but the general point i wanted to make
758 2016-01-14T19:03:52 *** owowo has joined #bitcoin-dev
759 2016-01-14T19:03:53 <jtimon> I had some feedback for the "API" for both CodeShark's and rusty's implementation
760 2016-01-14T19:04:10 <morcos> is i feel fairly strongly about trying to implement segwit in a way that will be compatible with other implementations possibly trying to do something else at the same time
761 2016-01-14T19:04:23 <jtimon> IMO they we're both more complecated than needed while not flexible enough chainparams-wise
762 2016-01-14T19:04:42 <morcos> if the other implementations are not using nVersion for their signaling, then we have no problem doing whatever we want
763 2016-01-14T19:04:44 <btcdrak> morcos: I agree, versionbits BIP9 spec should have a final implementation.
764 2016-01-14T19:04:59 <morcos> however if they are, then not conflicting will be important so users of other versions can also support segwit
765 2016-01-14T19:05:06 <morcos> i'm bringing this all up
766 2016-01-14T19:05:07 <sipa> ack there
767 2016-01-14T19:05:30 <morcos> b/c if we agree with this approach, it may be necessary to front burner version bits to go along with segwit
768 2016-01-14T19:05:32 <jtimon> morcos if you are interested on early review of your "API" (the functions that are going to be called from outside) I'm happy to do so
769 2016-01-14T19:05:54 <morcos> jtimon: ok, well let me get started first
770 2016-01-14T19:06:24 <jtimon> morcos: sure, or maybe I can suggest an empty skeleton for you to consider?
771 2016-01-14T19:06:28 <morcos> anyway thats all i wanted to say, but i think its helpful to set expectations on priorities
772 2016-01-14T19:06:42 *** treehug88 has joined #bitcoin-dev
773 2016-01-14T19:07:07 <morcos> jtimon: i'm probably going to start from rusty's code or codeshark's. i think there may be time pressure to get this done quickly so i don't want to start from scratch.
774 2016-01-14T19:07:34 <Luke-Jr> (would like to see versionbits become less tied to Core's implementation if possible)
775 2016-01-14T19:07:51 <morcos> Luke-Jr: what do you mean?
776 2016-01-14T19:07:58 <jtimon> morcos: fine, I can repeat the same suggestions I had for them I guess
777 2016-01-14T19:07:59 <btcdrak> Luke-Jr: so long as it follows the BIP9 it shouldnt matter
778 2016-01-14T19:08:00 *** rawdr has quit IRC
779 2016-01-14T19:08:02 <morcos> like all that should matter is the spec?
780 2016-01-14T19:08:24 <morcos> i agree with that, but making sure we have it implemented will help make sure there aren't issues with the spec and that we also have it in time to use
781 2016-01-14T19:08:31 <Luke-Jr> morcos: well, right now it implies Core's intepreting the 4 initial bytes of the block header as a little-endian number
782 2016-01-14T19:08:39 <Luke-Jr> whereas it's proposed to deal with individual bits
783 2016-01-14T19:08:42 <morcos> i'm not going to take on the role of trying to handle how anyone else implements it
784 2016-01-14T19:08:49 <sipa> Luke-Jr: that's a detail
785 2016-01-14T19:08:50 <Luke-Jr> so it ought to just refer to the bits and bytes in order
786 2016-01-14T19:08:53 <jtimon> btcdrak: well, other things matter too (ie consensus code encapsulation)
787 2016-01-14T19:09:04 <wumpus> morcos: right, you shouldn't
788 2016-01-14T19:09:06 <Luke-Jr> sipa: yes, a minor one, but one I'd prefer to see cleaned up :p
789 2016-01-14T19:09:14 <sipa> i think this discussion is going into details that can be discussed on a PR
790 2016-01-14T19:09:22 <wumpus> morcos: don't let too many details and other people's minor concerns distract you
791 2016-01-14T19:09:31 <Luke-Jr> k, drop that topic for now
792 2016-01-14T19:09:43 <morcos> wumpus: ok. yes. we can move on from the whole topic now i think.
793 2016-01-14T19:09:49 <btcdrak> topic suggestion, status report on segwit
794 2016-01-14T19:10:03 <wumpus> #topic status of segwit
795 2016-01-14T19:10:04 <btcdrak> topic suggestion, 0.12 status
796 2016-01-14T19:10:10 <sipa> segnet3 coming up soon
797 2016-01-14T19:10:11 *** rnvk has quit IRC
798 2016-01-14T19:10:21 <Luke-Jr> we've dropped trying to do merge-mining in the same softfork
799 2016-01-14T19:10:27 <sipa> indeed
800 2016-01-14T19:10:44 <sipa> sorry, i'm packing and about to travel, little time now
801 2016-01-14T19:11:18 <wumpus> ok, no problem, let's leave the topic for next week
802 2016-01-14T19:11:28 <btcdrak> let me link bips for the logs
803 2016-01-14T19:11:31 <btcdrak> #link https://github.com/bitcoin/bips/blob/master/bip-0141.mediawiki
804 2016-01-14T19:11:32 <Luke-Jr> also, I assigned the BIP drafts to 141-144 to make 14x a "anti-malleability" range
805 2016-01-14T19:11:38 <btcdrak> #link https://github.com/bitcoin/bips/blob/master/bip-0142.mediawiki
806 2016-01-14T19:11:43 <btcdrak> #link https://github.com/bitcoin/bips/blob/master/bip-0143.mediawiki
807 2016-01-14T19:11:48 <btcdrak> #link https://github.com/bitcoin/bips/blob/master/bip-0144.mediawiki
808 2016-01-14T19:12:13 <Luke-Jr> or maybe 14x will just become segwit if it goes active as expected
809 2016-01-14T19:12:32 <wumpus> good to know
810 2016-01-14T19:13:05 <jtimon> 0.12 status?
811 2016-01-14T19:13:06 <wumpus> #topic 0.12 status
812 2016-01-14T19:13:19 <wumpus> I've tagged 0.12.0rc1 yesterday
813 2016-01-14T19:13:21 *** tawar has joined #bitcoin-dev
814 2016-01-14T19:13:23 <morcos> twice!
815 2016-01-14T19:13:27 *** AtnevRed has joined #bitcoin-dev
816 2016-01-14T19:13:31 <btcdrak> do it again :)
817 2016-01-14T19:13:31 <cfields> haha
818 2016-01-14T19:13:41 *** kadoban has quit IRC
819 2016-01-14T19:13:46 <Luke-Jr> https://github.com/bitcoin/bitcoin/pull/7149 needs reviews, but maybe too late for 0.12.0
820 2016-01-14T19:13:52 <wumpus> yes, twice, the first time it didn't build due to a last-minute merge, my fault
821 2016-01-14T19:13:55 *** radius_ has joined #bitcoin-dev
822 2016-01-14T19:13:59 <sdaftuar> that's ok, i blame morcos
823 2016-01-14T19:14:00 *** priidu has quit IRC
824 2016-01-14T19:14:10 <Luke-Jr> https://github.com/bitcoin/bitcoin/pull/7339 and https://github.com/bitcoin/bitcoin/pull/7340 should have been in 0.12.0, but are extremely late and possibly impractical to get in
825 2016-01-14T19:14:33 <cfields> gitian builders: i pushed sigs, but there's a small issue with attaching the sigs. see #7342 for the fix.
826 2016-01-14T19:15:10 <wumpus> cfields: does this mean can we still build rc1, or need a new rc?
827 2016-01-14T19:15:14 <Luke-Jr> mostly minor backports in https://github.com/bitcoin/bitcoin/pull/7338
828 2016-01-14T19:15:20 <wumpus> preliminary release notes:
829 2016-01-14T19:15:22 *** chmod755 has left #bitcoin-dev
830 2016-01-14T19:15:23 <wumpus> #link https://github.com/bitcoin/bitcoin/blob/0.12/doc/release-notes.md
831 2016-01-14T19:15:36 <cfields> wumpus: rc1 is fine, just fix up the descriptor locally
832 2016-01-14T19:15:50 <jonasschnelli> 0.12 release nodes needs some overhaul
833 2016-01-14T19:15:55 <cfields> we can discuss in -core-dev after the meeting
834 2016-01-14T19:16:04 <MarcoFalke> jonas, there are two pulls
835 2016-01-14T19:16:14 <jonasschnelli> wumpus: nice work on the commit list...
836 2016-01-14T19:16:15 <Luke-Jr> #7340 also exposed a possible bug that may need to be fixed, but not yet determined if it affects the bundled univalue
837 2016-01-14T19:16:18 <wumpus> cfields: well it's good to tell here so that gitian builders that are reading know what to do
838 2016-01-14T19:16:18 <btcdrak> is #7149 really a bug fix? We tagged RC, doesnt seem right to merge that
839 2016-01-14T19:16:25 *** patcon has joined #bitcoin-dev
840 2016-01-14T19:16:34 <wumpus> cfields: but indeed, can just fix up the descriptor when attaching the signature - building itself is unaffected
841 2016-01-14T19:16:36 <Luke-Jr> btcdrak: yes, it fixes bugs..
842 2016-01-14T19:16:45 <cfields> ok...
843 2016-01-14T19:17:06 <Luke-Jr> I mean, I could split the tests out if that's a concern, but IMO tests never hurt
844 2016-01-14T19:17:06 <wumpus> btcdrak: I agree we shouldn't merge too much between RCs, only if it is a critical bug fix
845 2016-01-14T19:17:32 *** rnvk has joined #bitcoin-dev
846 2016-01-14T19:17:35 <wumpus> and I don't think #7142 is mature enough to merge
847 2016-01-14T19:17:35 *** AtnevRed has quit IRC
848 2016-01-14T19:17:55 <wumpus> so let's leave it for 0.12.1
849 2016-01-14T19:18:03 <Luke-Jr> 7142? Travis stuff?
850 2016-01-14T19:18:12 <cfields> gitian builders: 0.12rc1's osx sig attach descriptor fails due to a missing package (that's not actually needed). Rather than using the in-tree descriptor, use the one from #7342. This is fixed for rc2.
851 2016-01-14T19:18:22 <wumpus> Luke-Jr: eh? I'm confused, sorry
852 2016-01-14T19:18:45 <morcos> wumpus: you said 7142 instead of 7149. but leave for discussion in 0.12.1 to be clear.
853 2016-01-14T19:19:15 <MarcoFalke> 7142 can be closed
854 2016-01-14T19:19:29 <MarcoFalke> The nightly builds already cover it
855 2016-01-14T19:19:32 <wumpus> morcos: yes, #7149 I meant, thanks
856 2016-01-14T19:19:38 <wumpus> MarcoFalke: awesome
857 2016-01-14T19:19:46 <wumpus> #action close #7149
858 2016-01-14T19:19:53 <jonasschnelli> We should add "fundrawtransaction" and "setban" to the release notes.
859 2016-01-14T19:20:22 <wumpus> I agree those should be documented - though the release notes are really long already
860 2016-01-14T19:20:23 <Luke-Jr> wumpus: close 7142, not 7149 >_<
861 2016-01-14T19:20:23 <jtimon> wumpus: close 7142, 7149 or both?
862 2016-01-14T19:20:40 <wumpus> #action close #7142 not #7149
863 2016-01-14T19:21:06 <wumpus> at some point it makes more sense to document those commands somewhere else, e.g. in the bitcoin.org developer documentation
864 2016-01-14T19:21:10 <wumpus> then link to itin the release notes
865 2016-01-14T19:21:41 <jonasschnelli> wumpus: Yes. Agreed.
866 2016-01-14T19:21:42 <Luke-Jr> ACK delaying 7149 until 0.12.1, since it mostly fixes things broken in all prior releases anyway and miners can/should just use LJR instead of Core
867 2016-01-14T19:21:53 <Luke-Jr> should we document the regressions in release-notes though? I can write something up.
868 2016-01-14T19:21:53 <jonasschnelli> :/
869 2016-01-14T19:22:15 *** tjader has quit IRC
870 2016-01-14T19:22:19 <btcdrak> wumpus: The release notes should mention notable features regardless imo
871 2016-01-14T19:22:37 <wumpus> btcdrak: they are mentioned in the list of pulls at least
872 2016-01-14T19:23:05 <wumpus> btcdrak: shortly mentioning them with a lnk to more documentation also makes sense, but I think the release notes have too much details, they're not meant as a substitute for documentation
873 2016-01-14T19:23:30 <Luke-Jr> #action #7149 delayed to 0.12.1 due to lack of reviews; document regressions it fixes for 0.12.0 in the meantime
874 2016-01-14T19:24:11 <morcos> wumpus: i realized maybe the release notes don't mention the mining code changes
875 2016-01-14T19:24:15 <wumpus> in any case, feel free to improve the release notes, just submit a pull, but make sure you do it on top of https://github.com/bitcoin/bitcoin/pull/7336
876 2016-01-14T19:24:24 <morcos> i'm not sure how much detail you want to go into
877 2016-01-14T19:24:48 <morcos> but it seems reasonable to me to mention the speed increase , lack of blowup on large mempools.
878 2016-01-14T19:25:00 <morcos> but it also might be important to document the new security assumption
879 2016-01-14T19:25:02 <btcdrak> morcos: it's a notable feature IMO
880 2016-01-14T19:25:08 <MarcoFalke> wumpus, you could just merge 7336
881 2016-01-14T19:25:10 <wumpus> just mention that it changed, what is the old behavior, what is the new behavior, but not too much technical details, it would be great to document those but not in the release notes :)
882 2016-01-14T19:25:12 <morcos> that mempool consistency is now used to construct blocks
883 2016-01-14T19:25:35 <morcos> so maybe that last part is too much detail?
884 2016-01-14T19:25:37 *** JeromeLegoupil has joined #bitcoin-dev
885 2016-01-14T19:25:45 <wumpus> no, that sounds fine
886 2016-01-14T19:25:54 <wumpus> MarcoFalke: I'm going to
887 2016-01-14T19:26:31 <MarcoFalke> #action merge #7336
888 2016-01-14T19:27:22 <wumpus> ok, more topics?
889 2016-01-14T19:27:34 <wumpus> #topic consensus code encapsulation
890 2016-01-14T19:27:44 <wumpus> @jtimon
891 2016-01-14T19:27:58 <MarcoFalke> any discussion needed in regard to the website?
892 2016-01-14T19:28:13 <jtimon> ok, so right now I only 4 libconsensus related opened PRs #7091 #7287 #7311 and #7310
893 2016-01-14T19:28:48 <jtimon> I really think that any "big picture branch" will be highly unreadable without merging something like #7310 first
894 2016-01-14T19:29:01 <wumpus> do we have an idea for an API yet for the extended libconsensus?
895 2016-01-14T19:29:03 *** tjader has joined #bitcoin-dev
896 2016-01-14T19:29:15 <btcdrak> jtimon: a big picture branch will let people see your overall vision.
897 2016-01-14T19:29:19 <jtimon> you mean libconsensus + storage ?
898 2016-01-14T19:29:34 <morcos> wumpus: i'm happy to help review an encapsulation type pull for correctness, but i'd prefer to see concept ACK from you/sipa first, b/c i don't trust my own judgement on what makes sense.
899 2016-01-14T19:30:01 <jtimon> I'm redoing things in https://github.com/jtimon/bitcoin/commits/libconsensus-f2 that's the longest "big picture" branch I have
900 2016-01-14T19:30:02 <wumpus> I'm not entirely sure what is the enxt step, but I think it's importnat to know what we want to offer in guiding in how to refactor things
901 2016-01-14T19:30:14 <Diablo-D3> ssh client bug: http://undeadly.org/cgi?action=article&sid=20160114142733
902 2016-01-14T19:30:26 <wumpus> Diablo-D3: offtopic?
903 2016-01-14T19:30:36 <jtimon> well, I'll create another one libconsensus-f3 on top of that with a candidate complete C API
904 2016-01-14T19:30:39 <jonasschnelli> jtimon: did you once thought about a bit-picture in a written form .MD, google doc?
905 2016-01-14T19:30:58 *** rawdr has joined #bitcoin-dev
906 2016-01-14T19:31:13 <jtimon> jonasschnelli: I still plan to do the "document with words and pictures" that I was asked to do
907 2016-01-14T19:31:28 <jtimon> but I want to link to code too
908 2016-01-14T19:31:37 <wumpus> yes, makes sense to have both
909 2016-01-14T19:31:54 <jonasschnelli> Agree. Big pic in word and image form, if one needs more, he can check the code.
910 2016-01-14T19:31:59 <btcdrak> The idea of a big picture branch is to let jtimon make the changes he would like ideally without having to think about doing it in stages. That will give everyone else an idea of the big picture implications
911 2016-01-14T19:32:23 <jtimon> and some of the open PRs would really make the document more readable (ie the pictures are basically before-an-after UML diagrams)
912 2016-01-14T19:32:47 <btcdrak> otherwise it seems like we get tons of small PRs and no-one can see the wider picture and thus it is more difficult for review
913 2016-01-14T19:33:08 <jtimon> what about these stages (what I plan to put in the doc)?
914 2016-01-14T19:33:25 *** bitcoin-dev068 has quit IRC
915 2016-01-14T19:34:25 <jtimon> 1) have something to call libconsensus: expose verifyScript. Done
916 2016-01-14T19:34:25 <jtimon> 2) put the rest of the consensus critical code, excluding storage in the same building package (see #7091 )
917 2016-01-14T19:34:30 <droark> jtimon: If you need any assistance with the doc, ping me. I may need a little assistance but I like to help with documentation.
918 2016-01-14T19:34:54 <jtimon> 3) discuss a complete C API for libconsensus
919 2016-01-14T19:34:54 <jtimon> 4) separate it into a sub-repository
920 2016-01-14T19:35:43 <jtimon> droark: thanks I'll note that, but usually I have the most problems getting review
921 2016-01-14T19:35:51 <wumpus> sounds good to me, although I like starting with 3 as soon as possible, I reallythink a (preliminary) API would be good to guide this
922 2016-01-14T19:36:06 *** rusty has joined #bitcoin-dev
923 2016-01-14T19:36:27 <wumpus> in any case, it is mostly orthogonal to the moving and refactoring
924 2016-01-14T19:36:49 <droark> jtimon: Gotcha. I'll look at some of the PRs a little later today.
925 2016-01-14T19:36:50 <jtimon> wumpus: sure, that's why I'm not working on master, we can start discussing phase 3 as soon as we have a phase 2 "prototype" it doesn't need to be fully reviewed or "final"
926 2016-01-14T19:36:59 <wumpus> but it gives something more concrete to talk about than code moves
927 2016-01-14T19:37:31 <wumpus> jtimon: right
928 2016-01-14T19:38:05 <jtimon> well, it's not completely orthogonal, you can't build the full C API in the libconsensus package before you have eliminated the unwanted dependencies, etc. But yeah, as for discussion they are mostly orthogonal
929 2016-01-14T19:38:09 *** SeXploit has quit IRC
930 2016-01-14T19:38:23 <wumpus> ok, suggestion for next topic?
931 2016-01-14T19:38:40 <jtimon> phase 4 (basically moving files to the consensus directory) is also orthogonal, can be done in parallel and practically by anyone
932 2016-01-14T19:38:54 <jtimon> action review #7091 #7287 #7311 and #7310 ?
933 2016-01-14T19:38:54 <btcdrak> are we ready to talk about the locktime PRs again?
934 2016-01-14T19:39:14 <wumpus> #topic locktime PRs
935 2016-01-14T19:39:14 <btcdrak> suggested topic bip68
936 2016-01-14T19:39:55 <wumpus> jtimon: yes I agree it's not completely orthogonal, but it's something that can be discussed seaprately, and we can involve people that are planning to use the interface
937 2016-01-14T19:40:49 <wumpus> btcdrak: anything specific to say about locktime PRs?
938 2016-01-14T19:40:56 <btcdrak> We need to make a choice between 6312 and 7184
939 2016-01-14T19:41:06 <jtimon> wumpus agree, and they usually won't care about the refactorings or the rest of bitcoin core, they usually will ask "what interface? what files?"
940 2016-01-14T19:41:19 <jtimon> wumpus: no action on #7091 #7287 #7311 and #7310 then?
941 2016-01-14T19:41:40 <btcdrak> CNB optimisations were not compatible with 6312 which is how 7184 resulted.
942 2016-01-14T19:41:48 <wumpus> jtimon: you requested people to review them, that's fiine
943 2016-01-14T19:42:13 <jtimon> ok, sorry for insisting, next topic
944 2016-01-14T19:42:16 <morcos> sipa was going to look at #7184 but he got busy on some side project he's working on. in seriousness though, i think 7184 is a better design for BIP 68 than 6312
945 2016-01-14T19:42:20 <btcdrak> I'm leaning towards closing 6312 for 7184
946 2016-01-14T19:42:49 <morcos> i don't think we need code review of BIP 68 now because i think segwit and probably versionbits take precedence
947 2016-01-14T19:42:53 <btcdrak> "side project" being segwit :-)
948 2016-01-14T19:42:53 <wumpus> looks like there is some agreement to focuso n 7184 instead of 6312 then
949 2016-01-14T19:43:02 <morcos> but it would be nice to concentrate on one approach, and update the BIP to match it
950 2016-01-14T19:43:18 <jtimon> well bip68 is certainly more reviewed than versionbits I think
951 2016-01-14T19:43:40 <morcos> jtimon: yes for sure. but in terms of priorities to get released.
952 2016-01-14T19:43:57 <btcdrak> morcos: bip68 spec is ewll reviewed, obviously we'd need to update the reference implementation in the BIP to 7184
953 2016-01-14T19:44:11 <morcos> its possible we'll have BIP 68 and 112/113 ready to go by soft fork
954 2016-01-14T19:44:26 <btcdrak> morcos: well until you have a versionbits proposal, we have time to look at 7184
955 2016-01-14T19:44:27 <morcos> but we shouldn't be holding up segwit for them
956 2016-01-14T19:44:52 <jtimon> my previous opposition against redoing many parts of 6312 in 7184 was that it was going to slow things down, so if focusing review on 7184 will make things faster, I'm fine with it
957 2016-01-14T19:45:02 *** SeXploit has joined #bitcoin-dev
958 2016-01-14T19:45:04 <btcdrak> morcos: BIP113 should be deployed with the next softfork regardless.
959 2016-01-14T19:45:09 <wumpus> ok
960 2016-01-14T19:45:19 <morcos> ok, so lets close 6312 and move to 7184
961 2016-01-14T19:45:25 <wumpus> #action clsoe #6312 in favor of #7174
962 2016-01-14T19:45:26 <btcdrak> ack
963 2016-01-14T19:45:27 <morcos> if there is objection later , we can always reopen
964 2016-01-14T19:45:31 <wumpus> right
965 2016-01-14T19:45:37 <morcos> 7184 wumpus please
966 2016-01-14T19:45:49 <morcos> and don't merge any consensus code changes today
967 2016-01-14T19:45:51 <btcdrak> wumpus has shaky hands today
968 2016-01-14T19:45:55 <jtimon> but nack on "delaying bip68 further because there's higher priorities"
969 2016-01-14T19:46:29 <btcdrak> btw, rusty tested 7184 in combination with 6564 and tACKd both
970 2016-01-14T19:47:10 *** brg444 has quit IRC
971 2016-01-14T19:47:15 <btcdrak> aj also has some python demos that test HLTC scripts using CSV, we should pester him for those
972 2016-01-14T19:47:51 <btcdrak> *HTLC,
973 2016-01-14T19:47:55 <jtimon> I just slightly reviewed the diff with 6312 but didn't found anything functionally wrong
974 2016-01-14T19:48:07 *** AndroUserotff has quit IRC
975 2016-01-14T19:48:44 *** halvors has quit IRC
976 2016-01-14T19:49:59 <jtimon> so I don't see it as something far away, I think we could merge 7184 relatively soon (after all is based on 6312 which had plenty of testing and review)
977 2016-01-14T19:50:18 *** supasonic has quit IRC
978 2016-01-14T19:50:35 <btcdrak> jtimon: yes. actually the cumulative work in 7184 is impressive
979 2016-01-14T19:50:40 *** BashCo has joined #bitcoin-dev
980 2016-01-14T19:50:40 *** priidu has joined #bitcoin-dev
981 2016-01-14T19:51:26 *** GGuyZ has quit IRC
982 2016-01-14T19:51:28 <morcos> great. well when 7184 gets the acks it can be merged. but we still need code to introduce the soft fork for it anyway
983 2016-01-14T19:51:36 <morcos> i'll fix up the open nits on 7184 pronto
984 2016-01-14T19:51:48 <btcdrak> morcos: the softforking code should be a separate PR.
985 2016-01-14T19:51:55 <sdaftuar> and we should update the BIP's reference implementation
986 2016-01-14T19:52:04 <btcdrak> ok I'll do that
987 2016-01-14T19:52:09 <morcos> btcdrak: yes thats fine. do you want to update BIP. perfect.
988 2016-01-14T19:52:22 <btcdrak> yup
989 2016-01-14T19:52:26 <Diablo-D3> wumpus: /amsg
990 2016-01-14T19:53:19 <wumpus> any last topic?
991 2016-01-14T19:53:37 <btcdrak> are we haveing a 0.12 release party?
992 2016-01-14T19:53:38 <jtimon> morcos: we will worry about the softfork later, the first step of merging it as relay policy is a huge step
993 2016-01-14T19:53:51 <wumpus> otherwise I'm going to close the meeting, I'm kind of tired
994 2016-01-14T19:53:55 *** n0n0__ has quit IRC
995 2016-01-14T19:53:56 <btcdrak> ack
996 2016-01-14T19:54:10 <btcdrak> wumpus: +!
997 2016-01-14T19:54:16 <wumpus> #meetingstop
998 2016-01-14T19:54:20 <btcdrak> haha
999 2016-01-14T19:54:20 <wumpus> #stopmeeting
1000 2016-01-14T19:54:22 <MarcoFalke> #closemeeting
1001 2016-01-14T19:54:25 <btcdrak> nopw
1002 2016-01-14T19:54:26 <wumpus> #endmeeting
1003 2016-01-14T19:54:26 <lightningbot`> Meeting ended Thu Jan 14 19:54:26 2016 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)
1004 2016-01-14T19:54:26 <lightningbot`> Minutes: http://www.erisian.com.au/meetbot/bitcoin-dev/2016/bitcoin-dev.2016-01-14-19.00.html
1005 2016-01-14T19:54:26 <lightningbot`> Minutes (text): http://www.erisian.com.au/meetbot/bitcoin-dev/2016/bitcoin-dev.2016-01-14-19.00.txt
1006 2016-01-14T19:54:26 <lightningbot`> Log: http://www.erisian.com.au/meetbot/bitcoin-dev/2016/bitcoin-dev.2016-01-14-19.00.log.html
1007 2016-01-14T19:54:31 <btcdrak> \o/
1008 2016-01-14T19:54:49 *** achow101 has quit IRC
1009 2016-01-14T19:54:53 <wumpus> btcdrak: release party is for the final release, we're not there yet :p
1010 2016-01-14T19:54:58 *** n0n0__ has joined #bitcoin-dev
1011 2016-01-14T19:57:02 *** blueness has quit IRC
1012 2016-01-14T19:57:40 *** zooko` has joined #bitcoin-dev
1013 2016-01-14T19:58:12 <Luke-Jr> 1.0?
1014 2016-01-14T19:59:03 <jonasschnelli> heh
1015 2016-01-14T19:59:29 *** zooko has quit IRC
1016 2016-01-14T20:01:49 *** CheckDavid has joined #bitcoin-dev
1017 2016-01-14T20:03:50 *** blueness has joined #bitcoin-dev
1018 2016-01-14T20:08:34 <maaku> Luke-Jr: I intend to champion a patch to segwit that would include merged mining
1019 2016-01-14T20:08:40 <maaku> (segwit supports it now, but could be better)
1020 2016-01-14T20:10:06 <Luke-Jr> maaku: eh, I already intend to champion a MM thing.. :p
1021 2016-01-14T20:10:50 <maaku> Luke-Jr: what did you want to get in?
1022 2016-01-14T20:10:52 <sipa> maaku: the original version i wrote included MM support, but it would be a pain to deploy
1023 2016-01-14T20:11:53 <sipa> and figuring out the best way to do would need too much bikeshedding imho
1024 2016-01-14T20:12:15 <maaku> morcos: is 7184 back-ported? that's the sole reason 6312 was done the way it was
1025 2016-01-14T20:12:34 <sipa> plus it seems there are actual benefits to separating bitcoin-consensus-critical commitments from external commitments
1026 2016-01-14T20:12:56 <Luke-Jr> sipa: disagree on that
1027 2016-01-14T20:13:09 <sipa> i know you disagree :)
1028 2016-01-14T20:13:23 *** adam3us has quit IRC
1029 2016-01-14T20:13:54 <morcos> maaku: i haven't looked into backporting it. but i dont' see off the top of my head why it would be at all difficult.
1030 2016-01-14T20:14:07 <morcos> what does it need to backport to? just 0.11 ?
1031 2016-01-14T20:14:13 <morcos> well and 0.12 obviously
1032 2016-01-14T20:14:21 <sipa> anyway, if you are willing to propose and implement another way to do it, and show that common infrastructure canneasily support it, i'm all for it
1033 2016-01-14T20:14:41 <maaku> "<sipa> plus it seems there are actual benefits to separating bitcoin-consensus-critical commitments from external commitments" <--- such as?
1034 2016-01-14T20:14:47 *** mrkent has quit IRC
1035 2016-01-14T20:14:50 <maaku> morcos: every supported version of bitcoind
1036 2016-01-14T20:15:13 *** mrkent has joined #bitcoin-dev
1037 2016-01-14T20:15:14 <morcos> maaku: what are the supported versions of bitcoind? just 0.11 ?
1038 2016-01-14T20:15:18 <morcos> well and 0.12 obviously
1039 2016-01-14T20:15:30 <sipa> maaku: forcing more bitcoin consensus related logic into mining stacks
1040 2016-01-14T20:15:55 <sipa> maaku: as it means they need to go build the witness tree, store the root, and store the branch to it in the right place
1041 2016-01-14T20:15:56 *** deadalnix has quit IRC
1042 2016-01-14T20:15:56 <morcos> sipa: are you planning on backporting segwit to 0.11?
1043 2016-01-14T20:16:05 *** deadalnix has joined #bitcoin-dev
1044 2016-01-14T20:16:23 <sipa> maaku: if you separate consensus commitments, those can just remain under control of bitcoind
1045 2016-01-14T20:17:03 *** brg444 has joined #bitcoin-dev
1046 2016-01-14T20:17:27 <sipa> there is also no efficiency benefit to combining the tree, as every consensus-enforcing full nkde needs all consensus commitments anyway; combining them into one tree would add unnecessary branches to data that will always be present anyway
1047 2016-01-14T20:17:44 <sipa> morcos: if requested
1048 2016-01-14T20:18:30 * Luke-Jr demands a backport to 0.3.19 for Deepbit
1049 2016-01-14T20:19:27 <sipa> deepbit runs 0.3.24 last i heard :p
1050 2016-01-14T20:23:31 *** kgk has joined #bitcoin-dev
1051 2016-01-14T20:26:46 *** devrando2 has quit IRC
1052 2016-01-14T20:27:02 <Luke-Jr> sipa: oops
1053 2016-01-14T20:27:55 *** kgk has quit IRC
1054 2016-01-14T20:29:42 *** GGuyZ has joined #bitcoin-dev
1055 2016-01-14T20:30:11 *** zooko` is now known as zooko
1056 2016-01-14T20:34:02 *** cryptapus_ has quit IRC
1057 2016-01-14T20:38:09 *** arowser has quit IRC
1058 2016-01-14T20:38:26 *** Guyver2 has joined #bitcoin-dev
1059 2016-01-14T20:38:30 *** tawar has quit IRC
1060 2016-01-14T20:38:32 *** zooko has quit IRC
1061 2016-01-14T20:38:36 *** arowser has joined #bitcoin-dev
1062 2016-01-14T20:39:41 *** t7_ has joined #bitcoin-dev
1063 2016-01-14T20:40:37 *** IanT_ has joined #bitcoin-dev
1064 2016-01-14T20:40:44 *** t7 has quit IRC
1065 2016-01-14T20:40:48 *** t7_ is now known as t7
1066 2016-01-14T20:41:24 *** brson has quit IRC
1067 2016-01-14T20:42:26 *** gwillen has quit IRC
1068 2016-01-14T20:43:22 *** Raccoon has quit IRC
1069 2016-01-14T20:43:54 *** brson has joined #bitcoin-dev
1070 2016-01-14T20:45:09 *** Palsson has joined #bitcoin-dev
1071 2016-01-14T20:45:17 *** IanT_ has quit IRC
1072 2016-01-14T20:48:31 *** Raccoon has joined #bitcoin-dev
1073 2016-01-14T20:48:53 *** kalz has joined #bitcoin-dev
1074 2016-01-14T20:51:17 *** gwillen has joined #bitcoin-dev
1075 2016-01-14T20:52:03 *** cute_hoor has joined #bitcoin-dev
1076 2016-01-14T20:57:11 *** Emcy has joined #bitcoin-dev
1077 2016-01-14T20:57:12 *** Emcy has joined #bitcoin-dev
1078 2016-01-14T20:58:40 *** cute_hoor has quit IRC
1079 2016-01-14T21:00:15 *** MarcoFalke has quit IRC
1080 2016-01-14T21:01:17 *** MarcoFalke has joined #bitcoin-dev
1081 2016-01-14T21:02:03 *** tawar has joined #bitcoin-dev
1082 2016-01-14T21:06:31 *** kadoban has joined #bitcoin-dev
1083 2016-01-14T21:15:41 *** adam3us has joined #bitcoin-dev
1084 2016-01-14T21:16:13 <maaku> morcos: the release notes show that bip 66 was backported to 0.9
1085 2016-01-14T21:16:54 <maaku> i would have expected 0.8
1086 2016-01-14T21:16:55 <morcos> maaku: i think 0.11 and 0.12 should be sufficient.
1087 2016-01-14T21:17:02 *** bit2017 has joined #bitcoin-dev
1088 2016-01-14T21:17:18 <maaku> morcos: we have a surprising fundamental disagreement there
1089 2016-01-14T21:17:27 *** cryptapus_ has joined #bitcoin-dev
1090 2016-01-14T21:17:28 *** cryptapus_ has joined #bitcoin-dev
1091 2016-01-14T21:17:34 <maaku> it's been an ethos of bitcoin that consensus code changes are not tied to version
1092 2016-01-14T21:17:59 <maaku> historically soft forks have been back ported to every release that could still sync the chain
1093 2016-01-14T21:18:30 <morcos> maaku: but i dont think thats a feasible goal to maintain
1094 2016-01-14T21:18:32 <maaku> maybe this explains a lot about bip 68 timeline -- #6312 was maintained the way it was explicitly because I was anticipating back-porting to 0.8
1095 2016-01-14T21:18:44 *** ThomasV has joined #bitcoin-dev
1096 2016-01-14T21:18:48 <maaku> morcos: its not a goal, it's a requirement when we don't know what mining code exists out there in the wild
1097 2016-01-14T21:18:57 <maaku> not everyone updates across major releases
1098 2016-01-14T21:19:11 <Lightsword> AFAIK all miners are on 0.11.2
1099 2016-01-14T21:19:18 <maaku> Lightsword: and you know this how?
1100 2016-01-14T21:19:44 <morcos> maaku: 6312 i think would have been harder to backport than 7184
1101 2016-01-14T21:19:52 <Lightsword> maaku, talked to most pool operators, Iâd be really surprized if anyone was on something older than 0.11.2
1102 2016-01-14T21:19:57 <morcos> certainly the easiest thing would have been to never change CheckFinalTx
1103 2016-01-14T21:20:10 <morcos> but now thats changed so the backport must include that somehow
1104 2016-01-14T21:20:31 <morcos> anyway, no point arguing, first goal master, second goal 0.12, then 0.11, then we can talk about further back
1105 2016-01-14T21:20:40 *** t7 has quit IRC
1106 2016-01-14T21:20:41 <morcos> i'd love it if you want to help
1107 2016-01-14T21:20:50 <maaku> Lightsword: we need stronger guarantees than that
1108 2016-01-14T21:20:51 <morcos> but arguing with those of us still trying to work isn't super productive
1109 2016-01-14T21:21:07 <phantomcircuit> maaku, 0.12.0 is so much faster the additional risk of running unreleased code isn't something they care about
1110 2016-01-14T21:21:49 *** BashCo has quit IRC
1111 2016-01-14T21:21:59 <maaku> morcos: "still trying to work"? morcos -- i gave up on BIP 68 because it became patently obvious that there was no way for it to get in until you had everyone one of your checkboxes ticked, so it's better for you to do that than to waste my time
1112 2016-01-14T21:22:21 <Lightsword> maaku, most patch sets are fairly minor, Iâve heard of some pools temporarially being a version behind but they would always upgrade to latest for soft fork activation
1113 2016-01-14T21:22:30 *** BashCo has joined #bitcoin-dev
1114 2016-01-14T21:22:40 *** murch has joined #bitcoin-dev
1115 2016-01-14T21:22:51 <Lightsword> stratum servers generally just use GBT which hasnât really changed much
1116 2016-01-14T21:22:55 <maaku> morcos: if you're no longer giving it priority then perhaps we can simply go with whichever impelementation has the most reviews, do a final round of acks and get it merged
1117 2016-01-14T21:23:06 <maaku> implementation details can be fixed in future releases that don't have to be backported
1118 2016-01-14T21:23:06 <morcos> maaku: that is really an unbelievable distortion of history, but not an argument the rest of the channel wants to hear.
1119 2016-01-14T21:23:27 <Lightsword> IMO not neccesary to backport to more than one version at least for pools
1120 2016-01-14T21:24:01 <Lightsword> other services may be running more extensive patch sets
1121 2016-01-14T21:24:30 *** sdfsdfsdf has joined #bitcoin-dev
1122 2016-01-14T21:24:46 *** n0n0__ has quit IRC
1123 2016-01-14T21:24:56 <Lightsword> pools on the other hand generally donât like to mess with core code, f2pool I know does some patches to filter out spv clients and other clients that would never be miners
1124 2016-01-14T21:27:04 <maaku> Lightsword: you are completely missing the point. we support the entire ecosystem, not just miners (what are payment providers in Romania running hmm?), and even with miners we *should* be supporting small miners too, not just the largest pools
1125 2016-01-14T21:27:04 *** maaku has quit IRC
1126 2016-01-14T21:27:07 <Lightsword> but they generally donât mess with too much internal logic
1127 2016-01-14T21:27:45 *** sipa has left #bitcoin-dev
1128 2016-01-14T21:28:17 *** maaku has joined #bitcoin-dev
1129 2016-01-14T21:28:41 *** maaku is now known as Guest82802
1130 2016-01-14T21:28:42 *** Aexoden has quit IRC
1131 2016-01-14T21:28:59 *** Guest82802 is now known as maaku
1132 2016-01-14T21:29:14 *** Klumben has quit IRC
1133 2016-01-14T21:29:21 *** rodarmor has quit IRC
1134 2016-01-14T21:29:44 <Lightsword> maaku, yeah for other services it could make sense to backport although for really old versions it may not be worth the effort
1135 2016-01-14T21:30:09 *** patcon has quit IRC
1136 2016-01-14T21:30:19 <Lightsword> 2 major versions behind for backporting seems reasonable for soft forks IMO
1137 2016-01-14T21:30:20 <maaku> Lightsword: anyone not running that patch set would be exploitable, potentially suffering monetary losses
1138 2016-01-14T21:30:26 *** rodarmor has joined #bitcoin-dev
1139 2016-01-14T21:30:38 <maaku> that's why it makes sense to do soft-fork changes in such a way as to be most easily back portable
1140 2016-01-14T21:30:49 <maaku> which is exactly what has been done for pretty much all changes to date
1141 2016-01-14T21:30:52 *** Aexoden has joined #bitcoin-dev
1142 2016-01-14T21:31:09 *** sdfsdfsdf has quit IRC
1143 2016-01-14T21:31:14 *** gwollon has joined #bitcoin-dev
1144 2016-01-14T21:31:18 <Lightsword> maaku, I thought they were only backported two major versions usually, ie BIP65 to major version 0.9
1145 2016-01-14T21:33:27 *** gwillen has quit IRC
1146 2016-01-14T21:34:03 *** JeromeLegoupil has quit IRC
1147 2016-01-14T21:34:21 *** devsaturn has joined #bitcoin-dev
1148 2016-01-14T21:34:37 *** supasonic has joined #bitcoin-dev
1149 2016-01-14T21:34:39 *** GGuyZ has quit IRC
1150 2016-01-14T21:35:07 *** Dizzle has joined #bitcoin-dev
1151 2016-01-14T21:36:51 *** maaku has left #bitcoin-dev
1152 2016-01-14T21:37:51 *** patcon has joined #bitcoin-dev
1153 2016-01-14T21:40:28 *** JeromeLegoupil has joined #bitcoin-dev
1154 2016-01-14T21:43:44 *** Peter_Geschel has quit IRC
1155 2016-01-14T21:45:33 *** neozaru has joined #bitcoin-dev
1156 2016-01-14T21:47:38 *** neozaru has quit IRC
1157 2016-01-14T21:48:32 *** neozaru has joined #bitcoin-dev
1158 2016-01-14T21:51:04 *** [1]evoskuil has joined #bitcoin-dev
1159 2016-01-14T21:51:23 *** Peter_Geschel has joined #bitcoin-dev
1160 2016-01-14T21:51:40 *** Paco_ has joined #bitcoin-dev
1161 2016-01-14T21:53:26 *** evoskuil has quit IRC
1162 2016-01-14T21:53:26 *** [1]evoskuil is now known as evoskuil
1163 2016-01-14T21:56:42 *** cryptapus__ has joined #bitcoin-dev
1164 2016-01-14T21:56:43 *** cryptapus__ has joined #bitcoin-dev
1165 2016-01-14T21:57:30 *** hashtag has quit IRC
1166 2016-01-14T21:59:02 *** cryptapus_ has quit IRC
1167 2016-01-14T21:59:28 *** gwollon is now known as gwillen
1168 2016-01-14T21:59:33 *** Klumben has joined #bitcoin-dev
1169 2016-01-14T22:01:12 *** treehug88 has quit IRC
1170 2016-01-14T22:02:14 *** rusty has quit IRC
1171 2016-01-14T22:05:15 *** hashtag has joined #bitcoin-dev
1172 2016-01-14T22:05:38 *** IanT_ has joined #bitcoin-dev
1173 2016-01-14T22:06:04 *** t7 has joined #bitcoin-dev
1174 2016-01-14T22:08:32 *** ennui has joined #bitcoin-dev
1175 2016-01-14T22:08:36 *** brg444_ has joined #bitcoin-dev
1176 2016-01-14T22:10:10 *** brg444 has quit IRC
1177 2016-01-14T22:11:20 *** brg444 has joined #bitcoin-dev
1178 2016-01-14T22:16:17 *** hashtag has quit IRC
1179 2016-01-14T22:16:23 *** tawar has quit IRC
1180 2016-01-14T22:22:40 *** tjader has quit IRC
1181 2016-01-14T22:24:11 *** MarcoFalke has quit IRC
1182 2016-01-14T22:26:13 *** kgk has joined #bitcoin-dev
1183 2016-01-14T22:28:28 *** GGuyZ has joined #bitcoin-dev
1184 2016-01-14T22:29:19 *** tjader has joined #bitcoin-dev
1185 2016-01-14T22:30:55 *** kgk has quit IRC
1186 2016-01-14T22:31:06 *** CubicEarth has joined #bitcoin-dev
1187 2016-01-14T22:32:50 *** neozaru has quit IRC
1188 2016-01-14T22:34:01 *** agricocb1 has joined #bitcoin-dev
1189 2016-01-14T22:36:10 *** janko33 has quit IRC
1190 2016-01-14T22:36:11 *** IanT_ has quit IRC
1191 2016-01-14T22:37:00 *** agricocb has quit IRC
1192 2016-01-14T22:38:54 *** JeromeLegoupil has quit IRC
1193 2016-01-14T22:39:23 *** Grouver has quit IRC
1194 2016-01-14T22:39:31 *** kgk has joined #bitcoin-dev
1195 2016-01-14T22:44:31 *** lsrp has joined #bitcoin-dev
1196 2016-01-14T22:52:52 *** Guyver2 has quit IRC
1197 2016-01-14T22:53:18 *** IAmNotDorian has quit IRC
1198 2016-01-14T22:55:11 *** eki5bvu7njh has joined #bitcoin-dev
1199 2016-01-14T22:56:15 *** eki5bvu7njh has quit IRC
1200 2016-01-14T22:56:43 *** eki5bvu7njh has joined #bitcoin-dev
1201 2016-01-14T22:58:30 *** IanT_ has joined #bitcoin-dev
1202 2016-01-14T22:59:32 *** kermit has joined #bitcoin-dev
1203 2016-01-14T23:02:47 *** IanT_ has quit IRC
1204 2016-01-14T23:08:01 *** hashtag has joined #bitcoin-dev
1205 2016-01-14T23:09:58 *** tantalum has quit IRC
1206 2016-01-14T23:10:33 *** meLon has joined #bitcoin-dev
1207 2016-01-14T23:13:48 *** lsrp has quit IRC
1208 2016-01-14T23:14:52 *** AtnevRed has joined #bitcoin-dev
1209 2016-01-14T23:15:18 *** murch has quit IRC
1210 2016-01-14T23:15:41 *** zookolaptop has joined #bitcoin-dev
1211 2016-01-14T23:15:42 *** murch has joined #bitcoin-dev
1212 2016-01-14T23:19:13 *** CubicEarth has quit IRC
1213 2016-01-14T23:20:00 *** AtnevRed has quit IRC
1214 2016-01-14T23:20:06 *** lsrp has joined #bitcoin-dev
1215 2016-01-14T23:20:33 *** eki5bvu7njh has quit IRC
1216 2016-01-14T23:24:28 *** DougieBot5000 has quit IRC
1217 2016-01-14T23:24:33 *** mnk has quit IRC
1218 2016-01-14T23:25:23 *** RazielZ is now known as Raziel
1219 2016-01-14T23:27:01 *** RoboTeddy has joined #bitcoin-dev
1220 2016-01-14T23:28:44 *** jtoomim has quit IRC
1221 2016-01-14T23:29:17 *** jtoomim has joined #bitcoin-dev
1222 2016-01-14T23:32:43 *** op_null has joined #bitcoin-dev
1223 2016-01-14T23:36:00 <op_null> Mike's article today was rather unfortunate. TL;DR; People disagreed with me, so Bitcoin failed. I think with Hearn gone, there will be less Pitchfork mobs on forums/reddit. It's been unfortunate seeing so many ad hominem attacks. Hope you guys can continue to keep up all your good work, and do your best to keep Bitcoin decentralized.
1224 2016-01-14T23:36:08 *** mrkent_ has joined #bitcoin-dev
1225 2016-01-14T23:37:04 *** brg444 has quit IRC
1226 2016-01-14T23:37:29 *** mrkent has quit IRC
1227 2016-01-14T23:37:40 *** zookolaptop has quit IRC
1228 2016-01-14T23:38:41 <JackH> mike's artile is pure garbage
1229 2016-01-14T23:38:49 <JackH> attack on maxwell all the time, its all he can do
1230 2016-01-14T23:39:07 <JackH> funny how the article forgot to mention 95% of all core dev's agree to the roadmap
1231 2016-01-14T23:39:36 <Diablo-D3> wait, hearn left?
1232 2016-01-14T23:39:48 <JackH> we are not that lucky
1233 2016-01-14T23:39:52 <JackH> he just wrote he left
1234 2016-01-14T23:39:54 *** jaclupi has quit IRC
1235 2016-01-14T23:39:56 <Diablo-D3> ahh
1236 2016-01-14T23:39:59 *** AaronvanW has quit IRC
1237 2016-01-14T23:40:04 <Diablo-D3> but yeah, what the fuck are we all arguin about now?
1238 2016-01-14T23:40:09 <Diablo-D3> is it still the block size shit?
1239 2016-01-14T23:40:15 <JackH> give it a week for the next article on medium.com bashing gmaxwell again
1240 2016-01-14T23:40:20 <JackH> yeah I think so
1241 2016-01-14T23:40:22 <Luke-Jr> can we take this to #bitcoin or something?
1242 2016-01-14T23:40:26 <Diablo-D3> I dont even know why people bash gmaxwell
1243 2016-01-14T23:40:26 <Luke-Jr> #bitcoinxt ideally
1244 2016-01-14T23:40:28 <Diablo-D3> hes a great guy
1245 2016-01-14T23:40:34 <JackH> lol luke
1246 2016-01-14T23:40:36 <JackH> #bitcoin it is
1247 2016-01-14T23:40:37 <justanotheruser> Diablo-D3: tinfoil hats
1248 2016-01-14T23:40:51 <Diablo-D3> and he puts up with me making fun of his OTHER job at xiph ;)
1249 2016-01-14T23:41:13 <op_null> https://medium.com/@octskyward/the-resolution-of-the-bitcoin-experiment-dabb30201f7#.69kuq1mbu
1250 2016-01-14T23:43:02 <phantomcircuit> Diablo-D3, mike now works for R3 and is busy throwing FUD
1251 2016-01-14T23:43:29 <Diablo-D3> oh, lame
1252 2016-01-14T23:47:51 *** laurentmt has joined #bitcoin-dev
1253 2016-01-14T23:48:12 *** laurentmt has quit IRC
1254 2016-01-14T23:49:50 *** deadalnix has quit IRC
1255 2016-01-14T23:50:14 *** ennui has quit IRC
1256 2016-01-14T23:50:25 *** deadalnix has joined #bitcoin-dev
1257 2016-01-14T23:51:26 *** lsrp has quit IRC
1258 2016-01-14T23:52:03 *** c-cex-yuriy has quit IRC
1259 2016-01-14T23:52:57 *** eki5bvu7njh has joined #bitcoin-dev
1260 2016-01-14T23:53:26 *** Quent has quit IRC
1261 2016-01-14T23:53:32 *** tjader has quit IRC
1262 2016-01-14T23:54:13 *** Quent has joined #bitcoin-dev
1263 2016-01-14T23:56:19 *** kangx_ has quit IRC
1264 2016-01-14T23:58:42 *** mnk has joined #bitcoin-dev
1265 2016-01-14T23:59:26 *** tjader has joined #bitcoin-dev