12017-07-31T00:00:36  *** JackH has quit IRC
  22017-07-31T00:07:06  *** draadpiraat[m] has joined #bitcoin-core-dev
  32017-07-31T00:07:06  *** herzmeister[m] has joined #bitcoin-core-dev
  42017-07-31T00:27:20  *** promag has quit IRC
  52017-07-31T00:29:13  *** str4d has joined #bitcoin-core-dev
  62017-07-31T00:34:47  *** str4d has quit IRC
  72017-07-31T00:39:00  *** coredump_ has joined #bitcoin-core-dev
  82017-07-31T00:39:22  *** coredump__ has joined #bitcoin-core-dev
  92017-07-31T00:40:53  *** coredump___ has joined #bitcoin-core-dev
 102017-07-31T00:40:58  *** coredump____ has joined #bitcoin-core-dev
 112017-07-31T00:46:35  *** coredump_____ has joined #bitcoin-core-dev
 122017-07-31T00:47:16  *** Chris_Stewart_5 has quit IRC
 132017-07-31T00:51:01  *** yFGBJHg has joined #bitcoin-core-dev
 142017-07-31T00:56:17  *** dabura667 has joined #bitcoin-core-dev
 152017-07-31T01:00:15  *** deep-book-gk has joined #bitcoin-core-dev
 162017-07-31T01:00:50  *** deep-book-gk has left #bitcoin-core-dev
 172017-07-31T01:21:50  *** JackH has joined #bitcoin-core-dev
 182017-07-31T01:22:16  *** Ylbam has quit IRC
 192017-07-31T01:23:16  *** JackH has quit IRC
 202017-07-31T01:24:01  *** JackH has joined #bitcoin-core-dev
 212017-07-31T01:25:03  *** JackH has quit IRC
 222017-07-31T01:25:20  *** d_t has joined #bitcoin-core-dev
 232017-07-31T01:26:20  *** JackH has joined #bitcoin-core-dev
 242017-07-31T01:33:17  *** jamesob has quit IRC
 252017-07-31T01:41:31  *** chjj has quit IRC
 262017-07-31T01:43:46  *** magnanamous has joined #bitcoin-core-dev
 272017-07-31T01:44:51  *** magnanamous has quit IRC
 282017-07-31T01:53:11  *** JackH has quit IRC
 292017-07-31T01:54:07  *** JackH has joined #bitcoin-core-dev
 302017-07-31T01:54:22  *** coredump______ has joined #bitcoin-core-dev
 312017-07-31T01:54:59  *** coredump_______ has joined #bitcoin-core-dev
 322017-07-31T01:57:37  *** JackH has quit IRC
 332017-07-31T02:02:01  *** [b__b] has joined #bitcoin-core-dev
 342017-07-31T02:07:57  *** [b__b] has quit IRC
 352017-07-31T02:08:12  *** [b__b] has joined #bitcoin-core-dev
 362017-07-31T02:11:00  *** chjj has joined #bitcoin-core-dev
 372017-07-31T02:19:29  *** coredump_______ has quit IRC
 382017-07-31T02:19:49  *** Chris_Stewart_5 has joined #bitcoin-core-dev
 392017-07-31T02:48:40  *** d_t has quit IRC
 402017-07-31T02:49:02  *** d_t has joined #bitcoin-core-dev
 412017-07-31T03:04:39  *** rasengan has joined #bitcoin-core-dev
 422017-07-31T03:04:50  *** d_t has quit IRC
 432017-07-31T03:05:16  *** d_t has joined #bitcoin-core-dev
 442017-07-31T03:23:31  *** Eagle[TM] has joined #bitcoin-core-dev
 452017-07-31T03:24:49  *** EagleTM has quit IRC
 462017-07-31T03:28:38  *** ill has joined #bitcoin-core-dev
 472017-07-31T03:34:28  *** Chris_Stewart_5 has quit IRC
 482017-07-31T03:35:30  *** jeep-ss has quit IRC
 492017-07-31T04:05:57  *** asadsalman has joined #bitcoin-core-dev
 502017-07-31T04:10:17  *** asadsalman has quit IRC
 512017-07-31T04:21:46  *** asadsalman has joined #bitcoin-core-dev
 522017-07-31T04:29:58  *** asadsalman has quit IRC
 532017-07-31T04:42:00  *** asadsalman has joined #bitcoin-core-dev
 542017-07-31T04:49:43  *** miknotauro has joined #bitcoin-core-dev
 552017-07-31T04:57:13  *** bryyan has joined #bitcoin-core-dev
 562017-07-31T05:01:35  <bryyan> if Bitcoin core is written in C++, why not support any kind of native interface directly (numbers as represented in memory going over tcp sockets as an RPC opposed to the serialised JSON RPC) ?
 572017-07-31T05:02:55  <gmaxwell> because either it exposes internal datastructures which are unstable and change from version to version to outside applications;  or it has to specify yet another encoding.
 582017-07-31T05:03:13  <gmaxwell> and we do already have a binary encoding for most thigns: use the p2p protocol.
 592017-07-31T05:04:23  <bryyan> I mean't like json but in a C struct
 602017-07-31T05:04:45  <bryyan> and not a char* but between applications you would include a .h file containing the structs
 612017-07-31T05:07:07  <sipa> structs don't have a well-defined serialization to bytes
 622017-07-31T05:07:20  <bryyan> on the same architecture they do
 632017-07-31T05:07:22  <sipa> different architectures store them differently in memory
 642017-07-31T05:07:32  <sipa> just a different compilation option may change them
 652017-07-31T05:07:46  <bryyan> yes, but why write bitcoin core in c++, a platform dependent language under many circumstances?
 662017-07-31T05:08:31  <bryyan> additionally its often feasible to have multiple AMD64 machines which use the same format for C variables
 672017-07-31T05:08:50  <sipa> efficiency, tight control over resource usage, high-level
 682017-07-31T05:09:08  <bryyan> JSON is kind of cpu intensive to cast back and forth between native types you know
 692017-07-31T05:09:20  <bryyan> directly copying 4 bytes of memory is far cheaper
 702017-07-31T05:09:20  <sipa> you can use REST
 712017-07-31T05:09:33  <bryyan> what is REST?
 722017-07-31T05:09:42  <sipa> for some data with well-defined serialization, Bitcoin Core has a REST interface
 732017-07-31T05:09:59  <sipa> you can fetch full blocks and transactions directly in binary network format over it
 742017-07-31T05:10:13  <bryyan> without having to send a bunch of ascii json around?
 752017-07-31T05:10:15  <sipa> to avoid the JSON encoding/decoding overhead
 762017-07-31T05:10:15  <sipa> yes
 772017-07-31T05:10:38  <sipa> but you still need a serialization/deserialization layer... it's not just a struct that gets sent over the network
 782017-07-31T05:10:51  <bryyan> yes, but I'm looking for just that
 792017-07-31T05:11:05  *** cryptapus_afk has quit IRC
 802017-07-31T05:11:24  <bryyan> I assume I have 2 machines of identical architecture and the fastest means of transfering data is in native format
 812017-07-31T05:11:33  <sipa> https://github.com/bitcoin/bitcoin/blob/master/doc/REST-interface.md
 822017-07-31T05:11:42  <sipa> there is no 'native' format
 832017-07-31T05:11:59  <bryyan> a C int type is native by my definition
 842017-07-31T05:12:12  <bryyan> will look identical on 2 AMD64 machines
 852017-07-31T05:12:16  <sipa> what's the native representation for a transaction?
 862017-07-31T05:12:35  <sipa> it has a number of nested data structure of variable size
 872017-07-31T05:12:40  <gmaxwell> none of the interesting data in bitcoin is just an int or a simple arrays of them.
 882017-07-31T05:13:01  <gmaxwell> and as I said above, we do have a binary seralization of data: the p2p format.
 892017-07-31T05:13:04  <bryyan> if you query for your balance, a float or double could work as a returned native type
 902017-07-31T05:13:07  <gmaxwell> all ready for anyone to use.
 912017-07-31T05:13:18  <gmaxwell> oh jesus bitcoin amounts aren't natively floating point.
 922017-07-31T05:13:29  <gmaxwell> one should generally not use floating point when dealing with money.
 932017-07-31T05:13:33  *** J-wolf has joined #bitcoin-core-dev
 942017-07-31T05:13:56  <sipa> bryyan: the cost of computing the balance is orders of magnitude larger than running a json deserializers
 952017-07-31T05:13:59  <bryyan> you know, floating point has a certain number of digits of accuracy, just don't go too far
 962017-07-31T05:14:23  <bryyan> I don't think we're talking about the same thing
 972017-07-31T05:14:32  <sipa> fine
 982017-07-31T05:15:04  <bryyan> in a native binary (such as bitcoind) certain instructions are applied to do math with integers and floating point types, the format of those values in memory are the native types
 992017-07-31T05:15:15  *** cryptapus_afk has joined #bitcoin-core-dev
