12017-07-30T00:02:24  *** snq has quit IRC
  22017-07-30T00:02:29  *** snkey has joined #bitcoin-core-dev
  32017-07-30T00:08:32  *** unholymachine has quit IRC
  42017-07-30T00:08:42  *** unholymachine has joined #bitcoin-core-dev
  52017-07-30T00:08:59  *** unholymachine has quit IRC
  62017-07-30T00:30:50  *** hsmiths has quit IRC
  72017-07-30T00:35:59  *** Javon has quit IRC
  82017-07-30T00:36:12  *** Kyler has joined #bitcoin-core-dev
  92017-07-30T00:36:32  *** Kyler is now known as Guest83498
 102017-07-30T00:37:34  *** Aaronvan_ has quit IRC
 112017-07-30T00:38:13  *** AaronvanW has joined #bitcoin-core-dev
 122017-07-30T00:42:18  *** AaronvanW has quit IRC
 132017-07-30T01:19:45  *** unholymachine has joined #bitcoin-core-dev
 142017-07-30T01:37:52  *** miknotauro has joined #bitcoin-core-dev
 152017-07-30T01:39:56  <gmaxwell> Trolling for ACKs. https://github.com/bitcoin/bitcoin/pull/10945   (people may want to start benchmarking pre-0.15 and this changes performance)
 162017-07-30T01:40:11  <gmaxwell> BlueMatt: ^
 172017-07-30T01:44:36  <sipa> gmaxwell: extrapolated txcount with the data currently in chainparams is only 0.5% off of the real number
 182017-07-30T01:44:46  <sipa> so updating it may be unnecessary
 192017-07-30T01:46:20  <gmaxwell> we don't really handle pre vs post assume valid right in terms of estimation though...
 202017-07-30T01:57:47  *** Ylbam has quit IRC
 212017-07-30T03:24:02  *** Eagle[TM] has joined #bitcoin-core-dev
 222017-07-30T03:26:19  *** EagleTM has quit IRC
 232017-07-30T03:41:17  <kanzure> regtest mode sendrawtransaction telling me "insufficient fee". 543 byte transaction is paying 16560 sat fee. 2 inputs, 7 outputs. why is this happening?
 242017-07-30T03:44:06  <kanzure> debug=1 is not revealing anything about this.
 252017-07-30T03:47:04  <gmaxwell> what are the values of the outputs?
 262017-07-30T03:47:52  <kanzure> 6 of them are p2pkh 0.08333333 BTC to same address, one is to same address but 0.4998344 BTC.
 272017-07-30T03:48:19  *** jeep-ss has quit IRC
 282017-07-30T03:51:13  *** miknotauro has quit IRC
 292017-07-30T03:52:20  <kanzure> also nSequence=0 on all the inputs
 302017-07-30T03:52:59  <gmaxwell> the error messages from sendraw are not always accurate because it's actually very complicated to get that right.
 312017-07-30T03:53:17  <gmaxwell> is it possible that you're spending an excessively long chain of unconfirmed inputs or something like that?
 322017-07-30T03:53:33  <kanzure> quick way to test would be to mine a dozen blocks and try again?
 332017-07-30T03:53:47  <gmaxwell> yes.
 342017-07-30T03:54:19  <gmaxwell> kanzure: there is a limit on the size of a graph of unconfirmed txn. (it's pretty genrous but in a test it's also not hard to hit)
 352017-07-30T03:55:12  <kanzure> whoops shouldn't have generated those blocks. (it's hooked up to an application that decided to spend the inputs aonther way.)
 362017-07-30T03:56:26  <kanzure> so.. my setup is not designed to produce chains of unconfirmed transactions. according to getrawtransaction, the inputs had >20 confirmations at the time i was getting "insufficient fee".
 372017-07-30T03:57:32  <gmaxwell> are you absolutely sure the fee is what you think it was?
 382017-07-30T03:57:37  <kanzure> parent tx was 3558 bytes. ~100 outputs.
 392017-07-30T03:57:44  <kanzure> yea i checked with getrawtransaction and checked the 2 inputs.
 402017-07-30T03:58:14  <kanzure> and then i summed the output nValues
 412017-07-30T03:58:53  <kanzure> oh well, i'll try again and this time turn off the other application.
 422017-07-30T03:59:19  <gmaxwell> kanzure: oh if your other output had already spent the coin you might be "insufficient fee for replacement"!
 432017-07-30T04:01:15  <kanzure> oh that's clever. yes it could be possible that my system is unintentionally generating a replacement. i could unset nSequence if that would help the error message situation.
 442017-07-30T04:02:18  <gmaxwell> I would bet that you're making a replacement unintentionally, setting nseq max on all txn would make that more clear.
 452017-07-30T04:12:21  <kanzure> testing. will get back.
 462017-07-30T04:48:55  *** hsmiths_ has joined #bitcoin-core-dev
 472017-07-30T04:49:53  <kanzure> pretty sure that was it, thank you. even worse is that i had a parameter/flag for toggling whether that specific transaction should conflict with previous attempts (as a sort of way of not exhausting my ability to plan, it wasn't intended to be a replacement: but with nSequence=0 that's how it was probably getting interpreted).
 482017-07-30T04:54:09  <gmaxwell> there isn't really a 1:1 mapping between "human network rules" and "actual network rules"  many rules are implied by others, so it's kind of a crapshoot when something is rejected to map that to the most meaningful reason.
 492017-07-30T05:01:20  *** EagleTM has joined #bitcoin-core-dev
 502017-07-30T05:04:05  *** Eagle[TM] has quit IRC
 512017-07-30T05:04:06  *** eck has quit IRC
 522017-07-30T05:06:08  <kanzure> yes for this to give me the correct error message it would have to know about the previous transaction and be able to report about it or something.. which is different from just attempting a replacement as it does now.
 532017-07-30T05:06:51  <gmaxwell> well like it could tell you it was a double spend but that would be super confusing if you were actually attempting a replacement.
 542017-07-30T05:07:25  <kanzure> yep, to be fair i'm pretty sure my exact situation is technically a replacement and/or double spend, even though this was a bug on my end.
 552017-07-30T05:29:53  *** eck has joined #bitcoin-core-dev
 562017-07-30T05:46:07  *** dgenr8 has quit IRC
 572017-07-30T05:52:53  *** miknotauro has joined #bitcoin-core-dev
 582017-07-30T06:27:09  *** CubicEarth has joined #bitcoin-core-dev
 592017-07-30T06:27:16  *** justanotheruser has quit IRC
 602017-07-30T06:28:35  *** justanotheruser has joined #bitcoin-core-dev
 612017-07-30T06:34:13  *** CubicEarth has quit IRC
 622017-07-30T06:45:17  *** justanotheruser has quit IRC
 632017-07-30T06:45:39  *** justanotheruser has joined #bitcoin-core-dev
 642017-07-30T06:58:08  *** marcoagner has quit IRC
 652017-07-30T07:06:44  *** harding has quit IRC
 662017-07-30T07:10:25  *** marcoagner has joined #bitcoin-core-dev
 672017-07-30T07:17:17  *** jamesob has quit IRC
 682017-07-30T07:17:35  *** Ylbam has joined #bitcoin-core-dev
 692017-07-30T07:26:19  *** Emcy has joined #bitcoin-core-dev
 702017-07-30T07:31:22  *** dgenr8 has joined #bitcoin-core-dev
 712017-07-30T07:35:23  *** J-wolf has joined #bitcoin-core-dev
 722017-07-30T07:39:25  *** hsmiths_ is now known as hsmiths
 732017-07-30T08:27:09  *** J-wolf has quit IRC
 742017-07-30T08:36:35  *** Giszmo has quit IRC
 752017-07-30T08:43:29  *** AaronvanW has joined #bitcoin-core-dev
 762017-07-30T08:46:02  *** Yogaqueef has quit IRC
 772017-07-30T08:53:39  *** J-wolf has joined #bitcoin-core-dev
 782017-07-30T09:08:12  *** Mordan has joined #bitcoin-core-dev
 792017-07-30T09:16:25  *** J-wolf_ has joined #bitcoin-core-dev
 802017-07-30T09:16:28  *** Mordan has quit IRC
 812017-07-30T09:20:08  *** J-wolf has quit IRC
 822017-07-30T09:33:40  *** otium has joined #bitcoin-core-dev
 832017-07-30T09:35:51  *** otium has quit IRC
 842017-07-30T09:41:12  <bitcoin-git> [bitcoin] jl2012 opened pull request #10953: [Refactor] Combine scriptPubKey and amount as CTxOut in CScriptCheck (master...combine_script_amount) https://github.com/bitcoin/bitcoin/pull/10953
 852017-07-30T09:42:00  *** AaronvanW has quit IRC
 862017-07-30T09:42:16  *** Ylbam has quit IRC
 872017-07-30T10:02:14  *** SopaXorzTaker has joined #bitcoin-core-dev
 882017-07-30T10:08:47  *** harrymm has quit IRC
 892017-07-30T10:10:02  *** harrymm has joined #bitcoin-core-dev
 902017-07-30T10:25:55  *** Guest83498 has quit IRC
 912017-07-30T10:29:39  *** Ylbam has joined #bitcoin-core-dev
 922017-07-30T10:29:40  *** J-wolf has joined #bitcoin-core-dev
 932017-07-30T10:29:49  *** J-wolf_ has quit IRC
 942017-07-30T10:30:12  *** Mordan has joined #bitcoin-core-dev
 952017-07-30T10:34:47  *** AaronvanW has joined #bitcoin-core-dev
 962017-07-30T10:41:12  *** AsadSalman has joined #bitcoin-core-dev
 972017-07-30T10:44:12  *** AsadSalman is now known as asadsalman
 982017-07-30T10:58:18  *** venzen has joined #bitcoin-core-dev
 992017-07-30T10:58:23  *** J-wolf has quit IRC
