1 2017-11-11T00:10:52 *** LumberCartel has quit IRC
2 2017-11-11T00:12:51 <bitcoin-git> [bitcoin] sipa pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/61fb80660f73...033c78671b91
3 2017-11-11T00:12:52 <bitcoin-git> bitcoin/master bd9c181 John Newbery: [rpc] Add initialblockdownload to getblockchaininfo
4 2017-11-11T00:12:53 <bitcoin-git> bitcoin/master 1141364 John Newbery: [trivial] (whitespace only) fix getblockchaininfo alignment
5 2017-11-11T00:12:53 <bitcoin-git> bitcoin/master 033c786 Pieter Wuille: Merge #11258: [rpc] Add initialblockdownload to getblockchaininfo...
6 2017-11-11T00:13:11 <bitcoin-git> [bitcoin] sipa closed pull request #11258: [rpc] Add initialblockdownload to getblockchaininfo (master...expose_ibd) https://github.com/bitcoin/bitcoin/pull/11258
7 2017-11-11T00:14:11 *** CubicEarth has joined #bitcoin-core-dev
8 2017-11-11T00:14:36 *** Emcy has quit IRC
9 2017-11-11T00:15:06 *** Emcy has joined #bitcoin-core-dev
10 2017-11-11T00:19:45 *** dgenr8 has quit IRC
11 2017-11-11T00:19:54 *** dgenr8 has joined #bitcoin-core-dev
12 2017-11-11T00:30:00 *** chjj has quit IRC
13 2017-11-11T00:56:08 *** Chris_Stewart_5 has joined #bitcoin-core-dev
14 2017-11-11T01:02:04 *** Chris_Stewart_5 has quit IRC
15 2017-11-11T01:04:33 *** jb55 has quit IRC
16 2017-11-11T01:11:00 *** CubicEarth has quit IRC
17 2017-11-11T01:15:01 *** vicenteH has quit IRC
18 2017-11-11T01:19:04 *** CubicEarth has joined #bitcoin-core-dev
19 2017-11-11T01:20:09 *** vicenteH has joined #bitcoin-core-dev
20 2017-11-11T01:21:41 *** ZSky has joined #bitcoin-core-dev
21 2017-11-11T01:21:43 <ZSky> Hi
22 2017-11-11T01:22:40 <ZSky> When a block is added, is it written/serialized on disk immediately?
23 2017-11-11T01:23:01 *** promag has joined #bitcoin-core-dev
24 2017-11-11T01:23:04 <ZSky> If so, using what kind of storing? DB-like? flat files?
25 2017-11-11T01:23:37 <sipa> flat files
26 2017-11-11T01:24:05 <sipa> after processing (which may happen at the same time as it's received, or later), its effects are applied to the UTXO set
27 2017-11-11T01:24:11 <ZSky> sipa: immediately after a block is added, or does it stay in RAM for a while before flushing to disk?
28 2017-11-11T01:24:30 <sipa> it's written immediately if it's acceptable
29 2017-11-11T01:25:02 <sipa> though we reuse the in-memory version IF processing happens at the same time
30 2017-11-11T01:25:18 <ZSky> sipa: what kind of flat file structure? just "fopen append" to a single file?
31 2017-11-11T01:25:59 <sipa> we keep track of how many bytes are already used in each file in a database
32 2017-11-11T01:26:08 <sipa> and then just write the exact range
33 2017-11-11T01:26:16 <ZSky> you mean the offset?
34 2017-11-11T01:26:18 <sipa> yes
35 2017-11-11T01:26:33 <ZSky> so the raw data is in one single big file (100+GB)
36 2017-11-11T01:26:40 <sipa> no, it's in many files
37 2017-11-11T01:26:41 <ZSky> and there's a db for offsets
38 2017-11-11T01:26:48 <sipa> blk?????.dat
39 2017-11-11T01:26:54 <sipa> 128 MiB each
40 2017-11-11T01:27:24 <sipa> and indeed, there is a LevelDB database with metadata about each block (which includes the file and offset)
41 2017-11-11T01:27:56 <ZSky> each time a 128 MiB is full, a new one is created, and the DB stores [block13672: { filenumber = 27, offsetinfile = 283792 }, ...]
42 2017-11-11T01:28:02 <sipa> exactly
43 2017-11-11T01:28:08 <ZSky> oh that's nice
44 2017-11-11T01:28:42 <ZSky> wow leveldb seems nice
45 2017-11-11T01:29:01 <ZSky> it's been a long time I was looking for a serialized key-value storage
46 2017-11-11T01:29:04 <ZSky> usable in production
47 2017-11-11T01:29:20 <sipa> it's not perfect
48 2017-11-11T01:29:29 <sipa> but better than anything else we've tried
49 2017-11-11T01:30:02 <ZSky> so you're using this currently: https://github.com/google/leveldb
50 2017-11-11T01:30:23 <sipa> we have our own fork with minor changes: https://github.com/bitcoin-core/leveldb
51 2017-11-11T01:30:31 <sipa> in particular, MinGW windows support
52 2017-11-11T01:32:47 <ZSky> sipa: dumb question: why not using leveldb this way: block13672: [BLOCKRAWDATA]
53 2017-11-11T01:33:02 <ZSky> and totally rely on leveldb's data management?
54 2017-11-11T01:33:16 <sipa> because we don't need leveldb's data management
55 2017-11-11T01:33:42 <ZSky> you use it for metadata
56 2017-11-11T01:33:51 <ZSky> so you kind of need a small key:value db
57 2017-11-11T01:33:52 <sipa> yes, which is a tiny amount of data
58 2017-11-11T01:33:55 <ZSky> true
59 2017-11-11T01:34:14 <ZSky> so the idea is: you keep a key:value store for the smallest amount of data possible
60 2017-11-11T01:34:14 <sipa> but for blocks themselves, we don't need consistency, or the ability to selectively update and delete, or ...
61 2017-11-11T01:34:23 <ZSky> true
62 2017-11-11T01:34:37 <sipa> it's just a stream of data that comes in, and we can drop it in effectively append only files on disk
63 2017-11-11T01:34:58 <sipa> in fact, we hardly use the block data after it's been processed
64 2017-11-11T01:35:09 <sipa> it's just for when another peer in the network asks for it
65 2017-11-11T01:35:24 <sipa> or to rescan for old wallet activity
66 2017-11-11T01:36:01 <ZSky> yes i see
67 2017-11-11T01:36:13 <ZSky> historically, in the earliest implementations, what was used before leveldb?
68 2017-11-11T01:36:34 <sipa> BDB
69 2017-11-11T01:36:43 <sipa> changed in 0.8
70 2017-11-11T01:36:51 <sipa> and the wallet still uses BDB
71 2017-11-11T01:37:42 <ZSky> why no BDB anymore?
72 2017-11-11T01:38:14 <sipa> many many reports of corruption
73 2017-11-11T01:38:45 <sipa> incompatibilities between versions (you can't downgrade, and in some cases you can't even upgrade)
74 2017-11-11T01:39:27 <sipa> and the fact that BDB was indirectly the cause for one of the largest operational problems the system has seen in years (read BIP50)
75 2017-11-11T01:39:58 <ZSky> oh really?
76 2017-11-11T01:40:00 <sipa> which was related due to it know how many locks the database will require during its operation
77 2017-11-11T01:40:02 <ZSky> tl;dr what was it?
78 2017-11-11T01:40:12 <sipa> while we don't need any locks at all
79 2017-11-11T01:40:51 <sipa> you need to configure BDB with "i need up to X locks", and if any atomic database operation touches more internal records than you have configured locks, the operations fails
80 2017-11-11T01:41:36 <sipa> this is because BDB is a multi-application database system (multiple processes can simultaneously open and modify the database, and there is consistency across them), which is something we don't care about at all
81 2017-11-11T01:45:22 *** Murch has quit IRC
82 2017-11-11T01:45:46 *** Deacyde has joined #bitcoin-core-dev
83 2017-11-11T01:47:32 *** Deacyded has quit IRC
84 2017-11-11T01:50:57 *** wxss has quit IRC
85 2017-11-11T01:54:57 *** CubicEarth has quit IRC
86 2017-11-11T01:55:03 *** LumberCartel has joined #bitcoin-core-dev
87 2017-11-11T01:55:21 <ZSky> sipa: what was used in 0.1.0?
88 2017-11-11T01:55:45 <sipa> BDB
89 2017-11-11T01:56:04 <ZSky> ok right
90 2017-11-11T01:56:18 <ZSky> sipa: do you do python sometimes?
91 2017-11-11T01:56:23 <sipa> hardly
92 2017-11-11T01:57:01 <ZSky> i was looking for such a keystore in py
93 2017-11-11T01:57:19 *** jtimon has quit IRC
94 2017-11-11T01:59:23 *** promag has quit IRC
95 2017-11-11T02:01:01 *** promag has joined #bitcoin-core-dev
96 2017-11-11T02:02:56 <ZSky> sipa: thanks for these informations!
97 2017-11-11T02:04:02 <sipa> yw
98 2017-11-11T02:05:35 *** promag has quit IRC
99 2017-11-11T02:07:55 *** ZSky has quit IRC
100 2017-11-11T02:11:35 *** jb55 has joined #bitcoin-core-dev
101 2017-11-11T02:12:15 *** LumberCartel has quit IRC
102 2017-11-11T02:21:48 *** Chris_Stewart_5 has joined #bitcoin-core-dev
103 2017-11-11T02:41:19 *** Ylbam has quit IRC
104 2017-11-11T02:50:52 *** bule has quit IRC
105 2017-11-11T02:54:04 *** coin_trader has joined #bitcoin-core-dev
106 2017-11-11T02:54:24 *** LumberCartel has joined #bitcoin-core-dev
107 2017-11-11T03:02:31 *** promag has joined #bitcoin-core-dev
108 2017-11-11T03:20:29 *** LumberCartel has quit IRC
109 2017-11-11T03:39:23 *** StopAndDecrypt has quit IRC
110 2017-11-11T03:52:57 *** Chris_Stewart_5 has quit IRC
111 2017-11-11T03:53:24 <cluelessperson> aj: thank you for your help
112 2017-11-11T04:02:18 *** LumberCartel has joined #bitcoin-core-dev
113 2017-11-11T04:08:05 *** LumberCartel_ has joined #bitcoin-core-dev
114 2017-11-11T04:08:52 *** LumberCartel has quit IRC
115 2017-11-11T04:47:27 *** LumberCartel_ has quit IRC
116 2017-11-11T05:21:48 *** jsonBateman has joined #bitcoin-core-dev
117 2017-11-11T05:49:11 <cluelessperson> How can I help you all?
118 2017-11-11T05:49:18 <cluelessperson> I can do some devops
119 2017-11-11T05:49:20 <cluelessperson> put me to use
120 2017-11-11T05:51:48 *** LumberCartel has joined #bitcoin-core-dev
121 2017-11-11T05:52:25 *** LumberCartel_ has joined #bitcoin-core-dev
122 2017-11-11T05:56:17 *** LumberCartel has quit IRC
123 2017-11-11T05:56:57 *** LumberCartel has joined #bitcoin-core-dev
124 2017-11-11T06:17:06 <meshcollider> devops...199
125 2017-11-11T06:43:27 *** AaronvanW has quit IRC
126 2017-11-11T06:50:12 *** jb55 has quit IRC
127 2017-11-11T07:03:09 *** bule has joined #bitcoin-core-dev
128 2017-11-11T07:07:06 *** d9b4bef9 has quit IRC
129 2017-11-11T07:08:13 *** d9b4bef9 has joined #bitcoin-core-dev
130 2017-11-11T07:15:06 *** bule has quit IRC
131 2017-11-11T07:15:29 *** bule has joined #bitcoin-core-dev
132 2017-11-11T07:28:34 <mryandao> meshcollider: lol, funny
133 2017-11-11T08:03:09 <meshcollider> CScripts in the wallet don't have birth-times associated with them do they
134 2017-11-11T08:31:40 *** bule has quit IRC
135 2017-11-11T08:52:49 *** Cogito_Ergo_Sum has joined #bitcoin-core-dev
136 2017-11-11T08:52:49 *** Cogito_Ergo_Sum has joined #bitcoin-core-dev
137 2017-11-11T09:08:36 <bitcoin-git> [bitcoin] luke-jr opened pull request #11658: During IBD, when doing pruning, prune 10% extra to avoid pruning again soon after (master...ibd_prune_extra) https://github.com/bitcoin/bitcoin/pull/11658
138 2017-11-11T09:38:10 *** Mf_ has joined #bitcoin-core-dev
139 2017-11-11T09:40:34 *** harrymm has quit IRC
140 2017-11-11T10:02:23 *** wxss has joined #bitcoin-core-dev
141 2017-11-11T10:16:58 *** lukedashjr has joined #bitcoin-core-dev
142 2017-11-11T10:17:35 *** luke-jr has quit IRC
143 2017-11-11T10:21:21 *** lukedashjr is now known as luke-jr
144 2017-11-11T10:44:32 *** fanquake has joined #bitcoin-core-dev
145 2017-11-11T10:52:47 *** jsonBateman has quit IRC
146 2017-11-11T11:02:44 *** Ylbam has joined #bitcoin-core-dev
147 2017-11-11T11:03:54 *** cluelessperson has quit IRC
148 2017-11-11T11:20:19 *** SopaXorzTaker has quit IRC
149 2017-11-11T11:21:08 *** SopaXorzTaker has joined #bitcoin-core-dev
150 2017-11-11T11:25:44 <bitcoin-git> [bitcoin] luke-jr opened pull request #11660: RPC: Internal named params (master...internal_named_params) https://github.com/bitcoin/bitcoin/pull/11660
151 2017-11-11T11:27:45 <luke-jr> ^ hope that satisfies concerns with #11441
152 2017-11-11T11:27:47 <gribble> https://github.com/bitcoin/bitcoin/issues/11441 | rpc/server: Support for specifying options as named parameters by luke-jr · Pull Request #11441 · bitcoin/bitcoin · GitHub
153 2017-11-11T11:34:04 *** intcat has quit IRC
154 2017-11-11T11:36:12 *** ghost43 has quit IRC
155 2017-11-11T11:36:54 *** ghost43 has joined #bitcoin-core-dev
156 2017-11-11T11:36:54 *** intcat has joined #bitcoin-core-dev
157 2017-11-11T11:44:04 *** laurentmt has joined #bitcoin-core-dev
158 2017-11-11T11:55:53 *** jtimon has joined #bitcoin-core-dev
159 2017-11-11T12:05:12 *** fanquake has quit IRC
160 2017-11-11T12:12:35 <meshcollider> MarcoFalke: I've seen a few PRs being closed recently as 'up for grabs', can we have a label for it to keep track of them?
161 2017-11-11T12:14:13 <meshcollider> Maybe called "Abandoned" or something
162 2017-11-11T12:15:52 *** CubicEarth has joined #bitcoin-core-dev
163 2017-11-11T12:27:40 *** harrymm has joined #bitcoin-core-dev
164 2017-11-11T12:55:54 *** CubicEarth has quit IRC
165 2017-11-11T12:56:12 *** CubicEarth has joined #bitcoin-core-dev
166 2017-11-11T13:01:07 *** BogadMohogad has joined #bitcoin-core-dev
167 2017-11-11T13:04:24 *** BogadMohogad has quit IRC
168 2017-11-11T13:06:47 *** BogadMohogad has joined #bitcoin-core-dev
169 2017-11-11T13:09:27 *** BogadMohogad has quit IRC
170 2017-11-11T13:25:16 *** jsonBateman has joined #bitcoin-core-dev
171 2017-11-11T13:31:15 *** Chris_Stewart_5 has joined #bitcoin-core-dev
172 2017-11-11T13:41:41 <bitcoin-git> [bitcoin] laanwj pushed 1 new commit to master: https://github.com/bitcoin/bitcoin/commit/6de3203cdce2d8532f39f9f9428c33b0dd53f623
173 2017-11-11T13:41:42 <bitcoin-git> bitcoin/master 6de3203 Wladimir J. van der Laan: doc: Add historical release notes for 0.15.1...
174 2017-11-11T13:42:28 *** ak has joined #bitcoin-core-dev
175 2017-11-11T13:42:50 *** F0lks has joined #bitcoin-core-dev
176 2017-11-11T13:43:18 <F0lks> Hi, is there some devs' available for a little talk ? It won't be long I promise
177 2017-11-11T13:49:49 *** F0lks has quit IRC
178 2017-11-11T13:54:05 *** ak has quit IRC
179 2017-11-11T14:01:53 *** jsonBateman has quit IRC
180 2017-11-11T14:06:12 *** Chris_Stewart_5 has quit IRC
181 2017-11-11T14:11:11 *** Chris_Stewart_5 has joined #bitcoin-core-dev
182 2017-11-11T14:22:59 *** vicenteH has quit IRC
183 2017-11-11T14:23:09 *** vicenteH has joined #bitcoin-core-dev
184 2017-11-11T14:27:26 <bitcoin-git> [bitcoin] luke-jr opened pull request #11662: [0.15] Sanity-check script sizes in bitcoin-tx (0.15...bitcoin-tx-script-sizes-0.14) https://github.com/bitcoin/bitcoin/pull/11662
185 2017-11-11T14:35:23 *** meshcollider has quit IRC
186 2017-11-11T14:51:54 *** grio has joined #bitcoin-core-dev
187 2017-11-11T14:52:49 *** Chris_Stewart_5 has quit IRC
188 2017-11-11T14:57:47 <wumpus> release date 2017-11-11
189 2017-11-11T14:57:48 <wumpus> nice
190 2017-11-11T14:59:52 <wxss> \o/
191 2017-11-11T15:02:10 <paveljanik> remaining days to Xmas: *42*.
192 2017-11-11T15:07:13 *** BogadMohogad has joined #bitcoin-core-dev
193 2017-11-11T15:11:33 <LumberCartel> paveljanik++
194 2017-11-11T15:15:21 *** grio has quit IRC
195 2017-11-11T15:15:45 *** grio has joined #bitcoin-core-dev
196 2017-11-11T15:16:58 <wumpus> :D
197 2017-11-11T15:26:33 *** BogadMohogad has quit IRC
198 2017-11-11T15:35:50 *** AaronvanW has joined #bitcoin-core-dev
199 2017-11-11T15:48:06 *** LowKey has joined #bitcoin-core-dev
200 2017-11-11T16:15:03 <MarcoFalke> meshcollider: Sure will do that
201 2017-11-11T16:23:22 *** davec has quit IRC
202 2017-11-11T16:23:54 <LowKey> hi, anyone know how to build mac wallet for bitcoin?
203 2017-11-11T16:25:09 *** bsm117532 has joined #bitcoin-core-dev
204 2017-11-11T16:27:36 <mlz> LowKey, ask in #bitcoin channel
205 2017-11-11T16:27:53 <LowKey> ok
206 2017-11-11T16:32:28 *** Cogito_Ergo_Sum has quit IRC
207 2017-11-11T16:38:59 *** Chris_Stewart_5 has joined #bitcoin-core-dev
208 2017-11-11T16:44:15 *** davec has joined #bitcoin-core-dev
209 2017-11-11T16:58:23 *** Emrecan has joined #bitcoin-core-dev
210 2017-11-11T17:05:38 *** bitmex has joined #bitcoin-core-dev
211 2017-11-11T17:07:46 *** Chris_Stewart_5 has quit IRC
212 2017-11-11T17:17:14 *** Chris_Stewart_5 has joined #bitcoin-core-dev
213 2017-11-11T17:22:30 *** bitmex has quit IRC
214 2017-11-11T17:24:32 *** belcher has joined #bitcoin-core-dev
215 2017-11-11T17:31:49 *** Chris_Stewart_5 has quit IRC
216 2017-11-11T17:39:56 <bitcoin-git> [bitcoin] MarcoFalke pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/6de3203cdce2...95e14dc81dd3
217 2017-11-11T17:39:57 <bitcoin-git> bitcoin/master ea0cd24 John Newbery: [tests] Tidy up receivedby.py...
218 2017-11-11T17:39:58 <bitcoin-git> bitcoin/master 5e0ba8f John Newbery: [wallet] getreceivedbyaddress should return error if address is not mine
219 2017-11-11T17:39:58 <bitcoin-git> bitcoin/master 95e14dc MarcoFalke: Merge #11055: [wallet] [rpc] getreceivedbyaddress should return error if called with address not owned by the wallet...
220 2017-11-11T17:40:21 <bitcoin-git> [bitcoin] MarcoFalke closed pull request #11055: [wallet] [rpc] getreceivedbyaddress should return error if called with address not owned by the wallet (master...getreceivedbyaddress_error) https://github.com/bitcoin/bitcoin/pull/11055
221 2017-11-11T17:55:15 *** LumberCartel has quit IRC
222 2017-11-11T18:02:52 <bitcoin-git> [bitcoin] MarcoFalke opened pull request #11663: [trivial] doc: Add getreceivedbyaddress release notes (master...Mf1711-docReleaseNotes16) https://github.com/bitcoin/bitcoin/pull/11663
223 2017-11-11T18:07:08 *** jb55 has joined #bitcoin-core-dev
224 2017-11-11T18:12:25 <sipa> MarcoFalke: your PGP signatures scare me!
225 2017-11-11T18:12:34 <MarcoFalke> why is that?
226 2017-11-11T18:12:54 <sipa> any time i receive a bitcoin related email with PGP headers i assume there is some terrible vulnerability :)
227 2017-11-11T18:15:26 <MarcoFalke> heh. Makes sense now that you say it. I will try to figure out something else.
228 2017-11-11T18:20:02 <sipa> oh please no, it was not a complaint :)
229 2017-11-11T18:23:31 *** chjj has joined #bitcoin-core-dev
230 2017-11-11T18:32:33 *** jb55 has quit IRC
231 2017-11-11T18:33:30 *** LowKey has quit IRC
232 2017-11-11T18:33:50 <bitcoin-git> [bitcoin] MarcoFalke pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/95e14dc81dd3...13e352dc53de
233 2017-11-11T18:33:50 <bitcoin-git> bitcoin/master 927f4ff Luke Dashjr: GUI: Receive: Remove option to reuse a previous address...
234 2017-11-11T18:33:51 <bitcoin-git> bitcoin/master 13e352d MarcoFalke: Merge #3716: GUI: Receive: Remove option to reuse a previous address...
235 2017-11-11T18:35:46 *** bule has joined #bitcoin-core-dev
236 2017-11-11T18:42:09 *** Zorro has joined #bitcoin-core-dev
237 2017-11-11T18:42:33 *** Zorro is now known as Guest23250
238 2017-11-11T18:44:40 *** jb55 has joined #bitcoin-core-dev
239 2017-11-11T18:48:38 *** LumberCartel has joined #bitcoin-core-dev
240 2017-11-11T18:55:30 *** Emrecan has quit IRC
241 2017-11-11T18:59:43 *** shesek has joined #bitcoin-core-dev
242 2017-11-11T19:06:54 *** bsm117532 has quit IRC
243 2017-11-11T19:11:18 *** chjj has quit IRC
244 2017-11-11T19:12:31 *** meshcollider has joined #bitcoin-core-dev
245 2017-11-11T19:12:47 *** laurentmt has quit IRC
246 2017-11-11T19:16:47 *** luke-jr has quit IRC
247 2017-11-11T19:17:29 *** luke-jr has joined #bitcoin-core-dev
248 2017-11-11T19:22:25 *** chjj has joined #bitcoin-core-dev
249 2017-11-11T19:22:43 *** laurentmt has joined #bitcoin-core-dev
250 2017-11-11T19:22:52 *** laurentmt has quit IRC
251 2017-11-11T19:24:15 *** Guest23250 has quit IRC
252 2017-11-11T19:33:19 <luke-jr> jnewbery: promag: am I missing something? :/ http://luke.dashjr.org/tmp/screenshots/Screenshot_20171111_192644.png
253 2017-11-11T19:36:12 *** sawtooth has joined #bitcoin-core-dev
254 2017-11-11T19:46:37 *** SopaXorzTaker has quit IRC
255 2017-11-11T19:46:39 *** LumberCartel has quit IRC
256 2017-11-11T20:24:50 *** LumberCartel has joined #bitcoin-core-dev
257 2017-11-11T20:25:26 *** promag has quit IRC
258 2017-11-11T20:25:39 *** promag has joined #bitcoin-core-dev
259 2017-11-11T20:27:06 <promag> luke-jr: what you mean? the test verifies that initialblockdownload is a key of getblockchaininfo response
260 2017-11-11T20:29:01 *** LumberCartel has quit IRC
261 2017-11-11T20:29:04 *** reallll has joined #bitcoin-core-dev
262 2017-11-11T20:29:12 <promag> https://github.com/jnewbery/bitcoin/blob/11413646be2a6d0bf1c857753bfcec0af60c72b8/test/functional/blockchain.py#L54-L73
263 2017-11-11T20:29:53 <promag> or am I wrong?
264 2017-11-11T20:30:44 <bitcoin-git> [bitcoin] benma closed pull request #9897: AppInitMain: split initialization of Connman into a new function (master...connman) https://github.com/bitcoin/bitcoin/pull/9897
265 2017-11-11T20:31:49 *** reallll has quit IRC
266 2017-11-11T20:32:31 *** belcher has quit IRC
267 2017-11-11T20:38:39 *** job42 has joined #bitcoin-core-dev
268 2017-11-11T20:45:20 *** job42 has quit IRC
269 2017-11-11T20:49:25 *** sawtooth has quit IRC
270 2017-11-11T20:49:41 *** chjj has quit IRC
271 2017-11-11T21:03:00 <luke-jr> promag: for some reason, GitHub isn't showing me that part :|
272 2017-11-11T21:04:42 <luke-jr> oh well
273 2017-11-11T21:07:51 *** LumberCartel has joined #bitcoin-core-dev
274 2017-11-11T21:17:20 *** belcher has joined #bitcoin-core-dev
275 2017-11-11T21:17:25 <jtimon> jl2012: not sure if you still want to do #11398 on top of #11426 since some people don't seem to agree it makes things easier, but rebased
276 2017-11-11T21:17:27 <gribble> https://github.com/bitcoin/bitcoin/issues/11398 | Hardcode CSV and SEGWIT deployment by jl2012 · Pull Request #11398 · bitcoin/bitcoin · GitHub
277 2017-11-11T21:17:28 <gribble> https://github.com/bitcoin/bitcoin/issues/11426 | BIP90: Make buried deployments slightly more easily extensible by jtimon · Pull Request #11426 · bitcoin/bitcoin · GitHub
278 2017-11-11T21:22:17 *** Victorsueca has quit IRC
279 2017-11-11T21:25:25 *** roidster has joined #bitcoin-core-dev
280 2017-11-11T21:27:27 *** jb55 has quit IRC
281 2017-11-11T21:40:03 *** tiagotrs has joined #bitcoin-core-dev
282 2017-11-11T21:47:35 *** grio has quit IRC
283 2017-11-11T21:50:34 *** LumberCartel_ has joined #bitcoin-core-dev
284 2017-11-11T21:53:43 *** LumberCartel has quit IRC
285 2017-11-11T21:54:23 *** PaulCapestany has quit IRC
286 2017-11-11T22:00:30 *** PaulCape_ has joined #bitcoin-core-dev
287 2017-11-11T22:06:23 *** roidster has quit IRC
288 2017-11-11T22:23:50 *** roidster has joined #bitcoin-core-dev
289 2017-11-11T22:26:06 *** Chris_Stewart_5 has joined #bitcoin-core-dev
290 2017-11-11T22:35:01 *** Chris_Stewart_5 has quit IRC
291 2017-11-11T22:41:58 *** fLip-SIde has joined #bitcoin-core-dev
292 2017-11-11T23:05:39 *** dcousens has joined #bitcoin-core-dev
293 2017-11-11T23:10:23 *** roidster has quit IRC
294 2017-11-11T23:11:20 <bitcoin-git> [bitcoin] MarcoFalke pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/13e352dc53de...2adbddb03840
295 2017-11-11T23:11:20 <bitcoin-git> bitcoin/master 1e65f0f practicalswift: Use compile-time constants instead of unnamed enumerations (remove "enum hack")
296 2017-11-11T23:11:20 <bitcoin-git> bitcoin/master 2adbddb MarcoFalke: Merge #10749: Use compile-time constants instead of unnamed enumerations (remove "enum hack")...
297 2017-11-11T23:11:39 <bitcoin-git> [bitcoin] MarcoFalke closed pull request #10749: Use compile-time constants instead of unnamed enumerations (remove "enum hack") (master...enum-hack) https://github.com/bitcoin/bitcoin/pull/10749
298 2017-11-11T23:25:34 *** belcher has quit IRC
299 2017-11-11T23:26:52 *** wxss has quit IRC
300 2017-11-11T23:27:29 *** wxss has joined #bitcoin-core-dev
301 2017-11-11T23:30:20 *** linux__ has joined #bitcoin-core-dev
302 2017-11-11T23:33:40 *** LumberCartel has joined #bitcoin-core-dev
303 2017-11-11T23:38:55 *** tiagotrs has quit IRC
304 2017-11-11T23:47:40 *** linux__ has quit IRC