1002017-07-31T05:15:46  *** asadsalman has quit IRC
1012017-07-31T05:16:31  <bryyan> pretty printed json is like 64 bytes to represent a 4-byte int
1022017-07-31T05:16:34  <bryyan> very slow
1032017-07-31T05:17:49  <bryyan> additional information is transfered over the network when keeping a header file with bitcoind and with the RPC client containing C macros which resolve to short 2-byte sequences for calls, and structs for reciving will take up far less thoroughput
1042017-07-31T05:18:08  <bryyan> and after the word network there should be a comma I meant to put
1052017-07-31T05:18:52  <bryyan> if you've written programs in C you would know what I'm talking about
1062017-07-31T05:23:11  *** GK1wmSU has joined #bitcoin-core-dev
1072017-07-31T05:23:44  *** GK1wmSU has left #bitcoin-core-dev
1082017-07-31T05:25:37  <praxeology> bryyan: how about create software and find the RPC api as a bottleneck before you look to optimize it
1092017-07-31T05:26:22  <bryyan> for one thing, C doesn't handle JSON very well
1102017-07-31T05:26:24  *** Guyver2 has joined #bitcoin-core-dev
1112017-07-31T05:26:31  <bryyan> although thats more of a side problem
1122017-07-31T05:28:41  <phantomcircuit> bryyan, the question you want to be asking yourself right now is
1132017-07-31T05:28:43  <phantomcircuit> BUT WHY
1142017-07-31T05:30:01  <bryyan> largely because I plan to make an operating system, and JSON puts in wayyy to much computational overhead compared to even a native-type conversion service
1152017-07-31T05:30:34  *** asadsalman has joined #bitcoin-core-dev
1162017-07-31T05:30:43  <bryyan> you can convert endianness, format, and signing polarity far quicker then serialising and de-serialising some json
1172017-07-31T05:31:50  <gmaxwell> Go away earlygrey.
1182017-07-31T05:33:50  *** miknotauro has quit IRC
1192017-07-31T05:35:11  <bryyan> you could probably process 10s of requests in native format by the time a single JSON request completes
1202017-07-31T05:35:28  <bryyan> maybe even 100s with a well-optimized binary
1212017-07-31T05:36:43  *** _GK1wmSU has joined #bitcoin-core-dev
1222017-07-31T05:39:07  *** _GK1wmSU has left #bitcoin-core-dev
1232017-07-31T05:49:27  *** Guyver2 has quit IRC
1242017-07-31T05:51:41  *** asadsalman has quit IRC
1252017-07-31T06:26:01  <luke-jr> bryyan: jansson handles JSON good enough
1262017-07-31T06:34:35  *** aqquadro has quit IRC
1272017-07-31T06:41:28  *** BashCo_ has quit IRC
1282017-07-31T06:42:27  *** J-wolf has quit IRC
1292017-07-31T06:45:34  *** Ylbam has joined #bitcoin-core-dev
1302017-07-31T06:50:10  *** SopaXorzTaker has joined #bitcoin-core-dev
1312017-07-31T06:52:59  <praxeology> luke-jr: did you see he is making an operating system?
1322017-07-31T06:53:01  <bitcoin-git> [bitcoin] sipa opened pull request #10958: Update to latest Bitcoin patches for LevelDB (master...20170731_leveldb) https://github.com/bitcoin/bitcoin/pull/10958
1332017-07-31T07:03:16  *** BashCo has joined #bitcoin-core-dev
1342017-07-31T07:04:01  *** J-wolf has joined #bitcoin-core-dev
1352017-07-31T07:06:26  *** coredump_____ has quit IRC
1362017-07-31T07:06:26  *** coredump____ has quit IRC
1372017-07-31T07:06:26  *** coredump___ has quit IRC
1382017-07-31T07:06:26  *** coredump__ has quit IRC
1392017-07-31T07:06:26  *** coredump_ has quit IRC
1402017-07-31T07:06:47  *** coredump______ has quit IRC
1412017-07-31T07:28:55  *** JackH has joined #bitcoin-core-dev
1422017-07-31T07:33:28  <MarcoFalke> jnewbery: The issue is that the last commit of #10853 conflicts with other pulls tagged for 0.15
1432017-07-31T07:33:30  <gribble> https://github.com/bitcoin/bitcoin/issues/10853 | [tests] Fix RPC failure testing (again) by jnewbery · Pull Request #10853 · bitcoin/bitcoin · GitHub
1442017-07-31T07:33:45  <MarcoFalke> At this point I'd prefer if we didn't force a rebase on tagged pulls
1452017-07-31T07:39:31  *** BashCo_ has joined #bitcoin-core-dev
1462017-07-31T07:40:16  <jnewbery> MarcoFalke: I'm happy for 10853 to wait until after rc1
1472017-07-31T07:40:28  <jnewbery> Unless you want it before, in which case I'll split it
1482017-07-31T07:42:46  *** BashCo has quit IRC
1492017-07-31T07:43:00  *** Oscillate has joined #bitcoin-core-dev
1502017-07-31T07:43:51  <MarcoFalke> Fine, let's defer it for now.
1512017-07-31T07:44:05  <Oscillate> Hi,
1522017-07-31T07:45:46  <Oscillate> New to bitcoin here, can somebody tell me if the split is neccecary fot bitcoin hardfork ??
1532017-07-31T07:45:55  <sipa> Oscillate: #bitcoin
1542017-07-31T07:46:00  <Oscillate> for*
1552017-07-31T07:46:07  <Oscillate> thank you sipa
1562017-07-31T07:47:52  *** d_t has quit IRC
1572017-07-31T07:50:43  *** tucenaber_ has quit IRC
1582017-07-31T07:50:57  *** tucenaber_ has joined #bitcoin-core-dev
1592017-07-31T07:57:26  <luke-jr> wumpus: can I get access to bitcoin-devwiki? seems github is picky about pushing changes via git/ssh :/
1602017-07-31T07:58:34  *** Oscillate has left #bitcoin-core-dev
1612017-07-31T08:06:33  *** J-wolf_ has joined #bitcoin-core-dev
1622017-07-31T08:07:28  *** J-wolf has quit IRC
1632017-07-31T08:12:41  <luke-jr> copypa;ted for no,
1642017-07-31T08:36:24  *** Eagle[TM] has quit IRC
1652017-07-31T08:37:16  *** J-wolf_ has quit IRC
1662017-07-31T08:38:01  *** J-wolf has joined #bitcoin-core-dev
1672017-07-31T08:45:42  <jnewbery> Hmmm, https://botbot.me/freenode/bitcoin-core-dev/ seems to have a gap between https://botbot.me/freenode/bitcoin-core-dev/2017-07-28/?msg=89162968&page=1 and https://botbot.me/freenode/bitcoin-core-dev/2017-07-31/?msg=89185019&page=1 . Are there any other public archives?
1682017-07-31T08:46:20  *** J-wolf has quit IRC
1692017-07-31T08:46:36  <jnewbery> (I have my own logs, but it's useful to be able to send a URL)
1702017-07-31T08:46:49  *** EagleTM has joined #bitcoin-core-dev
1712017-07-31T08:47:13  <bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/70888a39c43a...2a50b11586a2
1722017-07-31T08:47:13  <bitcoin-git> bitcoin/master 9a8b054 Gregory Maxwell: Update defaultAssumeValid according to release-process.md....
1732017-07-31T08:47:14  <bitcoin-git> bitcoin/master 2a50b11 Wladimir J. van der Laan: Merge #10945: Update defaultAssumeValid according to release-process.md....
1742017-07-31T08:47:15  *** J-wolf has joined #bitcoin-core-dev
1752017-07-31T08:47:53  <bitcoin-git> [bitcoin] laanwj closed pull request #10945: Update defaultAssumeValid according to release-process.md. (master...201707-update-assumevalid) https://github.com/bitcoin/bitcoin/pull/10945
1762017-07-31T08:53:04  *** J-wolf has quit IRC
1772017-07-31T08:53:41  *** promag has joined #bitcoin-core-dev
1782017-07-31T08:55:01  *** Orin2 has joined #bitcoin-core-dev
1792017-07-31T08:55:37  *** promag has left #bitcoin-core-dev
1802017-07-31T09:14:55  *** promag has joined #bitcoin-core-dev
1812017-07-31T09:20:24  *** promag has quit IRC
1822017-07-31T09:24:10  *** timothy has joined #bitcoin-core-dev
1832017-07-31T09:25:29  *** miknotauro has joined #bitcoin-core-dev
1842017-07-31T09:33:12  *** timothy has quit IRC
1852017-07-31T09:35:34  <bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/2a50b11586a2...df3a6f4ee4e2
1862017-07-31T09:35:34  <bitcoin-git> bitcoin/master f0acedd Wladimir J. van der Laan: p2p: Hardcoded seeds update pre-0.15 branch
1872017-07-31T09:35:35  <bitcoin-git> bitcoin/master df3a6f4 Wladimir J. van der Laan: Merge #10948: p2p: Hardcoded seeds update pre-0.15 branch...
1882017-07-31T09:36:14  <bitcoin-git> [bitcoin] laanwj closed pull request #10948: p2p: Hardcoded seeds update pre-0.15 branch (master...2017_07_seeds_update) https://github.com/bitcoin/bitcoin/pull/10948
1892017-07-31T09:37:05  *** timothy has joined #bitcoin-core-dev
1902017-07-31T09:39:52  *** miknotauro has quit IRC
1912017-07-31T10:01:28  *** laurentmt has joined #bitcoin-core-dev
1922017-07-31T10:02:06  *** SopaXorzTaker has quit IRC
1932017-07-31T10:03:56  <bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/df3a6f4ee4e2...af563971fcbe
1942017-07-31T10:03:56  <bitcoin-git> bitcoin/master bdd5543 Alex Morcos: Clarify help message for -discardfee
1952017-07-31T10:03:57  <bitcoin-git> bitcoin/master af56397 Wladimir J. van der Laan: Merge #10949: Clarify help message for -discardfee...
1962017-07-31T10:04:02  *** laurentmt has quit IRC
1972017-07-31T10:04:29  <bitcoin-git> [bitcoin] laanwj closed pull request #10949: Clarify help message for -discardfee (master...betterhelp) https://github.com/bitcoin/bitcoin/pull/10949
1982017-07-31T10:15:03  *** jannes has joined #bitcoin-core-dev
1992017-07-31T10:17:37  *** J-wolf has joined #bitcoin-core-dev
2002017-07-31T10:25:25  <bitcoin-git> [bitcoin] laanwj pushed 1 new commit to master: https://github.com/bitcoin/bitcoin/commit/42307c4bf363d695c68a65ba7cbf8d6790079abf
2012017-07-31T10:25:25  <bitcoin-git> bitcoin/master 42307c4 Wladimir J. van der Laan: qt: Periodic translations update...
2022017-07-31T10:32:19  <bitcoin-git> [bitcoin] practicalswift opened pull request #10961: Improve readability of DecodeBase58Check(...) (master...DecodeBase58Check-cleanup) https://github.com/bitcoin/bitcoin/pull/10961
2032017-07-31T10:38:15  *** SopaXorzTaker has joined #bitcoin-core-dev
2042017-07-31T10:44:13  *** Giszmo has joined #bitcoin-core-dev
2052017-07-31T10:46:15  *** coredump_ has joined #bitcoin-core-dev
2062017-07-31T10:46:18  *** coredump__ has joined #bitcoin-core-dev
2072017-07-31T10:46:25  *** coredump___ has joined #bitcoin-core-dev
2082017-07-31T10:46:28  *** coredump____ has joined #bitcoin-core-dev
2092017-07-31T10:46:30  *** coredump_____ has joined #bitcoin-core-dev
2102017-07-31T10:46:46  *** coredump______ has joined #bitcoin-core-dev
2112017-07-31T10:46:49  *** AaronvanW has joined #bitcoin-core-dev
2122017-07-31T10:46:54  *** coredump___ has quit IRC
2132017-07-31T10:46:54  *** coredump_ has quit IRC
2142017-07-31T10:46:56  *** coredump_____ has quit IRC
2152017-07-31T10:46:57  *** coredump____ has quit IRC
2162017-07-31T10:46:58  *** coredump__ has quit IRC
2172017-07-31T10:47:00  *** coredump______ has quit IRC
2182017-07-31T10:48:03  *** AaronvanW has quit IRC
2192017-07-31T10:48:37  *** AaronvanW has joined #bitcoin-core-dev
2202017-07-31T10:53:25  *** laurentmt has joined #bitcoin-core-dev
2212017-07-31T10:58:41  *** btcdrak has quit IRC
2222017-07-31T11:04:27  *** JackH has quit IRC
2232017-07-31T11:13:34  *** laurentmt has quit IRC
2242017-07-31T11:13:42  *** JackH has joined #bitcoin-core-dev
2252017-07-31T11:14:28  *** JackH has quit IRC
2262017-07-31T11:14:47  *** JackH has joined #bitcoin-core-dev
2272017-07-31T11:59:10  *** Yogaqueef has joined #bitcoin-core-dev
2282017-07-31T12:01:09  *** herzmeister[m] has quit IRC
2292017-07-31T12:01:09  *** kewde[m] has quit IRC
2302017-07-31T12:01:43  *** draadpiraat[m] has quit IRC
2312017-07-31T12:03:22  *** EagleTM has quit IRC
2322017-07-31T12:03:59  *** cysm has quit IRC
2332017-07-31T12:04:00  *** Dyaheon has quit IRC
2342017-07-31T12:06:05  *** Dyaheon has joined #bitcoin-core-dev
2352017-07-31T12:07:12  *** cysm has joined #bitcoin-core-dev
2362017-07-31T12:10:34  *** dabura667 has quit IRC
2372017-07-31T12:22:27  *** laurentmt has joined #bitcoin-core-dev
2382017-07-31T12:22:49  *** Chris_Stewart_5 has joined #bitcoin-core-dev
2392017-07-31T12:41:54  *** Yogaqueef has quit IRC
2402017-07-31T12:44:40  *** JackH has quit IRC
2412017-07-31T12:49:40  *** Aaronvan_ has joined #bitcoin-core-dev
2422017-07-31T12:51:46  *** AaronvanW has quit IRC
2432017-07-31T12:53:03  *** elias19r has joined #bitcoin-core-dev
2442017-07-31T12:53:59  *** Chris_Stewart_5 has quit IRC
2452017-07-31T13:03:32  *** jeep-ss has joined #bitcoin-core-dev
2462017-07-31T13:19:48  *** Chris_Stewart_5 has joined #bitcoin-core-dev
2472017-07-31T13:34:46  *** RoyceX has joined #bitcoin-core-dev
2482017-07-31T13:35:50  *** cheese_ has quit IRC
2492017-07-31T13:39:25  *** tiagotrs has joined #bitcoin-core-dev
2502017-07-31T13:40:00  *** tiagotrs has joined #bitcoin-core-dev
2512017-07-31T13:43:12  *** jeep-ss has quit IRC
2522017-07-31T13:47:07  *** EagleTM has joined #bitcoin-core-dev
2532017-07-31T13:52:41  *** intcat has quit IRC
2542017-07-31T13:53:57  *** laurentmt has quit IRC
2552017-07-31T13:54:43  *** intcat has joined #bitcoin-core-dev
2562017-07-31T13:59:38  *** zelest has quit IRC
2572017-07-31T14:00:57  *** J-wolf has quit IRC
2582017-07-31T14:04:26  *** promag has joined #bitcoin-core-dev
2592017-07-31T14:10:58  *** promag has quit IRC
2602017-07-31T14:19:16  *** tiagotrs has quit IRC
2612017-07-31T14:33:27  *** AaronvanW has joined #bitcoin-core-dev
2622017-07-31T14:37:11  *** Aaronvan_ has quit IRC
2632017-07-31T14:37:29  *** herzmeister[m] has joined #bitcoin-core-dev
2642017-07-31T14:38:19  *** AaronvanW has quit IRC
2652017-07-31T14:40:49  *** pandabull has joined #bitcoin-core-dev
2662017-07-31T14:41:45  *** JackH has joined #bitcoin-core-dev
2672017-07-31T14:42:58  *** kewde[m] has joined #bitcoin-core-dev
2682017-07-31T14:43:39  *** Murch has joined #bitcoin-core-dev
2692017-07-31T14:44:09  *** kexkey has joined #bitcoin-core-dev
2702017-07-31T14:52:42  *** promag has joined #bitcoin-core-dev
2712017-07-31T14:53:17  *** kexkey_ has joined #bitcoin-core-dev
2722017-07-31T14:55:19  *** kexkey has quit IRC
2732017-07-31T14:58:37  *** AaronvanW has joined #bitcoin-core-dev
2742017-07-31T15:00:04  *** AaronvanW has quit IRC
2752017-07-31T15:00:42  *** AaronvanW has joined #bitcoin-core-dev
2762017-07-31T15:03:34  *** promag has quit IRC
2772017-07-31T15:04:14  *** btcdrak has joined #bitcoin-core-dev
2782017-07-31T15:05:27  <bitcoin-git> [bitcoin] practicalswift opened pull request #10963: [bench] Restore format state of cout after printing with std::fixed/setprecision (master...restore-format-state-of-cout) https://github.com/bitcoin/bitcoin/pull/10963
2792017-07-31T15:05:54  *** timothy has quit IRC
2802017-07-31T15:14:32  *** promag has joined #bitcoin-core-dev
2812017-07-31T15:24:59  <bitcoin-git> [bitcoin] practicalswift opened pull request #10964: Pass SendCoinsRecipient (208 bytes) and CConnman::Options (168 bytes) by reference (master...pass-big-parameters-by-reference) https://github.com/bitcoin/bitcoin/pull/10964
2822017-07-31T15:27:58  *** tiagotrs_ has joined #bitcoin-core-dev
2832017-07-31T15:33:44  *** tiagotrs has joined #bitcoin-core-dev
2842017-07-31T15:41:06  *** PaulCape_ has quit IRC
2852017-07-31T15:43:46  *** PaulCapestany has joined #bitcoin-core-dev
2862017-07-31T15:46:12  *** Chris_Stewart_5 has quit IRC
2872017-07-31T15:47:39  *** Ylbam has quit IRC
2882017-07-31T15:51:06  *** BashCo_ has quit IRC
2892017-07-31T15:55:09  *** promag has quit IRC
2902017-07-31T15:59:22  *** twistedline has quit IRC
2912017-07-31T15:59:29  *** twistedline has joined #bitcoin-core-dev
2922017-07-31T16:01:57  *** AaronvanW has quit IRC
2932017-07-31T16:05:15  <BlueMatt> #8330 could get a merge, tbh, its a free few-10s-of-k memory win
2942017-07-31T16:05:17  <gribble> https://github.com/bitcoin/bitcoin/issues/8330 | Structure Packing Optimizations in C{,Mutable}Transaction by JeremyRubin · Pull Request #8330 · bitcoin/bitcoin · GitHub
2952017-07-31T16:06:23  *** parazyd has quit IRC
2962017-07-31T16:06:45  *** parazyd has joined #bitcoin-core-dev
2972017-07-31T16:06:46  *** parazyd has joined #bitcoin-core-dev
2982017-07-31T16:20:49  *** praxeology has quit IRC
2992017-07-31T16:22:03  *** EagleTM has quit IRC
3002017-07-31T16:25:05  *** Chris_Stewart_5 has joined #bitcoin-core-dev
3012017-07-31T16:28:47  *** chjj has quit IRC
3022017-07-31T16:32:18  *** BashCo has joined #bitcoin-core-dev
3032017-07-31T16:32:24  *** Chris_Stewart_5 has quit IRC
3042017-07-31T16:33:34  *** snkey has joined #bitcoin-core-dev
3052017-07-31T16:36:08  *** snq has quit IRC
3062017-07-31T16:43:57  *** corebob has joined #bitcoin-core-dev
3072017-07-31T16:44:46  *** tiagotrs has quit IRC
3082017-07-31T16:45:13  *** d_t has joined #bitcoin-core-dev
3092017-07-31T16:48:37  *** Chris_Stewart_5 has joined #bitcoin-core-dev
3102017-07-31T16:49:51  *** AaronvanW has joined #bitcoin-core-dev
3112017-07-31T16:51:30  *** Aaronvan_ has joined #bitcoin-core-dev
3122017-07-31T16:55:10  *** Yogaqueef has joined #bitcoin-core-dev
3132017-07-31T16:55:41  *** AaronvanW has quit IRC
3142017-07-31T16:58:36  *** abpa has joined #bitcoin-core-dev
3152017-07-31T16:59:48  *** Chris_Stewart_5 has quit IRC
3162017-07-31T17:01:05  *** praxeology has joined #bitcoin-core-dev
3172017-07-31T17:09:18  *** Ylbam has joined #bitcoin-core-dev
3182017-07-31T17:13:55  *** Chris_Stewart_5 has joined #bitcoin-core-dev
3192017-07-31T17:14:28  *** jannes has quit IRC
3202017-07-31T17:18:35  *** Chris_Stewart_5 has quit IRC
3212017-07-31T17:27:36  *** jamesob has joined #bitcoin-core-dev
3222017-07-31T17:32:10  *** Chris_Stewart_5 has joined #bitcoin-core-dev
3232017-07-31T17:37:00  *** jtimon has joined #bitcoin-core-dev
3242017-07-31T17:51:24  <bitcoin-git> [bitcoin] practicalswift opened pull request #10965: Use the noexcept specifier (C++11) instead of deprecated throw() (master...noexcept) https://github.com/bitcoin/bitcoin/pull/10965
3252017-07-31T18:02:59  *** Deacydal has joined #bitcoin-core-dev
3262017-07-31T18:04:58  *** newbold has joined #bitcoin-core-dev
3272017-07-31T18:05:22  *** newbold is now known as neatnik
3282017-07-31T18:06:26  *** Deacyde has quit IRC
3292017-07-31T18:08:32  *** Chris_Stewart_5 has quit IRC
3302017-07-31T18:17:02  *** praxeology1 has joined #bitcoin-core-dev
3312017-07-31T18:17:31  *** praxeology1 has joined #bitcoin-core-dev
3322017-07-31T18:18:48  *** praxeology has quit IRC
3332017-07-31T18:21:46  *** Chris_Stewart_5 has joined #bitcoin-core-dev
3342017-07-31T18:50:17  *** AaronvanW has joined #bitcoin-core-dev
3352017-07-31T18:50:37  <achow101> whoever runs the doxygen site at dev.visucore.com needs to update their ssl cert. it expired this morning and I can't access it
3362017-07-31T18:50:38  *** twistedline has quit IRC
3372017-07-31T18:51:54  <MarcoFalke> wumpus: ^
3382017-07-31T18:53:26  *** eck has joined #bitcoin-core-dev
3392017-07-31T18:53:27  <MarcoFalke> It is issued by let's encrypt... I thought the point of that CA was that such updates are automatically done
3402017-07-31T18:54:05  *** Aaronvan_ has quit IRC
3412017-07-31T18:54:14  *** owowo has quit IRC
3422017-07-31T18:55:48  *** twistedline has joined #bitcoin-core-dev
3432017-07-31T18:56:48  *** Aaronvan_ has joined #bitcoin-core-dev
3442017-07-31T18:57:37  *** Aaronva__ has joined #bitcoin-core-dev
3452017-07-31T18:59:14  *** owowo has joined #bitcoin-core-dev
3462017-07-31T18:59:40  *** AaronvanW has quit IRC
3472017-07-31T19:01:16  *** Aaronvan_ has quit IRC
3482017-07-31T19:17:13  *** Aaronva__ is now known as AaronvanW
3492017-07-31T19:19:45  <sipa> MarcoFalke: they have automated the procedure for renewal to almost nothing, but there is stipl some script you need to run (potentially in a cronjob)
3502017-07-31T19:19:52  <sipa> wumpus: ^
3512017-07-31T19:21:13  *** NewLiberty has joined #bitcoin-core-dev
3522017-07-31T19:27:33  *** praxeology1 has quit IRC
3532017-07-31T19:35:23  *** str4d has joined #bitcoin-core-dev
3542017-07-31T19:37:02  *** treebeardd has joined #bitcoin-core-dev
3552017-07-31T19:39:09  *** Deacyded has joined #bitcoin-core-dev
3562017-07-31T19:40:31  *** SopaXorzTaker has quit IRC
3572017-07-31T19:43:04  *** Deacydal has quit IRC
3582017-07-31T19:49:20  *** Chris_Stewart_5 has quit IRC
3592017-07-31T19:50:59  *** treebeardd has quit IRC
3602017-07-31T19:51:48  *** treebeardd has joined #bitcoin-core-dev
3612017-07-31T19:53:38  *** Guyver2 has joined #bitcoin-core-dev
3622017-07-31T20:04:10  *** Deacydal has joined #bitcoin-core-dev
3632017-07-31T20:06:06  *** Chris_Stewart_5 has joined #bitcoin-core-dev
3642017-07-31T20:07:31  *** Deacyded has quit IRC
3652017-07-31T20:17:29  *** corebob has quit IRC
3662017-07-31T20:24:12  *** Guyver2 has quit IRC
3672017-07-31T20:25:15  *** EagleTM has joined #bitcoin-core-dev
3682017-07-31T20:29:01  *** chjj has joined #bitcoin-core-dev
3692017-07-31T20:29:28  *** str4d has quit IRC
3702017-07-31T20:45:38  *** str4d has joined #bitcoin-core-dev
3712017-07-31T20:59:10  *** chjj has quit IRC
3722017-07-31T20:59:23  *** Aaronvan_ has joined #bitcoin-core-dev
3732017-07-31T21:00:46  *** AaronvanW has quit IRC
3742017-07-31T21:08:16  *** Aaronvan_ is now known as AaronvanW
3752017-07-31T21:08:24  *** elias19r has quit IRC
3762017-07-31T21:12:21  *** chjj has joined #bitcoin-core-dev
3772017-07-31T21:12:52  *** str4d has quit IRC
3782017-07-31T21:15:17  *** NewLiberty_ has joined #bitcoin-core-dev
3792017-07-31T21:18:34  *** NewLiberty has quit IRC
3802017-07-31T21:30:35  *** theymos has joined #bitcoin-core-dev
3812017-07-31T21:34:28  *** snq has joined #bitcoin-core-dev
3822017-07-31T21:35:37  *** dermoth_ has joined #bitcoin-core-dev
3832017-07-31T21:36:36  *** chjj has quit IRC
3842017-07-31T21:37:05  *** snkey has quit IRC
3852017-07-31T21:37:53  *** dermoth has quit IRC
3862017-07-31T21:40:08  <bitcoin-git> [bitcoin] promag opened pull request #10966: Add walletnotify functional test (master...2017-07-walletnotify-functional-test) https://github.com/bitcoin/bitcoin/pull/10966
3872017-07-31T21:48:48  *** Chris_Stewart_5 has quit IRC
3882017-07-31T21:49:24  *** chjj has joined #bitcoin-core-dev
3892017-07-31T21:54:16  *** chjj has quit IRC
3902017-07-31T22:03:48  *** jeep-ss has joined #bitcoin-core-dev
3912017-07-31T22:07:09  *** chjj has joined #bitcoin-core-dev
3922017-07-31T22:16:17  *** Cheeseo has joined #bitcoin-core-dev
3932017-07-31T22:26:13  *** chjj has quit IRC
3942017-07-31T22:39:55  *** chjj has joined #bitcoin-core-dev
3952017-07-31T22:44:33  *** afk11 has quit IRC
3962017-07-31T22:49:40  *** afk11 has joined #bitcoin-core-dev
3972017-07-31T22:57:55  *** elkalamar has joined #bitcoin-core-dev
3982017-07-31T23:12:28  *** d_t has quit IRC
3992017-07-31T23:15:03  *** chjj has quit IRC
4002017-07-31T23:22:31  *** https_GK1wmSU has joined #bitcoin-core-dev
4012017-07-31T23:25:20  *** https_GK1wmSU has left #bitcoin-core-dev
4022017-07-31T23:28:26  *** chjj has joined #bitcoin-core-dev
4032017-07-31T23:35:25  *** bryyan has quit IRC
4042017-07-31T23:36:56  *** d_t has joined #bitcoin-core-dev
4052017-07-31T23:43:49  *** treebeardd has quit IRC
4062017-07-31T23:54:32  *** treebeardd has joined #bitcoin-core-dev