1002017-07-30T11:16:27  *** Mordan has quit IRC
1012017-07-30T11:18:18  *** AaronvanW has quit IRC
1022017-07-30T11:18:53  *** AaronvanW has joined #bitcoin-core-dev
1032017-07-30T11:23:20  *** AaronvanW has quit IRC
1042017-07-30T11:30:27  *** str4d has joined #bitcoin-core-dev
1052017-07-30T11:33:52  *** J-wolf has joined #bitcoin-core-dev
1062017-07-30T11:33:55  *** Guyver2 has joined #bitcoin-core-dev
1072017-07-30T11:50:57  *** str4d has quit IRC
1082017-07-30T11:59:19  *** goatpig has joined #bitcoin-core-dev
1092017-07-30T12:04:49  *** str4d has joined #bitcoin-core-dev
1102017-07-30T12:23:42  *** aqquadro has joined #bitcoin-core-dev
1112017-07-30T12:25:47  *** miknotauro has quit IRC
1122017-07-30T12:27:44  *** str4d has quit IRC
1132017-07-30T12:31:11  *** str4d has joined #bitcoin-core-dev
1142017-07-30T12:51:17  *** asadsalman has quit IRC
1152017-07-30T12:54:36  *** Mordan has joined #bitcoin-core-dev
1162017-07-30T12:57:17  *** d_t has quit IRC
1172017-07-30T13:06:17  *** str4d has quit IRC
1182017-07-30T13:07:55  *** asadsalman has joined #bitcoin-core-dev
1192017-07-30T13:12:08  *** asadsalman has quit IRC
1202017-07-30T13:12:21  *** d_t has joined #bitcoin-core-dev
1212017-07-30T13:17:17  *** J-wolf has quit IRC
1222017-07-30T13:24:08  *** d_t has quit IRC
1232017-07-30T13:26:00  *** jeep-ss has joined #bitcoin-core-dev
1242017-07-30T13:32:03  *** vFSgrcFGBJHg has joined #bitcoin-core-dev
1252017-07-30T13:46:21  *** Yoghurt114 has joined #bitcoin-core-dev
1262017-07-30T13:47:29  <Yoghurt114> hello, has anything changed in the getrawtransaction result format recently?
1272017-07-30T13:47:42  <Yoghurt114> I can't make sense of the following: https://pastebin.com/VjwD8Qhz (random segwit testnet tx)
1282017-07-30T13:52:12  *** Guyver2 has quit IRC
1292017-07-30T14:03:49  <luke-jr> Yoghurt114: Segwit transactions don't use the old tx format..
1302017-07-30T14:04:08  <gmaxwell> Yoghurt114: thats segwit.
1312017-07-30T14:04:21  <gmaxwell> Yoghurt114: the 0 vin count is the flag that the tx is using segwit.
1322017-07-30T14:04:34  <luke-jr> although it's strange that it seems to have a scriptSig for the sole input?
1332017-07-30T14:04:36  <gmaxwell> the real vin count follows after it.
1342017-07-30T14:04:52  <gmaxwell> luke-jr: p2sh embedded segwit, I'd assume.
1352017-07-30T14:04:58  <luke-jr> ah
1362017-07-30T14:05:34  <luke-jr> Yoghurt114: also there's witness data before the lockitme
1372017-07-30T14:05:35  <gmaxwell> Yoghurt114: it would be beyond totally awesome if you got your colorcoding tools working with segwit.
1382017-07-30T14:06:18  <gmaxwell> Yoghurt114: I wasted a couple hours this morning trying to find a reddit post SOMEONE made that colorcoded a hexdump of a block to show the witness data inside it, to disprove some fud that was saying with segwit signatures weren't in blocks.
1392017-07-30T14:06:45  <gmaxwell> someone actually suggested it was you and pointed me to your site, which might have resulted in other people nagging you to update your stuff for segwit. :)
1402017-07-30T14:07:24  <Yoghurt114> that is indeed what's happened ;)
1412017-07-30T14:10:34  <Yoghurt114> so the 00 00 01 01 following the version, what does it mean?
1422017-07-30T14:11:03  <Yoghurt114> also I can't explain the last part of the raw tx, what used to be a 4 byte locktime is now 0120000000000000000000000000000000000000000000000000000000000000000000000000
1432017-07-30T14:14:09  <Yoghurt114> which I'm guessing is 01 (1 thing) 20 (32 bytes) 0000000000000000000000000000000000000000000000000000000000000000 (hash) and then the locktime 00000000 - but what is the thing, and what does the hash point to?
1442017-07-30T14:14:58  <luke-jr> Yoghurt114: before vin count is 00 01
1452017-07-30T14:15:18  <luke-jr> before locktime is, for each input, a vector of witness data
1462017-07-30T14:15:41  <luke-jr> each of which is number-of-witness-elements, and for each, the size and data itself
1472017-07-30T14:17:30  <Yoghurt114> is the 01 following the 00 the segwit program version?
1482017-07-30T14:20:29  *** snq has joined #bitcoin-core-dev
1492017-07-30T14:22:50  *** snkey has quit IRC
1502017-07-30T14:23:40  <intcat> is the new segwit transaction serialization format written up anywhere?
1512017-07-30T14:26:09  *** jamesob has joined #bitcoin-core-dev
1522017-07-30T14:26:33  <gmaxwell> intcat: sure, in the specs, that one is in BIP 144 https://github.com/bitcoin/bips/blob/master/bip-0144.mediawiki
1532017-07-30T14:27:03  <gmaxwell> intcat: come on, you think we'd really change the consensus protocol in any way without writing an extensive specification?
1542017-07-30T14:28:38  <luke-jr> Yoghurt114: no, the sequence at the start merely serves to distinguish segwit from non-segwit
1552017-07-30T14:28:39  <intcat> course not, just had some trouble finding it - didnt expect it under "peer services" ;)
1562017-07-30T14:30:55  <Yoghurt114> "The marker byte is set to zero so that this structure will never parse as a valid transaction in a parser that does not support this BIP." well - the thing crashed, so I guess the spec is well-defined ;)
1572017-07-30T14:32:27  <gmaxwell> intcat: serialization itself is a property of the p2p protocol, in theory at least you could have a mix of peers using something entirely different between each other, all in consensus with the network. What matters for consensus is the hashing.
1582017-07-30T14:45:07  *** Yogaqueef has joined #bitcoin-core-dev
1592017-07-30T14:46:14  <intcat> is the txin[] the same format as before?
1602017-07-30T14:47:41  *** str4d has joined #bitcoin-core-dev
1612017-07-30T14:49:38  <gmaxwell> intcat: yes.
1622017-07-30T15:07:25  <jl2012> intcat, gmaxwell: the serialization is indeed consensus because of hashing and weight counting
1632017-07-30T15:26:22  *** ryanofsky has quit IRC
1642017-07-30T15:26:29  *** ryanofsky has joined #bitcoin-core-dev
1652017-07-30T15:29:58  *** jamesob has quit IRC
1662017-07-30T15:46:52  *** owowo has quit IRC
1672017-07-30T15:52:51  *** cbentley has joined #bitcoin-core-dev
1682017-07-30T15:53:30  *** owowo has joined #bitcoin-core-dev
1692017-07-30T15:54:56  *** Mordan has quit IRC
1702017-07-30T15:55:44  *** CubicEarth has joined #bitcoin-core-dev
1712017-07-30T16:00:16  *** ula has joined #bitcoin-core-dev
1722017-07-30T16:09:18  *** jamesob has joined #bitcoin-core-dev
1732017-07-30T16:41:17  *** EagleTM has quit IRC
1742017-07-30T16:45:23  *** EagleTM has joined #bitcoin-core-dev
1752017-07-30T16:47:00  *** snkey has joined #bitcoin-core-dev
1762017-07-30T16:49:27  *** snq has quit IRC
1772017-07-30T16:49:28  *** chjj has quit IRC
1782017-07-30T16:51:40  *** chjj has joined #bitcoin-core-dev
1792017-07-30T16:59:20  *** EagleTM has quit IRC
1802017-07-30T17:02:27  *** EagleTM has joined #bitcoin-core-dev
1812017-07-30T17:28:26  *** Guyver2 has joined #bitcoin-core-dev
1822017-07-30T17:35:51  *** AaronvanW has joined #bitcoin-core-dev
1832017-07-30T17:36:46  *** Aaronvan_ has joined #bitcoin-core-dev
1842017-07-30T17:38:12  *** Aaronva__ has joined #bitcoin-core-dev
1852017-07-30T17:39:50  *** AaronvanW has quit IRC
1862017-07-30T17:41:53  *** Aaronvan_ has quit IRC
1872017-07-30T17:46:07  *** EagleTM has quit IRC
1882017-07-30T17:46:17  *** str4d has quit IRC
1892017-07-30T17:53:31  *** Aaronva__ has quit IRC
1902017-07-30T17:54:09  *** AaronvanW has joined #bitcoin-core-dev
1912017-07-30T17:56:17  *** cbentley has quit IRC
1922017-07-30T17:56:32  *** Guyver2 has quit IRC
1932017-07-30T17:58:28  *** AaronvanW has quit IRC
1942017-07-30T17:59:28  *** eck has quit IRC
1952017-07-30T18:09:03  *** AaronvanW has joined #bitcoin-core-dev
1962017-07-30T18:23:17  *** Chris_Stewart_5 has joined #bitcoin-core-dev
1972017-07-30T18:26:04  *** deep-book-gk_ has joined #bitcoin-core-dev
1982017-07-30T18:28:13  *** deep-book-gk_ has left #bitcoin-core-dev
1992017-07-30T18:32:23  *** EagleTM has joined #bitcoin-core-dev
2002017-07-30T18:33:36  *** Guyver2 has joined #bitcoin-core-dev
2012017-07-30T18:43:39  *** SopaXorzTaker has quit IRC
2022017-07-30T18:46:17  *** Guyver2_ has joined #bitcoin-core-dev
2032017-07-30T18:50:17  *** Guyver2 has quit IRC
2042017-07-30T18:50:23  *** Guyver2_ is now known as Guyver2
2052017-07-30T18:55:05  *** batman10_ has joined #bitcoin-core-dev
2062017-07-30T18:59:15  *** asadsalman has joined #bitcoin-core-dev
2072017-07-30T18:59:27  *** batman10_ has quit IRC
2082017-07-30T19:00:24  *** Guyver2 has quit IRC
2092017-07-30T19:03:25  *** Mordan has joined #bitcoin-core-dev
2102017-07-30T19:08:06  *** EagleTM has quit IRC
2112017-07-30T19:12:34  *** EagleTM has joined #bitcoin-core-dev
2122017-07-30T19:20:37  *** tiagotrs has joined #bitcoin-core-dev
2132017-07-30T19:21:33  *** tiagotrs has quit IRC
2142017-07-30T19:25:08  *** tiagotrs has joined #bitcoin-core-dev
2152017-07-30T19:27:50  <bitcoin-git> [bitcoin] practicalswift opened pull request #10956: Fix typos (master...typos-201708) https://github.com/bitcoin/bitcoin/pull/10956
2162017-07-30T19:28:40  *** asadsalman has quit IRC
2172017-07-30T19:40:34  *** Guyver2 has joined #bitcoin-core-dev
2182017-07-30T19:40:56  *** Kelbie has joined #bitcoin-core-dev
2192017-07-30T19:45:20  <Yoghurt114> gmaxwell: https://i.imgur.com/8hO4yoH.png it'll look something like this
2202017-07-30T19:45:39  *** asadsalman has joined #bitcoin-core-dev
2212017-07-30T19:52:21  <Emcy> has there ever been a known example of an SPV client being scammed/partitioned off deliberately
2222017-07-30T19:52:47  <Emcy> or otherwise attacked using the trust concessions that SPV clients have to mkae
2232017-07-30T19:53:04  <Emcy> shit wrong place ignore
2242017-07-30T19:54:49  *** Guyver2 has quit IRC
2252017-07-30T20:02:53  *** AaronvanW has quit IRC
2262017-07-30T20:03:30  *** AaronvanW has joined #bitcoin-core-dev
2272017-07-30T20:06:10  *** CubicEarth has quit IRC
2282017-07-30T20:08:10  *** AaronvanW has quit IRC
2292017-07-30T20:15:35  *** tucenaber_ has quit IRC
2302017-07-30T20:17:58  *** JackH has joined #bitcoin-core-dev
2312017-07-30T20:19:53  *** Mordan has quit IRC
2322017-07-30T20:20:26  *** CubicEarth has joined #bitcoin-core-dev
2332017-07-30T20:33:26  *** CubicEar_ has joined #bitcoin-core-dev
2342017-07-30T20:33:26  *** Yogaqueef has quit IRC
2352017-07-30T20:33:46  *** Mordan has joined #bitcoin-core-dev
2362017-07-30T20:34:18  *** CubicEa__ has joined #bitcoin-core-dev
2372017-07-30T20:34:20  *** CubicEar_ has quit IRC
2382017-07-30T20:34:34  *** jamesob has quit IRC
2392017-07-30T20:34:58  *** jamesob has joined #bitcoin-core-dev
2402017-07-30T20:36:17  *** tucenaber_ has joined #bitcoin-core-dev
2412017-07-30T20:36:52  *** CubicEarth has quit IRC
2422017-07-30T20:44:27  *** jamesob has quit IRC
2432017-07-30T20:50:48  *** Chris_Stewart_5 has quit IRC
2442017-07-30T20:53:45  *** CubicEa__ has quit IRC
2452017-07-30T20:54:14  *** CubicEarth has joined #bitcoin-core-dev
2462017-07-30T20:56:02  *** deep-book-gk_ has joined #bitcoin-core-dev
2472017-07-30T20:56:05  *** Yoghurt114 has quit IRC
2482017-07-30T20:56:07  *** deep-book-gk_ has left #bitcoin-core-dev
2492017-07-30T20:58:17  *** CubicEarth has quit IRC
2502017-07-30T21:08:38  *** cdecker|afk is now known as cdecker
2512017-07-30T21:09:16  *** asadsalman has quit IRC
2522017-07-30T21:13:29  *** snq has joined #bitcoin-core-dev
2532017-07-30T21:14:10  *** Kelbie has quit IRC
2542017-07-30T21:14:50  *** CubicEarth has joined #bitcoin-core-dev
2552017-07-30T21:15:52  *** snkey has quit IRC
2562017-07-30T21:41:45  <bitcoin-git> [bitcoin] practicalswift opened pull request #10957: Do not return a BIP9Stats object with uninitialized values (master...bip9status) https://github.com/bitcoin/bitcoin/pull/10957
2572017-07-30T22:02:49  *** asadsalman has joined #bitcoin-core-dev
2582017-07-30T22:05:00  *** AaronvanW has joined #bitcoin-core-dev
2592017-07-30T22:10:17  *** AaronvanW has quit IRC
2602017-07-30T22:18:43  *** jamesob has joined #bitcoin-core-dev
2612017-07-30T22:21:13  *** Chris_Stewart_5 has joined #bitcoin-core-dev
2622017-07-30T22:26:28  *** Emcy_ has joined #bitcoin-core-dev
2632017-07-30T22:30:15  *** Emcy has quit IRC
2642017-07-30T22:34:58  *** timothy has joined #bitcoin-core-dev
2652017-07-30T22:36:29  *** timothy has quit IRC
2662017-07-30T22:37:28  *** Chris_Stewart_5 has quit IRC
2672017-07-30T23:08:05  *** da2ce7_ has quit IRC
2682017-07-30T23:09:31  *** herzmeister[m] has quit IRC
2692017-07-30T23:09:44  *** kewde[m] has quit IRC
2702017-07-30T23:09:53  *** draadpiraat[m] has quit IRC
2712017-07-30T23:22:14  *** da2ce7 has joined #bitcoin-core-dev
2722017-07-30T23:24:50  *** CubicEarth has quit IRC
2732017-07-30T23:34:06  *** promag has joined #bitcoin-core-dev
2742017-07-30T23:35:25  *** kewde[m] has joined #bitcoin-core-dev
2752017-07-30T23:35:50  *** Mordan has quit IRC
2762017-07-30T23:38:21  *** promag has quit IRC
2772017-07-30T23:41:56  *** Chris_Stewart_5 has joined #bitcoin-core-dev
2782017-07-30T23:43:34  *** vFSgrcFGBJHg has quit IRC
2792017-07-30T23:53:18  *** asadsalman has quit IRC
2802017-07-30T23:53:57  *** tiagotrs has quit IRC
2812017-07-30T23:56:27  *** promag has joined #bitcoin-core-dev