12018-12-17T00:08:00 *** ctrlbreak has quit IRC
22018-12-17T00:09:48 *** EagleTM has quit IRC
32018-12-17T00:14:30 *** justanotheruser has quit IRC
42018-12-17T00:17:18 *** EagleTM has joined #bitcoin-core-dev
52018-12-17T00:40:53 *** dviola has quit IRC
62018-12-17T00:57:47 *** tripleslash has quit IRC
72018-12-17T01:14:53 *** bitcoinjunior has quit IRC
82018-12-17T01:17:59 *** EagleTM has quit IRC
92018-12-17T01:22:45 *** arubi has quit IRC
102018-12-17T01:24:01 *** rh0nj has quit IRC
112018-12-17T01:25:08 *** rh0nj has joined #bitcoin-core-dev
122018-12-17T01:27:55 *** arubi has joined #bitcoin-core-dev
132018-12-17T01:40:45 *** dviola has joined #bitcoin-core-dev
142018-12-17T01:40:57 *** Aaronvan_ has quit IRC
152018-12-17T01:44:48 *** AaronvanW has joined #bitcoin-core-dev
162018-12-17T01:46:43 *** justanotheruser has joined #bitcoin-core-dev
172018-12-17T01:47:23 *** plopix has joined #bitcoin-core-dev
182018-12-17T01:49:42 *** dviola has quit IRC
192018-12-17T01:51:42 *** plopix has quit IRC
202018-12-17T01:53:23 *** dviola has joined #bitcoin-core-dev
212018-12-17T01:56:48 *** dviola has quit IRC
222018-12-17T02:03:21 *** eenoch has joined #bitcoin-core-dev
232018-12-17T02:07:38 *** eenoch has quit IRC
242018-12-17T02:22:29 *** Murch has joined #bitcoin-core-dev
252018-12-17T02:29:03 *** justanotheruser has quit IRC
262018-12-17T02:32:25 *** Aaronvan_ has joined #bitcoin-core-dev
272018-12-17T02:32:25 *** Aaronvan_ has quit IRC
282018-12-17T02:34:50 *** belcher has quit IRC
292018-12-17T02:35:53 *** AaronvanW has quit IRC
302018-12-17T02:36:15 *** Silb has joined #bitcoin-core-dev
312018-12-17T02:43:01 <Silb> ..
322018-12-17T02:44:17 <Silb> How active is the Bitcoin core irc channel?
332018-12-17T02:45:35 *** justanotheruser has joined #bitcoin-core-dev
342018-12-17T02:49:09 *** Silb has quit IRC
352018-12-17T02:52:35 *** bitcoin-git has joined #bitcoin-core-dev
362018-12-17T02:52:35 <bitcoin-git> [bitcoin] gwillen opened pull request #14978: Factor out PSBT utilities from RPCs for use in GUI code; related refactoring. (master...feature-refactor-psbt-rpcs) https://github.com/bitcoin/bitcoin/pull/14978
372018-12-17T02:52:35 *** bitcoin-git has left #bitcoin-core-dev
382018-12-17T03:39:36 *** justanotheruser has quit IRC
392018-12-17T04:02:43 *** justanotheruser has joined #bitcoin-core-dev
402018-12-17T04:08:48 <achow101> is travis broken?
412018-12-17T04:21:38 *** Murch has quit IRC
422018-12-17T04:24:33 *** Murch has joined #bitcoin-core-dev
432018-12-17T04:46:36 *** gkrizek has joined #bitcoin-core-dev
442018-12-17T05:34:52 *** midnightmagic has quit IRC
452018-12-17T05:41:47 *** midnightmagic has joined #bitcoin-core-dev
462018-12-17T06:14:52 *** Zenton has quit IRC
472018-12-17T06:17:20 *** Murch has quit IRC
482018-12-17T06:19:14 <gwillen> achow101: no, I did something dumb
492018-12-17T06:19:34 <gwillen> see my comment on the PR, I did something that clang likes but g++ does not, so I didn't catch it building on a mac
502018-12-17T06:23:09 <sipa> gwillen: heh, those things are pretty rare
512018-12-17T06:23:30 <gwillen> yeah, it is kind of odd, and my plan is to revert it back to how it was before to make it go away
522018-12-17T06:23:33 <gwillen> rather than understand it
532018-12-17T06:24:14 <gwillen> one of the types involved is "zero_after_free_allocator<char>"
542018-12-17T06:24:51 <gwillen> which I assume is something core-specific but I've never encountered it before
552018-12-17T06:24:56 <sipa> yes
562018-12-17T06:25:00 <gwillen> the issue is: "no known conversion for argument 1 from âstd::__cxx11::basic_string<char>::const_iterator {aka __gnu_cxx::__normal_iterator<const char*, std::__cxx11::basic_string<char> >}â to âCDataStream::const_iterator {aka __gnu_cxx::__normal_iterator<const char*, std::vector<char, zero_after_free_allocator<char> > >}â"
572018-12-17T06:25:41 <gwillen> oh, the allocator isn't the issue though, huh, I dunno what clang was doing to make this compile
582018-12-17T06:26:41 <sipa> it may be that the std::vector<char> iterator in the clang stl can be converted (or is identical to?) the std::string iterator
592018-12-17T06:27:21 <sipa> have you tried just CDataStream(tx_data, SER_NETWORK, PROTOCOL_VERSION); ?
602018-12-17T06:28:35 <gwillen> you may be right, or it could be that the std::string iterator can be converted to char *? which is the other constructor.
612018-12-17T06:28:47 <gwillen> I will try that
622018-12-17T06:30:03 <sipa> yeah
632018-12-17T06:30:15 *** bitcoin-git has joined #bitcoin-core-dev
642018-12-17T06:30:16 <bitcoin-git> [bitcoin] jonasschnelli opened pull request #14979: [Qt] Restore < Qt5.6 compatibility for addAction (master...2018/12/fix_addaction) https://github.com/bitcoin/bitcoin/pull/14979
652018-12-17T06:30:16 *** bitcoin-git has left #bitcoin-core-dev
662018-12-17T06:30:24 <sipa> if you know that the string is not empty, &*str.begin() will work
672018-12-17T06:30:32 <sipa> but that's illegal if the string is empty
682018-12-17T06:30:52 <gwillen> no, it does not accept tx_data alone as being convertible to a vector
692018-12-17T06:30:55 <sipa> (str.data(), str.data+str.size()) definitely works
702018-12-17T06:31:04 <gwillen> anyway I will just try to put it back to being a vector like it was before I screwed with it
712018-12-17T06:35:32 *** gkrizek has quit IRC
722018-12-17T06:39:56 <gwillen> ok I lied, I'm using your trick, thanks
732018-12-17T06:44:19 *** ap4lmtree has quit IRC
742018-12-17T07:02:46 *** ap4lmtree has joined #bitcoin-core-dev
752018-12-17T07:08:56 *** dgenr8 has quit IRC
762018-12-17T07:16:43 *** fabianfabian has joined #bitcoin-core-dev
772018-12-17T07:17:41 *** EagleTM has joined #bitcoin-core-dev
782018-12-17T07:17:56 *** fabianfabian has quit IRC
792018-12-17T07:21:59 *** EagleTM has quit IRC
802018-12-17T07:28:11 *** hebasto has joined #bitcoin-core-dev
812018-12-17T08:15:22 *** rex4539 has quit IRC
822018-12-17T08:47:15 *** JackH has quit IRC
832018-12-17T08:51:36 *** rex4539 has joined #bitcoin-core-dev
842018-12-17T08:53:19 *** promag has joined #bitcoin-core-dev
852018-12-17T08:55:29 *** promag has quit IRC
862018-12-17T09:07:12 *** booyah_ has joined #bitcoin-core-dev
872018-12-17T09:08:06 *** booyah has quit IRC
882018-12-17T09:12:09 *** romanz has joined #bitcoin-core-dev
892018-12-17T09:17:26 *** timothy has joined #bitcoin-core-dev
902018-12-17T09:21:12 *** romanz has quit IRC
912018-12-17T09:22:11 *** timothy has quit IRC
922018-12-17T09:23:30 *** timothy has joined #bitcoin-core-dev
932018-12-17T09:28:44 *** JackH has joined #bitcoin-core-dev
942018-12-17T09:42:01 *** rh0nj has quit IRC
952018-12-17T09:43:08 *** rh0nj has joined #bitcoin-core-dev
962018-12-17T10:00:04 *** Guyver2 has joined #bitcoin-core-dev
972018-12-17T10:06:23 *** promag has joined #bitcoin-core-dev
982018-12-17T10:07:45 <promag> wumpus: what do you think of getrpcinfo added in #14958
992018-12-17T10:07:47 <gribble> https://github.com/bitcoin/bitcoin/issues/14958 | qa: Remove race between conneting and shutdown on separate connections by promag · Pull Request #14958 · bitcoin/bitcoin · GitHub
1002018-12-17T10:08:56 *** romanz has joined #bitcoin-core-dev
1012018-12-17T10:10:26 *** rex4539 has quit IRC
1022018-12-17T10:28:01 <wumpus> I'm slightly confused who exposing all these internals is necessar
1032018-12-17T10:28:04 <wumpus> why*
1042018-12-17T10:28:49 <wumpus> all in all, the RPC tests are supposed to be mostly blackbox tests, the number of active RPC workers shouldn't really be relevant, only the behavior
1052018-12-17T10:32:02 <promag> In that case I need to wait for the other RPC
1062018-12-17T10:32:19 <promag> The other RPC will `waitfornewblock`
1072018-12-17T10:32:54 <promag> I want to `stop` the node only when the other RPC is already waiting
1082018-12-17T10:33:40 <wumpus> I'm not against 'getrpcinfo' in itself, to be clear
1092018-12-17T10:35:01 <wumpus> it's in line with other get*info; and maybe active_commands is useful for users as well
1102018-12-17T10:35:15 <promag> I agree with the above, but we need to have something to help test these concurrent/parallel cases
1112018-12-17T10:36:25 <wumpus> but I don't think it should be 'smuggled' in as part of a qa change for one test; can't you detect the command finishing some other way, on the functional test side?
1122018-12-17T10:37:12 <promag> nope, I tried to inspect http.Connection etc
1132018-12-17T10:37:52 <promag> nothing tells me the other connection is "waiting for new block"
1142018-12-17T10:38:14 <wumpus> true...
1152018-12-17T10:39:07 <promag> internally connection is accepted and then the worker picks it and executes the command in the table
1162018-12-17T10:40:01 <promag> the `stop` can be processed in between â which causes the test failure
1172018-12-17T10:40:09 <wumpus> yes
1182018-12-17T10:40:52 <wumpus> what about doing another RPC command in between?
1192018-12-17T10:41:15 <wumpus> if that finishes, you can be sure the previous one at least has been dispatched to a worker
1202018-12-17T10:41:16 *** jungly has joined #bitcoin-core-dev
1212018-12-17T10:41:45 <promag> I did, same problem â it doesn't guarantees the `waitfornewblock` is running
1222018-12-17T10:42:20 <wumpus> so this is not a matter of python's threading itself, is the command even sent to the server yet?
1232018-12-17T10:42:27 <promag> https://github.com/bitcoin/bitcoin/pull/14958/files#diff-9ee18e00fd5f5f1444ba12e8e1378e6aR23
1242018-12-17T10:43:03 <promag> I can wait for that, but that's half of the fix
1252018-12-17T10:43:26 <wumpus> the HTTP server itself is single-threaded and asynchronous, and the workers handle commands in order
1262018-12-17T10:44:48 *** spinza has quit IRC
1272018-12-17T10:44:49 <wumpus> then again, maybe getrpcinfo is fine, but I'd suggest adding it as a PR in itself, so people can discuss that
1282018-12-17T10:45:25 <wumpus> as said, maybe 'number of running commands' is useful information to users as well...
1292018-12-17T10:45:25 <promag> fine, this is a rare race anyway
1302018-12-17T10:46:04 <wumpus> in which case it's great that this can be used to avoid this particular race as well
1312018-12-17T10:47:10 <promag> I believe this could be avoided if the server replied with chunks
1322018-12-17T10:47:49 <promag> for the wait* calls, the server could reply headers or something like that
1332018-12-17T10:48:04 <wumpus> yes
1342018-12-17T10:48:14 <promag> the client would receive that and know it's in waiting state
1352018-12-17T10:48:40 <promag> I'll proceed with the getrpcinfo PR
1362018-12-17T10:48:51 <wumpus> streaming/chunked output for HTTP could be useful for various things
1372018-12-17T10:48:59 <promag> true
1382018-12-17T10:49:18 <promag> I think I can work on that once the support for dynamic wallet UI is done
1392018-12-17T10:49:21 <wumpus> I had a lot of trouble with that in #7759 though
1402018-12-17T10:49:23 <gribble> https://github.com/bitcoin/bitcoin/issues/7759 | [WIP] rest: Stream entire utxo set by laanwj · Pull Request #7759 · bitcoin/bitcoin · GitHub
1412018-12-17T10:49:40 <wumpus> libevent's http server is strange
1422018-12-17T10:50:04 <promag> true, for #14670 I had to dig into it
1432018-12-17T10:50:06 <gribble> https://github.com/bitcoin/bitcoin/issues/14670 | http: Fix HTTP server shutdown by promag · Pull Request #14670 · bitcoin/bitcoin · GitHub
1442018-12-17T10:53:10 <promag> regarding #14979
1452018-12-17T10:53:12 <gribble> https://github.com/bitcoin/bitcoin/issues/14979 | [Qt] Restore < Qt5.6 compatibility for addAction by jonasschnelli · Pull Request #14979 · bitcoin/bitcoin · GitHub
1462018-12-17T10:53:48 *** fanquake has joined #bitcoin-core-dev
1472018-12-17T10:54:06 <promag> one goal of CI is to prevent breaking master right? should we build with minimums in one stage of travis?
1482018-12-17T10:56:22 <fanquake> install qt 5.2 on the travis-qt build ?
1492018-12-17T10:56:37 <fanquake> Or a new build with a combination of all minimums
1502018-12-17T10:58:03 *** spinza has joined #bitcoin-core-dev
1512018-12-17T10:58:04 <promag> it breaks more often because of Qt
1522018-12-17T10:59:47 <promag> fanquake: is 5.2 available on apt?
1532018-12-17T11:00:46 <fanquake> promag unsure, will have a look
1542018-12-17T11:01:29 <fanquake> I was trying to establish more minimum versions a few days ago.
1552018-12-17T11:01:40 <fanquake> From what I can tell we're meant to support libevent 2.0.21, (have workarounds in code for it), but can't actually compile with it?
1562018-12-17T11:02:14 <promag> https://packages.ubuntu.com/trusty/qtbase5-dev
1572018-12-17T11:02:16 <fanquake> *not meant to support 2.0.21, but have workarounds for it
1582018-12-17T11:02:29 <promag> I have that on my system
1592018-12-17T11:02:49 <promag> and builds fine, let me double check
1602018-12-17T11:02:56 <fanquake> promag maybe worth a PR then
1612018-12-17T11:04:09 <promag> after wall I'm already not using 2.0.21
1622018-12-17T11:04:14 <promag> *all
1632018-12-17T11:05:11 <promag> I have "rm -rf libevent-release-2.0.21-stable" on my history X)
1642018-12-17T11:05:52 <promag> fanquake: but it doesn't build with that libevent version? is there a report of that?
1652018-12-17T11:07:01 <fanquake> promag our minimum required is 2.0.22, so I wouldn't think so
1662018-12-17T11:07:26 <fanquake> promag my confusion came from some versioning in the http server that looked like workarounds for 2.0.21, but i'll have to double check
1672018-12-17T11:11:14 <wumpus> would be good to test building with minimum qt on travis, though I don't see how to concretely do this
1682018-12-17T11:11:25 <wumpus> we definitely don't want to build qt 5.2 as part of depends
1692018-12-17T11:13:29 <fanquake> we are essentially testing minimum Python for the tests now as well I think
1702018-12-17T11:14:01 <fanquake> wumpus think #14979 can go in
1712018-12-17T11:14:02 <gribble> https://github.com/bitcoin/bitcoin/issues/14979 | [Qt] Restore < Qt5.6 compatibility for addAction by jonasschnelli · Pull Request #14979 · bitcoin/bitcoin · GitHub
1722018-12-17T11:14:10 <wumpus> for python installing a different version is more widely supported, I don't think anyone does that for gui toolkits :)
1732018-12-17T11:14:45 <wumpus> fanquake: great
1742018-12-17T11:16:22 *** timothy has quit IRC
1752018-12-17T11:43:51 *** EagleTM has joined #bitcoin-core-dev
1762018-12-17T11:53:06 *** bitcoin-git has joined #bitcoin-core-dev
1772018-12-17T11:53:07 <bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/34241716852d...bfd7e5409720
1782018-12-17T11:53:07 <bitcoin-git> bitcoin/master 3e21b69 Jonas Schnelli: [Qt] Restore < Qt5.6 compatibility for addAction
1792018-12-17T11:53:08 <bitcoin-git> bitcoin/master bfd7e54 Wladimir J. van der Laan: Merge #14979: [Qt] Restore < Qt5.6 compatibility for addAction...
1802018-12-17T11:53:08 *** bitcoin-git has left #bitcoin-core-dev
1812018-12-17T11:54:00 *** bitcoin-git has joined #bitcoin-core-dev
1822018-12-17T11:54:00 <bitcoin-git> [bitcoin] laanwj closed pull request #14979: [Qt] Restore < Qt5.6 compatibility for addAction (master...2018/12/fix_addaction) https://github.com/bitcoin/bitcoin/pull/14979
1832018-12-17T11:54:00 *** bitcoin-git has left #bitcoin-core-dev
1842018-12-17T12:03:15 *** Zenton has joined #bitcoin-core-dev
1852018-12-17T12:11:46 *** lambolife has joined #bitcoin-core-dev
1862018-12-17T12:12:00 <lambolife> whats up guys
1872018-12-17T12:12:40 <lambolife> What's the latest update in Bitcoin's development so far. I'm gonna make a video about not to give Hopium but to present facts. So I;m here
1882018-12-17T12:15:20 <fanquake> lambolife Ask in #bitcoin instead, that'll be off-topic here.
1892018-12-17T12:15:38 <lambolife> got it
1902018-12-17T12:15:46 *** lambolife has left #bitcoin-core-dev
1912018-12-17T12:17:16 *** spinza has quit IRC
1922018-12-17T12:17:59 *** AaronvanW has joined #bitcoin-core-dev
1932018-12-17T12:20:28 *** spinza has joined #bitcoin-core-dev
1942018-12-17T12:39:12 *** bitcoin-git has joined #bitcoin-core-dev
1952018-12-17T12:39:12 <bitcoin-git> [bitcoin] benthecarman opened pull request #14981: Clarifying RPC getrawtransaction's time help text (master...getrawtransaction_help_text_fix) https://github.com/bitcoin/bitcoin/pull/14981
1962018-12-17T12:39:12 *** bitcoin-git has left #bitcoin-core-dev
1972018-12-17T13:01:05 *** promag has quit IRC
1982018-12-17T13:19:06 *** romanz has quit IRC
1992018-12-17T13:44:01 *** rh0nj has quit IRC
2002018-12-17T13:45:07 *** rh0nj has joined #bitcoin-core-dev
2012018-12-17T13:50:35 *** promag has joined #bitcoin-core-dev
2022018-12-17T13:57:57 *** bitcoin-git has joined #bitcoin-core-dev
2032018-12-17T13:57:57 <bitcoin-git> [bitcoin] promag opened pull request #14982: rpc: Add getrpcinfo command (master...2018-12-getrpcinfo) https://github.com/bitcoin/bitcoin/pull/14982
2042018-12-17T13:57:57 *** bitcoin-git has left #bitcoin-core-dev
2052018-12-17T14:00:00 *** promag has quit IRC
2062018-12-17T14:07:51 *** justanotheruser has quit IRC
2072018-12-17T14:16:10 *** timothy has joined #bitcoin-core-dev
2082018-12-17T14:20:41 *** Victorsueca has joined #bitcoin-core-dev
2092018-12-17T14:22:52 *** justanotheruser has joined #bitcoin-core-dev
2102018-12-17T14:25:12 *** promag has joined #bitcoin-core-dev
2112018-12-17T14:29:49 <promag> anyone can add "needs release notes" label to #14573?
2122018-12-17T14:29:52 <gribble> https://github.com/bitcoin/bitcoin/issues/14573 | qt: Add Window menu by promag · Pull Request #14573 · bitcoin/bitcoin · GitHub
2132018-12-17T14:30:47 <fanquake> promag done
2142018-12-17T14:30:52 <promag> ty
2152018-12-17T14:36:15 *** jhfrontz has quit IRC
2162018-12-17T14:37:47 *** jhfrontz has joined #bitcoin-core-dev
2172018-12-17T14:44:53 *** jhfrontz1 has joined #bitcoin-core-dev
2182018-12-17T14:44:54 *** jhfrontz has quit IRC
2192018-12-17T15:03:13 <provoostenator> fanquake: we're testing minimum python since #14884 though it's not bullet-proof.
2202018-12-17T15:03:15 <gribble> https://github.com/bitcoin/bitcoin/issues/14884 | Travis: enforce Python 3.4 support through linter by Sjors · Pull Request #14884 · bitcoin/bitcoin · GitHub
2212018-12-17T15:07:26 <provoostenator> As for minimum QT version on Travis, that seems like a good idea #14983 (and maybe we need to slightly bump the minimum even for that)
2222018-12-17T15:07:27 <gribble> https://github.com/bitcoin/bitcoin/issues/14983 | One Travis instance should run minimum supported QT version · Issue #14983 · bitcoin/bitcoin · GitHub
2232018-12-17T15:12:45 *** bitcoin-git has joined #bitcoin-core-dev
2242018-12-17T15:12:46 <bitcoin-git> [bitcoin] MarcoFalke pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/bfd7e5409720...b545a6e68965
2252018-12-17T15:12:46 <bitcoin-git> bitcoin/master faee591 MarcoFalke: test: Fix race in mempool_accept
2262018-12-17T15:12:47 <bitcoin-git> bitcoin/master b545a6e MarcoFalke: Merge #14964: test: Fix race in mempool_accept...
2272018-12-17T15:12:47 *** bitcoin-git has left #bitcoin-core-dev
2282018-12-17T15:13:36 *** bitcoin-git has joined #bitcoin-core-dev
2292018-12-17T15:13:36 <bitcoin-git> [bitcoin] MarcoFalke closed pull request #14964: test: Fix race in mempool_accept (master...Mf1812-testRaceMempoolAccept) https://github.com/bitcoin/bitcoin/pull/14964
2302018-12-17T15:13:36 *** bitcoin-git has left #bitcoin-core-dev
2312018-12-17T15:23:15 *** Chris_Stewart_5 has joined #bitcoin-core-dev
2322018-12-17T15:36:27 *** EagleTM has quit IRC
2332018-12-17T15:36:57 *** bitcoin-git has joined #bitcoin-core-dev
2342018-12-17T15:36:57 <bitcoin-git> [bitcoin] promag opened pull request #14984: rpc: Speedup getrawmempool when verbose=true (master...2018-12-speedup-getrawmempool) https://github.com/bitcoin/bitcoin/pull/14984
2352018-12-17T15:36:57 *** bitcoin-git has left #bitcoin-core-dev
2362018-12-17T15:40:07 *** bitcoin-git has joined #bitcoin-core-dev
2372018-12-17T15:40:07 <bitcoin-git> [bitcoin] MarcoFalke opened pull request #14985: test: Remove thread_local from test_bitcoin (master...Mf1812-testNoThreadLocal) https://github.com/bitcoin/bitcoin/pull/14985
2382018-12-17T15:40:07 *** bitcoin-git has left #bitcoin-core-dev
2392018-12-17T15:41:51 *** ctrlbreak has joined #bitcoin-core-dev
2402018-12-17T15:45:20 *** promag has quit IRC
2412018-12-17T15:46:40 *** michaelsdunn1 has joined #bitcoin-core-dev
2422018-12-17T15:48:40 *** promag has joined #bitcoin-core-dev
2432018-12-17T15:55:08 *** rex4539 has joined #bitcoin-core-dev
2442018-12-17T15:56:47 *** JackH has quit IRC
2452018-12-17T16:02:12 *** fanquake has quit IRC
2462018-12-17T16:02:39 *** ken2812221 has joined #bitcoin-core-dev
2472018-12-17T16:06:59 <ken2812221> jonasschnelli: Your nightly gitian build website seems down.
2482018-12-17T16:09:04 <MarcoFalke> Yeah, the server that hosts the binaries seems down. The html itself is up?
2492018-12-17T16:16:50 *** Murch has joined #bitcoin-core-dev
2502018-12-17T16:17:22 *** berndj has quit IRC
2512018-12-17T16:19:14 *** berndj has joined #bitcoin-core-dev
2522018-12-17T16:23:10 *** gkrizek has joined #bitcoin-core-dev
2532018-12-17T16:25:42 *** Murch has quit IRC
2542018-12-17T16:27:36 *** Murch has joined #bitcoin-core-dev
2552018-12-17T16:28:00 *** promag has quit IRC
2562018-12-17T16:31:48 *** JackH has joined #bitcoin-core-dev
2572018-12-17T16:51:20 <wumpus> hopefully I've solved the problem in #14968, seems that travis returns ENOENT when trying to bind IPv4 not EADDRNOTAVAIL as expected
2582018-12-17T16:51:22 <gribble> https://github.com/bitcoin/bitcoin/issues/14968 | http: Fail initialization when any bind fails by laanwj · Pull Request #14968 · bitcoin/bitcoin · GitHub
2592018-12-17T16:53:43 *** shesek has joined #bitcoin-core-dev
2602018-12-17T16:56:27 *** sipa has quit IRC
2612018-12-17T16:56:27 *** ghost43 has quit IRC
2622018-12-17T16:56:43 *** sipa has joined #bitcoin-core-dev
2632018-12-17T16:57:44 *** ghost43 has joined #bitcoin-core-dev
2642018-12-17T17:11:29 *** gkrizek has quit IRC
2652018-12-17T17:19:27 *** gkrizek has joined #bitcoin-core-dev
2662018-12-17T17:38:16 *** shesek has quit IRC
2672018-12-17T17:46:01 *** rh0nj has quit IRC
2682018-12-17T17:47:11 *** rh0nj has joined #bitcoin-core-dev
2692018-12-17T17:49:11 *** fabianfabian has joined #bitcoin-core-dev
2702018-12-17T17:53:17 *** jungly has quit IRC
2712018-12-17T17:53:56 *** timothy has quit IRC
2722018-12-17T17:55:09 *** Guyver2_ has joined #bitcoin-core-dev
2732018-12-17T17:58:16 *** Guyver2 has quit IRC
2742018-12-17T18:08:53 *** shesek has joined #bitcoin-core-dev
2752018-12-17T18:08:53 *** shesek has joined #bitcoin-core-dev
2762018-12-17T18:15:27 *** Zenton has quit IRC
2772018-12-17T18:25:27 *** Chris_Stewart_5 has quit IRC
2782018-12-17T18:36:38 *** shesek has quit IRC
2792018-12-17T18:41:00 *** Murch has quit IRC
2802018-12-17T18:42:00 *** Murch has joined #bitcoin-core-dev
2812018-12-17T18:42:37 *** Chris_Stewart_5 has joined #bitcoin-core-dev
2822018-12-17T18:49:15 *** shesek has joined #bitcoin-core-dev
2832018-12-17T18:49:15 *** shesek has joined #bitcoin-core-dev
2842018-12-17T18:57:08 *** Guyver2_ has quit IRC
2852018-12-17T18:57:32 *** Guyver2 has joined #bitcoin-core-dev
2862018-12-17T18:57:37 *** Murch has quit IRC
2872018-12-17T18:59:06 *** Murch has joined #bitcoin-core-dev
2882018-12-17T19:11:50 *** michaelsdunn1 has quit IRC
2892018-12-17T19:13:45 *** michaelsdunn1 has joined #bitcoin-core-dev
2902018-12-17T19:16:13 *** jarthur has joined #bitcoin-core-dev
2912018-12-17T19:23:55 *** shesek has quit IRC
2922018-12-17T19:28:59 *** jarthur has quit IRC
2932018-12-17T19:35:24 <wumpus> whoo passed
2942018-12-17T19:38:08 *** kostiantyn has joined #bitcoin-core-dev
2952018-12-17T19:41:38 *** michaelsdunn1 has quit IRC
2962018-12-17T19:42:18 *** bitcoin-git has joined #bitcoin-core-dev
2972018-12-17T19:42:19 <bitcoin-git> [bitcoin] laanwj deleted 0.11 at 0bace83: https://github.com/bitcoin/bitcoin/commit/0bace83
2982018-12-17T19:42:19 *** bitcoin-git has left #bitcoin-core-dev
2992018-12-17T19:42:26 *** bitcoin-git has joined #bitcoin-core-dev
3002018-12-17T19:42:26 <bitcoin-git> [bitcoin] laanwj deleted 0.12 at c1b7421: https://github.com/bitcoin/bitcoin/commit/c1b7421
3012018-12-17T19:42:26 *** bitcoin-git has left #bitcoin-core-dev
3022018-12-17T19:42:34 *** bitcoin-git has joined #bitcoin-core-dev
3032018-12-17T19:42:34 <bitcoin-git> [bitcoin] laanwj deleted 0.13 at b654842: https://github.com/bitcoin/bitcoin/commit/b654842
3042018-12-17T19:42:34 *** bitcoin-git has left #bitcoin-core-dev
3052018-12-17T19:44:29 *** michaelsdunn1 has joined #bitcoin-core-dev
3062018-12-17T19:45:50 *** Nkhan has joined #bitcoin-core-dev
3072018-12-17T19:46:49 *** Nkhan has left #bitcoin-core-dev
3082018-12-17T19:47:57 *** Chris_Stewart_5 has quit IRC
3092018-12-17T19:59:55 *** Chris_Stewart_5 has joined #bitcoin-core-dev
3102018-12-17T20:02:35 *** shesek has joined #bitcoin-core-dev
3112018-12-17T20:03:23 *** CodeBlue1776 has quit IRC
3122018-12-17T20:04:18 *** CodeBlue1776 has joined #bitcoin-core-dev
3132018-12-17T20:10:28 *** michaelsdunn1 has quit IRC
3142018-12-17T20:11:03 *** michaelsdunn1 has joined #bitcoin-core-dev
3152018-12-17T20:11:03 *** michaelsdunn1 has quit IRC
3162018-12-17T20:11:03 *** michaelsdunn1 has joined #bitcoin-core-dev
3172018-12-17T20:12:35 *** Zenton has joined #bitcoin-core-dev
3182018-12-17T20:19:44 *** gkrizek has quit IRC
3192018-12-17T20:37:39 *** michaelsdunn1 has quit IRC
3202018-12-17T20:39:48 *** promag has joined #bitcoin-core-dev
3212018-12-17T20:39:57 *** michaelsdunn1 has joined #bitcoin-core-dev
3222018-12-17T20:41:26 <instagibbs> sipa TIL https://github.com/bitcoin-core/bitcoin-maintainer-tools
3232018-12-17T20:41:39 <instagibbs> had the answer to my subtree q
3242018-12-17T20:41:57 <gwillen> whaaaaat
3252018-12-17T20:42:04 <gwillen> how fancy
3262018-12-17T20:44:39 *** gkrizek has joined #bitcoin-core-dev
3272018-12-17T20:57:20 *** michaelsdunn1 has quit IRC
3282018-12-17T20:59:19 *** michaelsdunn1 has joined #bitcoin-core-dev
3292018-12-17T21:08:45 *** jimmysong has joined #bitcoin-core-dev
3302018-12-17T21:15:16 *** Guyver2 has quit IRC
3312018-12-17T21:18:25 *** CodeBlue1776 has quit IRC
3322018-12-17T21:19:32 *** CodeBlue1776 has joined #bitcoin-core-dev
3332018-12-17T21:20:36 *** Aaronvan_ has joined #bitcoin-core-dev
3342018-12-17T21:23:50 *** AaronvanW has quit IRC
3352018-12-17T21:23:54 *** K222 has joined #bitcoin-core-dev
3362018-12-17T21:25:30 <K222> HELOO
3372018-12-17T21:26:08 *** TheV01d has quit IRC
3382018-12-17T21:26:23 *** TheV01d has joined #bitcoin-core-dev
3392018-12-17T21:27:23 *** TheV01d has joined #bitcoin-core-dev
3402018-12-17T21:28:05 *** TheV01d has quit IRC
3412018-12-17T21:28:23 *** TheV01d_ has joined #bitcoin-core-dev
3422018-12-17T21:30:11 *** bitcoin-git has joined #bitcoin-core-dev
3432018-12-17T21:30:11 <bitcoin-git> [bitcoin] MarcoFalke opened pull request #14987: [rcp] RPCHelpMan: Require documentation of return value at compile time (master...Mf1812-rpcResultFlat) https://github.com/bitcoin/bitcoin/pull/14987
3442018-12-17T21:30:11 *** bitcoin-git has left #bitcoin-core-dev
3452018-12-17T21:36:57 *** ujjwalt has joined #bitcoin-core-dev
3462018-12-17T21:41:49 *** promag has quit IRC
3472018-12-17T21:43:15 *** ujjwalt has quit IRC
3482018-12-17T21:44:07 *** rex4539 has quit IRC
3492018-12-17T21:44:45 *** jarthur has joined #bitcoin-core-dev
3502018-12-17T21:48:01 *** rh0nj has quit IRC
3512018-12-17T21:49:08 *** rh0nj has joined #bitcoin-core-dev
3522018-12-17T21:54:33 *** hashist has joined #bitcoin-core-dev
3532018-12-17T21:56:37 *** K222 has quit IRC
3542018-12-17T22:03:09 *** booyah_ is now known as booyah
3552018-12-17T22:05:40 *** gkrizek has quit IRC
3562018-12-17T22:11:44 *** gkrizek has joined #bitcoin-core-dev
3572018-12-17T22:13:56 *** AaronvanW has joined #bitcoin-core-dev
3582018-12-17T22:15:47 *** Aaronvan_ has quit IRC
3592018-12-17T22:15:57 *** gkrizek has quit IRC
3602018-12-17T22:20:34 *** reardencode has quit IRC
3612018-12-17T22:22:41 *** gkrizek has joined #bitcoin-core-dev
3622018-12-17T22:24:50 *** danra has joined #bitcoin-core-dev
3632018-12-17T22:26:47 *** gkrizek has quit IRC
3642018-12-17T22:30:17 *** michaelsdunn1 has quit IRC
3652018-12-17T22:31:07 *** Chris_Stewart_5 has quit IRC
3662018-12-17T22:35:26 *** promag has joined #bitcoin-core-dev
3672018-12-17T22:40:48 *** reardencode has joined #bitcoin-core-dev
3682018-12-17T22:46:40 *** shesek has quit IRC
3692018-12-17T22:51:33 *** promag has quit IRC
3702018-12-17T22:54:37 *** gkrizek has joined #bitcoin-core-dev
3712018-12-17T22:57:53 *** spinza has quit IRC
3722018-12-17T22:58:55 *** gkrizek has quit IRC
3732018-12-17T23:09:06 *** hebasto has quit IRC
3742018-12-17T23:18:08 *** spinza has joined #bitcoin-core-dev
3752018-12-17T23:23:13 *** hashist has quit IRC
3762018-12-17T23:29:50 *** harrymm has quit IRC
3772018-12-17T23:32:19 *** shesek has joined #bitcoin-core-dev
3782018-12-17T23:36:52 *** gkrizek has joined #bitcoin-core-dev
3792018-12-17T23:37:37 *** bitcoin-git has joined #bitcoin-core-dev
3802018-12-17T23:37:38 <bitcoin-git> [bitcoin] benthecarman opened pull request #14988: Number of confirmations added to transaction csv export (master...confirmations_in_csv_export) https://github.com/bitcoin/bitcoin/pull/14988
3812018-12-17T23:37:38 *** bitcoin-git has left #bitcoin-core-dev
3822018-12-17T23:41:19 *** gkrizek has quit IRC
3832018-12-17T23:41:48 *** harrymm has joined #bitcoin-core-dev
3842018-12-17T23:41:52 *** gkrizek has joined #bitcoin-core-dev
3852018-12-17T23:45:47 *** gkrizek has quit IRC
3862018-12-17T23:48:09 *** jarthur has quit IRC
3872018-12-17T23:53:37 *** gkrizek has joined #bitcoin-core-dev
3882018-12-17T23:58:00 *** shesek has quit IRC
3892018-12-17T23:58:10 *** gkrizek has quit IRC