12017-11-11T00:10:52  *** LumberCartel has quit IRC
  22017-11-11T00:12:51  <bitcoin-git> [bitcoin] sipa pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/61fb80660f73...033c78671b91
  32017-11-11T00:12:52  <bitcoin-git> bitcoin/master bd9c181 John Newbery: [rpc] Add initialblockdownload to getblockchaininfo
  42017-11-11T00:12:53  <bitcoin-git> bitcoin/master 1141364 John Newbery: [trivial] (whitespace only) fix getblockchaininfo alignment
  52017-11-11T00:12:53  <bitcoin-git> bitcoin/master 033c786 Pieter Wuille: Merge #11258: [rpc] Add initialblockdownload to getblockchaininfo...
  62017-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
  72017-11-11T00:14:11  *** CubicEarth has joined #bitcoin-core-dev
  82017-11-11T00:14:36  *** Emcy has quit IRC
  92017-11-11T00:15:06  *** Emcy has joined #bitcoin-core-dev
 102017-11-11T00:19:45  *** dgenr8 has quit IRC
 112017-11-11T00:19:54  *** dgenr8 has joined #bitcoin-core-dev
 122017-11-11T00:30:00  *** chjj has quit IRC
 132017-11-11T00:56:08  *** Chris_Stewart_5 has joined #bitcoin-core-dev
 142017-11-11T01:02:04  *** Chris_Stewart_5 has quit IRC
 152017-11-11T01:04:33  *** jb55 has quit IRC
 162017-11-11T01:11:00  *** CubicEarth has quit IRC
 172017-11-11T01:15:01  *** vicenteH has quit IRC
 182017-11-11T01:19:04  *** CubicEarth has joined #bitcoin-core-dev
 192017-11-11T01:20:09  *** vicenteH has joined #bitcoin-core-dev
 202017-11-11T01:21:41  *** ZSky has joined #bitcoin-core-dev
 212017-11-11T01:21:43  <ZSky> Hi
 222017-11-11T01:22:40  <ZSky> When a block is added, is it written/serialized on disk immediately?
 232017-11-11T01:23:01  *** promag has joined #bitcoin-core-dev
 242017-11-11T01:23:04  <ZSky> If so, using what kind of storing? DB-like? flat files?
 252017-11-11T01:23:37  <sipa> flat files
 262017-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
 272017-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?
 282017-11-11T01:24:30  <sipa> it's written immediately if it's acceptable
 292017-11-11T01:25:02  <sipa> though we reuse the in-memory version IF processing happens at the same time
 302017-11-11T01:25:18  <ZSky> sipa: what kind of flat file structure? just "fopen append" to a single file?
 312017-11-11T01:25:59  <sipa> we keep track of how many bytes are already used in each file in a database
 322017-11-11T01:26:08  <sipa> and then just write the exact range
 332017-11-11T01:26:16  <ZSky> you mean the offset?
 342017-11-11T01:26:18  <sipa> yes
 352017-11-11T01:26:33  <ZSky> so the raw data is in one single big file (100+GB)
 362017-11-11T01:26:40  <sipa> no, it's in many files
 372017-11-11T01:26:41  <ZSky> and there's a db for offsets
 382017-11-11T01:26:48  <sipa> blk?????.dat
 392017-11-11T01:26:54  <sipa> 128 MiB each
 402017-11-11T01:27:24  <sipa> and indeed, there is a LevelDB database with metadata about each block (which includes the file and offset)
 412017-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 }, ...]
 422017-11-11T01:28:02  <sipa> exactly
 432017-11-11T01:28:08  <ZSky> oh that's nice
 442017-11-11T01:28:42  <ZSky> wow leveldb seems nice
 452017-11-11T01:29:01  <ZSky> it's been a long time I was looking for a serialized key-value storage
 462017-11-11T01:29:04  <ZSky> usable in production
 472017-11-11T01:29:20  <sipa> it's not perfect
 482017-11-11T01:29:29  <sipa> but better than anything else we've tried
 492017-11-11T01:30:02  <ZSky> so you're using this currently: https://github.com/google/leveldb
 502017-11-11T01:30:23  <sipa> we have our own fork with minor changes: https://github.com/bitcoin-core/leveldb
 512017-11-11T01:30:31  <sipa> in particular, MinGW windows support
 522017-11-11T01:32:47  <ZSky> sipa: dumb question: why not using leveldb this way:   block13672:  [BLOCKRAWDATA]
 532017-11-11T01:33:02  <ZSky> and totally rely on leveldb's data management?
 542017-11-11T01:33:16  <sipa> because we don't need leveldb's data management
 552017-11-11T01:33:42  <ZSky> you use it for metadata
 562017-11-11T01:33:51  <ZSky> so you kind of need a small key:value db
 572017-11-11T01:33:52  <sipa> yes, which is a tiny amount of data
 582017-11-11T01:33:55  <ZSky> true
 592017-11-11T01:34:14  <ZSky> so the idea is: you keep a key:value store for the smallest amount of data possible
 602017-11-11T01:34:14  <sipa> but for blocks themselves, we don't need consistency, or the ability to selectively update and delete, or ...
 612017-11-11T01:34:23  <ZSky> true
 622017-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
 632017-11-11T01:34:58  <sipa> in fact, we hardly use the block data after it's been processed
 642017-11-11T01:35:09  <sipa> it's just for when another peer in the network asks for it
 652017-11-11T01:35:24  <sipa> or to rescan for old wallet activity
 662017-11-11T01:36:01  <ZSky> yes i see
 672017-11-11T01:36:13  <ZSky> historically, in the earliest implementations, what was used before leveldb?
 682017-11-11T01:36:34  <sipa> BDB
 692017-11-11T01:36:43  <sipa> changed in 0.8
 702017-11-11T01:36:51  <sipa> and the wallet still uses BDB
 712017-11-11T01:37:42  <ZSky> why no BDB anymore?
 722017-11-11T01:38:14  <sipa> many many reports of corruption
 732017-11-11T01:38:45  <sipa> incompatibilities between versions (you can't downgrade, and in some cases you can't even upgrade)
 742017-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)
 752017-11-11T01:39:58  <ZSky> oh really?
 762017-11-11T01:40:00  <sipa> which was related due to it know how many locks the database will require during its operation
 772017-11-11T01:40:02  <ZSky> tl;dr what was it?
 782017-11-11T01:40:12  <sipa> while we don't need any locks at all
 792017-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
 802017-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
 812017-11-11T01:45:22  *** Murch has quit IRC
 822017-11-11T01:45:46  *** Deacyde has joined #bitcoin-core-dev
 832017-11-11T01:47:32  *** Deacyded has quit IRC
 842017-11-11T01:50:57  *** wxss has quit IRC
 852017-11-11T01:54:57  *** CubicEarth has quit IRC
 862017-11-11T01:55:03  *** LumberCartel has joined #bitcoin-core-dev
 872017-11-11T01:55:21  <ZSky> sipa: what was used in 0.1.0?
 882017-11-11T01:55:45  <sipa> BDB
 892017-11-11T01:56:04  <ZSky> ok right
 902017-11-11T01:56:18  <ZSky> sipa: do you do python sometimes?
 912017-11-11T01:56:23  <sipa> hardly
 922017-11-11T01:57:01  <ZSky> i was looking for such a keystore in py
 932017-11-11T01:57:19  *** jtimon has quit IRC
 942017-11-11T01:59:23  *** promag has quit IRC
 952017-11-11T02:01:01  *** promag has joined #bitcoin-core-dev
 962017-11-11T02:02:56  <ZSky> sipa: thanks for these informations!
 972017-11-11T02:04:02  <sipa> yw
 982017-11-11T02:05:35  *** promag has quit IRC
 992017-11-11T02:07:55  *** ZSky has quit IRC
1002017-11-11T02:11:35  *** jb55 has joined #bitcoin-core-dev
1012017-11-11T02:12:15  *** LumberCartel has quit IRC
1022017-11-11T02:21:48  *** Chris_Stewart_5 has joined #bitcoin-core-dev
1032017-11-11T02:41:19  *** Ylbam has quit IRC
1042017-11-11T02:50:52  *** bule has quit IRC
1052017-11-11T02:54:04  *** coin_trader has joined #bitcoin-core-dev
1062017-11-11T02:54:24  *** LumberCartel has joined #bitcoin-core-dev
1072017-11-11T03:02:31  *** promag has joined #bitcoin-core-dev
1082017-11-11T03:20:29  *** LumberCartel has quit IRC
1092017-11-11T03:39:23  *** StopAndDecrypt has quit IRC
1102017-11-11T03:52:57  *** Chris_Stewart_5 has quit IRC
1112017-11-11T03:53:24  <cluelessperson> aj: thank you for your help
1122017-11-11T04:02:18  *** LumberCartel has joined #bitcoin-core-dev
1132017-11-11T04:08:05  *** LumberCartel_ has joined #bitcoin-core-dev
1142017-11-11T04:08:52  *** LumberCartel has quit IRC
1152017-11-11T04:47:27  *** LumberCartel_ has quit IRC
1162017-11-11T05:21:48  *** jsonBateman has joined #bitcoin-core-dev
1172017-11-11T05:49:11  <cluelessperson> How can I help you all?
1182017-11-11T05:49:18  <cluelessperson> I can do some devops
1192017-11-11T05:49:20  <cluelessperson> put me to use
1202017-11-11T05:51:48  *** LumberCartel has joined #bitcoin-core-dev
1212017-11-11T05:52:25  *** LumberCartel_ has joined #bitcoin-core-dev
1222017-11-11T05:56:17  *** LumberCartel has quit IRC
1232017-11-11T05:56:57  *** LumberCartel has joined #bitcoin-core-dev
1242017-11-11T06:17:06  <meshcollider> devops...199
1252017-11-11T06:43:27  *** AaronvanW has quit IRC
1262017-11-11T06:50:12  *** jb55 has quit IRC
1272017-11-11T07:03:09  *** bule has joined #bitcoin-core-dev
1282017-11-11T07:07:06  *** d9b4bef9 has quit IRC
1292017-11-11T07:08:13  *** d9b4bef9 has joined #bitcoin-core-dev
1302017-11-11T07:15:06  *** bule has quit IRC
1312017-11-11T07:15:29  *** bule has joined #bitcoin-core-dev
1322017-11-11T07:28:34  <mryandao> meshcollider: lol, funny
1332017-11-11T08:03:09  <meshcollider> CScripts in the wallet don't have birth-times associated with them do they
1342017-11-11T08:31:40  *** bule has quit IRC
1352017-11-11T08:52:49  *** Cogito_Ergo_Sum has joined #bitcoin-core-dev
1362017-11-11T08:52:49  *** Cogito_Ergo_Sum has joined #bitcoin-core-dev
1372017-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
1382017-11-11T09:38:10  *** Mf_ has joined #bitcoin-core-dev
1392017-11-11T09:40:34  *** harrymm has quit IRC
1402017-11-11T10:02:23  *** wxss has joined #bitcoin-core-dev
1412017-11-11T10:16:58  *** lukedashjr has joined #bitcoin-core-dev
1422017-11-11T10:17:35  *** luke-jr has quit IRC
1432017-11-11T10:21:21  *** lukedashjr is now known as luke-jr
1442017-11-11T10:44:32  *** fanquake has joined #bitcoin-core-dev
1452017-11-11T10:52:47  *** jsonBateman has quit IRC
1462017-11-11T11:02:44  *** Ylbam has joined #bitcoin-core-dev
1472017-11-11T11:03:54  *** cluelessperson has quit IRC
1482017-11-11T11:20:19  *** SopaXorzTaker has quit IRC
1492017-11-11T11:21:08  *** SopaXorzTaker has joined #bitcoin-core-dev
1502017-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
1512017-11-11T11:27:45  <luke-jr> ^ hope that satisfies concerns with #11441
1522017-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
1532017-11-11T11:34:04  *** intcat has quit IRC
1542017-11-11T11:36:12  *** ghost43 has quit IRC
1552017-11-11T11:36:54  *** ghost43 has joined #bitcoin-core-dev
1562017-11-11T11:36:54  *** intcat has joined #bitcoin-core-dev
1572017-11-11T11:44:04  *** laurentmt has joined #bitcoin-core-dev
1582017-11-11T11:55:53  *** jtimon has joined #bitcoin-core-dev
1592017-11-11T12:05:12  *** fanquake has quit IRC
1602017-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?
1612017-11-11T12:14:13  <meshcollider> Maybe called "Abandoned" or something
1622017-11-11T12:15:52  *** CubicEarth has joined #bitcoin-core-dev
1632017-11-11T12:27:40  *** harrymm has joined #bitcoin-core-dev
1642017-11-11T12:55:54  *** CubicEarth has quit IRC
1652017-11-11T12:56:12  *** CubicEarth has joined #bitcoin-core-dev
1662017-11-11T13:01:07  *** BogadMohogad has joined #bitcoin-core-dev
1672017-11-11T13:04:24  *** BogadMohogad has quit IRC
1682017-11-11T13:06:47  *** BogadMohogad has joined #bitcoin-core-dev
1692017-11-11T13:09:27  *** BogadMohogad has quit IRC
1702017-11-11T13:25:16  *** jsonBateman has joined #bitcoin-core-dev
1712017-11-11T13:31:15  *** Chris_Stewart_5 has joined #bitcoin-core-dev
1722017-11-11T13:41:41  <bitcoin-git> [bitcoin] laanwj pushed 1 new commit to master: https://github.com/bitcoin/bitcoin/commit/6de3203cdce2d8532f39f9f9428c33b0dd53f623
1732017-11-11T13:41:42  <bitcoin-git> bitcoin/master 6de3203 Wladimir J. van der Laan: doc: Add historical release notes for 0.15.1...
1742017-11-11T13:42:28  *** ak has joined #bitcoin-core-dev
1752017-11-11T13:42:50  *** F0lks has joined #bitcoin-core-dev
1762017-11-11T13:43:18  <F0lks> Hi, is there some devs' available for a little talk ? It won't be long I promise
1772017-11-11T13:49:49  *** F0lks has quit IRC
1782017-11-11T13:54:05  *** ak has quit IRC
1792017-11-11T14:01:53  *** jsonBateman has quit IRC
1802017-11-11T14:06:12  *** Chris_Stewart_5 has quit IRC
1812017-11-11T14:11:11  *** Chris_Stewart_5 has joined #bitcoin-core-dev
1822017-11-11T14:22:59  *** vicenteH has quit IRC
1832017-11-11T14:23:09  *** vicenteH has joined #bitcoin-core-dev
1842017-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
1852017-11-11T14:35:23  *** meshcollider has quit IRC
1862017-11-11T14:51:54  *** grio has joined #bitcoin-core-dev
1872017-11-11T14:52:49  *** Chris_Stewart_5 has quit IRC
1882017-11-11T14:57:47  <wumpus> release date 2017-11-11
1892017-11-11T14:57:48  <wumpus> nice
1902017-11-11T14:59:52  <wxss> \o/
1912017-11-11T15:02:10  <paveljanik> remaining days to Xmas: *42*.
1922017-11-11T15:07:13  *** BogadMohogad has joined #bitcoin-core-dev
1932017-11-11T15:11:33  <LumberCartel> paveljanik++
1942017-11-11T15:15:21  *** grio has quit IRC
1952017-11-11T15:15:45  *** grio has joined #bitcoin-core-dev
1962017-11-11T15:16:58  <wumpus> :D
1972017-11-11T15:26:33  *** BogadMohogad has quit IRC
1982017-11-11T15:35:50  *** AaronvanW has joined #bitcoin-core-dev
1992017-11-11T15:48:06  *** LowKey has joined #bitcoin-core-dev
2002017-11-11T16:15:03  <MarcoFalke> meshcollider: Sure will do that
2012017-11-11T16:23:22  *** davec has quit IRC
2022017-11-11T16:23:54  <LowKey> hi, anyone know how to build mac wallet for bitcoin?
2032017-11-11T16:25:09  *** bsm117532 has joined #bitcoin-core-dev
2042017-11-11T16:27:36  <mlz> LowKey, ask in #bitcoin channel
2052017-11-11T16:27:53  <LowKey> ok
2062017-11-11T16:32:28  *** Cogito_Ergo_Sum has quit IRC
2072017-11-11T16:38:59  *** Chris_Stewart_5 has joined #bitcoin-core-dev
2082017-11-11T16:44:15  *** davec has joined #bitcoin-core-dev
2092017-11-11T16:58:23  *** Emrecan has joined #bitcoin-core-dev
2102017-11-11T17:05:38  *** bitmex has joined #bitcoin-core-dev
2112017-11-11T17:07:46  *** Chris_Stewart_5 has quit IRC
2122017-11-11T17:17:14  *** Chris_Stewart_5 has joined #bitcoin-core-dev
2132017-11-11T17:22:30  *** bitmex has quit IRC
2142017-11-11T17:24:32  *** belcher has joined #bitcoin-core-dev
2152017-11-11T17:31:49  *** Chris_Stewart_5 has quit IRC
2162017-11-11T17:39:56  <bitcoin-git> [bitcoin] MarcoFalke pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/6de3203cdce2...95e14dc81dd3
2172017-11-11T17:39:57  <bitcoin-git> bitcoin/master ea0cd24 John Newbery: [tests] Tidy up receivedby.py...
2182017-11-11T17:39:58  <bitcoin-git> bitcoin/master 5e0ba8f John Newbery: [wallet] getreceivedbyaddress should return error if address is not mine
2192017-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...
2202017-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
2212017-11-11T17:55:15  *** LumberCartel has quit IRC
2222017-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
2232017-11-11T18:07:08  *** jb55 has joined #bitcoin-core-dev
2242017-11-11T18:12:25  <sipa> MarcoFalke: your PGP signatures scare me!
2252017-11-11T18:12:34  <MarcoFalke> why is that?
2262017-11-11T18:12:54  <sipa> any time i receive a bitcoin related email with PGP headers i assume there is some terrible vulnerability :)
2272017-11-11T18:15:26  <MarcoFalke> heh. Makes sense now that you say it. I will try to figure out something else.
2282017-11-11T18:20:02  <sipa> oh please no, it was not a complaint :)
2292017-11-11T18:23:31  *** chjj has joined #bitcoin-core-dev
2302017-11-11T18:32:33  *** jb55 has quit IRC
2312017-11-11T18:33:30  *** LowKey has quit IRC
2322017-11-11T18:33:50  <bitcoin-git> [bitcoin] MarcoFalke pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/95e14dc81dd3...13e352dc53de
2332017-11-11T18:33:50  <bitcoin-git> bitcoin/master 927f4ff Luke Dashjr: GUI: Receive: Remove option to reuse a previous address...
2342017-11-11T18:33:51  <bitcoin-git> bitcoin/master 13e352d MarcoFalke: Merge #3716: GUI: Receive: Remove option to reuse a previous address...
2352017-11-11T18:35:46  *** bule has joined #bitcoin-core-dev
2362017-11-11T18:42:09  *** Zorro has joined #bitcoin-core-dev
2372017-11-11T18:42:33  *** Zorro is now known as Guest23250
2382017-11-11T18:44:40  *** jb55 has joined #bitcoin-core-dev
2392017-11-11T18:48:38  *** LumberCartel has joined #bitcoin-core-dev
2402017-11-11T18:55:30  *** Emrecan has quit IRC
2412017-11-11T18:59:43  *** shesek has joined #bitcoin-core-dev
2422017-11-11T19:06:54  *** bsm117532 has quit IRC
2432017-11-11T19:11:18  *** chjj has quit IRC
2442017-11-11T19:12:31  *** meshcollider has joined #bitcoin-core-dev
2452017-11-11T19:12:47  *** laurentmt has quit IRC
2462017-11-11T19:16:47  *** luke-jr has quit IRC
2472017-11-11T19:17:29  *** luke-jr has joined #bitcoin-core-dev
2482017-11-11T19:22:25  *** chjj has joined #bitcoin-core-dev
2492017-11-11T19:22:43  *** laurentmt has joined #bitcoin-core-dev
2502017-11-11T19:22:52  *** laurentmt has quit IRC
2512017-11-11T19:24:15  *** Guest23250 has quit IRC
2522017-11-11T19:33:19  <luke-jr> jnewbery: promag: am I missing something? :/ http://luke.dashjr.org/tmp/screenshots/Screenshot_20171111_192644.png
2532017-11-11T19:36:12  *** sawtooth has joined #bitcoin-core-dev
2542017-11-11T19:46:37  *** SopaXorzTaker has quit IRC
2552017-11-11T19:46:39  *** LumberCartel has quit IRC
2562017-11-11T20:24:50  *** LumberCartel has joined #bitcoin-core-dev
2572017-11-11T20:25:26  *** promag has quit IRC
2582017-11-11T20:25:39  *** promag has joined #bitcoin-core-dev
2592017-11-11T20:27:06  <promag> luke-jr: what you mean? the test verifies that initialblockdownload is a key of getblockchaininfo response
2602017-11-11T20:29:01  *** LumberCartel has quit IRC
2612017-11-11T20:29:04  *** reallll has joined #bitcoin-core-dev
2622017-11-11T20:29:12  <promag> https://github.com/jnewbery/bitcoin/blob/11413646be2a6d0bf1c857753bfcec0af60c72b8/test/functional/blockchain.py#L54-L73
2632017-11-11T20:29:53  <promag> or am I wrong?
2642017-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
2652017-11-11T20:31:49  *** reallll has quit IRC
2662017-11-11T20:32:31  *** belcher has quit IRC
2672017-11-11T20:38:39  *** job42 has joined #bitcoin-core-dev
2682017-11-11T20:45:20  *** job42 has quit IRC
2692017-11-11T20:49:25  *** sawtooth has quit IRC
2702017-11-11T20:49:41  *** chjj has quit IRC
2712017-11-11T21:03:00  <luke-jr> promag: for some reason, GitHub isn't showing me that part :|
2722017-11-11T21:04:42  <luke-jr> oh well
2732017-11-11T21:07:51  *** LumberCartel has joined #bitcoin-core-dev
2742017-11-11T21:17:20  *** belcher has joined #bitcoin-core-dev
2752017-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
2762017-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
2772017-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
2782017-11-11T21:22:17  *** Victorsueca has quit IRC
2792017-11-11T21:25:25  *** roidster has joined #bitcoin-core-dev
2802017-11-11T21:27:27  *** jb55 has quit IRC
2812017-11-11T21:40:03  *** tiagotrs has joined #bitcoin-core-dev
2822017-11-11T21:47:35  *** grio has quit IRC
2832017-11-11T21:50:34  *** LumberCartel_ has joined #bitcoin-core-dev
2842017-11-11T21:53:43  *** LumberCartel has quit IRC
2852017-11-11T21:54:23  *** PaulCapestany has quit IRC
2862017-11-11T22:00:30  *** PaulCape_ has joined #bitcoin-core-dev
2872017-11-11T22:06:23  *** roidster has quit IRC
2882017-11-11T22:23:50  *** roidster has joined #bitcoin-core-dev
2892017-11-11T22:26:06  *** Chris_Stewart_5 has joined #bitcoin-core-dev
2902017-11-11T22:35:01  *** Chris_Stewart_5 has quit IRC
2912017-11-11T22:41:58  *** fLip-SIde has joined #bitcoin-core-dev
2922017-11-11T23:05:39  *** dcousens has joined #bitcoin-core-dev
2932017-11-11T23:10:23  *** roidster has quit IRC
2942017-11-11T23:11:20  <bitcoin-git> [bitcoin] MarcoFalke pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/13e352dc53de...2adbddb03840
2952017-11-11T23:11:20  <bitcoin-git> bitcoin/master 1e65f0f practicalswift: Use compile-time constants instead of unnamed enumerations (remove "enum hack")
2962017-11-11T23:11:20  <bitcoin-git> bitcoin/master 2adbddb MarcoFalke: Merge #10749: Use compile-time constants instead of unnamed enumerations (remove "enum hack")...
2972017-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
2982017-11-11T23:25:34  *** belcher has quit IRC
2992017-11-11T23:26:52  *** wxss has quit IRC
3002017-11-11T23:27:29  *** wxss has joined #bitcoin-core-dev
3012017-11-11T23:30:20  *** linux__ has joined #bitcoin-core-dev
3022017-11-11T23:33:40  *** LumberCartel has joined #bitcoin-core-dev
3032017-11-11T23:38:55  *** tiagotrs has quit IRC
3042017-11-11T23:47:40  *** linux__ has quit IRC