--- Log opened Mon Dec 17 00:00:54 2018 00:15 -!- rex4539 [~rex4539@ppp-2-84-161-2.home.otenet.gr] has quit [Quit: rex4539] 00:47 -!- JackH [~laptop@host86-175-127-233.range86-175.btcentralplus.com] has quit [Ping timeout: 246 seconds] 00:51 -!- rex4539 [~rex4539@ppp-2-84-161-2.home.otenet.gr] has joined #bitcoin-core-dev 00:53 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has joined #bitcoin-core-dev 00:55 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has quit [Remote host closed the connection] 01:07 -!- booyah_ [~bb@193.25.1.157] has joined #bitcoin-core-dev 01:08 -!- booyah [~bb@193.25.1.157] has quit [Read error: Connection reset by peer] 01:12 -!- romanz [~romanz@5.22.134.182] has joined #bitcoin-core-dev 01:17 -!- timothy [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 01:21 -!- romanz [~romanz@5.22.134.182] has quit [Quit: Leaving] 01:22 -!- timothy [~tredaelli@redhat/timothy] has quit [Remote host closed the connection] 01:23 -!- timothy [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 01:28 -!- JackH [~laptop@62.232.170.181] has joined #bitcoin-core-dev 01:42 -!- rh0nj [~rh0nj@136.243.139.96] has quit [Remote host closed the connection] 01:43 -!- rh0nj [~rh0nj@136.243.139.96] has joined #bitcoin-core-dev 02:00 -!- Guyver2 [AdiIRC@guyver2.xs4all.nl] has joined #bitcoin-core-dev 02:06 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has joined #bitcoin-core-dev 02:07 < promag> wumpus: what do you think of getrpcinfo added in #14958 02:07 < 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 02:08 -!- romanz [~romanz@5.22.134.182] has joined #bitcoin-core-dev 02:10 -!- rex4539 [~rex4539@ppp-2-84-161-2.home.otenet.gr] has quit [Quit: rex4539] 02:28 < wumpus> I'm slightly confused who exposing all these internals is necessar 02:28 < wumpus> why* 02:28 < 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 02:32 < promag> In that case I need to wait for the other RPC 02:32 < promag> The other RPC will `waitfornewblock` 02:32 < promag> I want to `stop` the node only when the other RPC is already waiting 02:33 < wumpus> I'm not against 'getrpcinfo' in itself, to be clear 02:35 < wumpus> it's in line with other get*info; and maybe active_commands is useful for users as well 02:35 < promag> I agree with the above, but we need to have something to help test these concurrent/parallel cases 02:36 < 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? 02:37 < promag> nope, I tried to inspect http.Connection etc 02:37 < promag> nothing tells me the other connection is "waiting for new block" 02:38 < wumpus> true... 02:39 < promag> internally connection is accepted and then the worker picks it and executes the command in the table 02:40 < promag> the `stop` can be processed in between — which causes the test failure 02:40 < wumpus> yes 02:40 < wumpus> what about doing another RPC command in between? 02:41 < wumpus> if that finishes, you can be sure the previous one at least has been dispatched to a worker 02:41 -!- jungly [~quassel@79.8.200.97] has joined #bitcoin-core-dev 02:41 < promag> I did, same problem — it doesn't guarantees the `waitfornewblock` is running 02:42 < wumpus> so this is not a matter of python's threading itself, is the command even sent to the server yet? 02:42 < promag> https://github.com/bitcoin/bitcoin/pull/14958/files#diff-9ee18e00fd5f5f1444ba12e8e1378e6aR23 02:43 < promag> I can wait for that, but that's half of the fix 02:43 < wumpus> the HTTP server itself is single-threaded and asynchronous, and the workers handle commands in order 02:44 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 02:44 < wumpus> then again, maybe getrpcinfo is fine, but I'd suggest adding it as a PR in itself, so people can discuss that 02:45 < wumpus> as said, maybe 'number of running commands' is useful information to users as well... 02:45 < promag> fine, this is a rare race anyway 02:46 < wumpus> in which case it's great that this can be used to avoid this particular race as well 02:47 < promag> I believe this could be avoided if the server replied with chunks 02:47 < promag> for the wait* calls, the server could reply headers or something like that 02:48 < wumpus> yes 02:48 < promag> the client would receive that and know it's in waiting state 02:48 < promag> I'll proceed with the getrpcinfo PR 02:48 < wumpus> streaming/chunked output for HTTP could be useful for various things 02:48 < promag> true 02:49 < promag> I think I can work on that once the support for dynamic wallet UI is done 02:49 < wumpus> I had a lot of trouble with that in #7759 though 02:49 < gribble> https://github.com/bitcoin/bitcoin/issues/7759 | [WIP] rest: Stream entire utxo set by laanwj · Pull Request #7759 · bitcoin/bitcoin · GitHub 02:49 < wumpus> libevent's http server is strange 02:50 < promag> true, for #14670 I had to dig into it 02:50 < gribble> https://github.com/bitcoin/bitcoin/issues/14670 | http: Fix HTTP server shutdown by promag · Pull Request #14670 · bitcoin/bitcoin · GitHub 02:53 < promag> regarding #14979 02:53 < gribble> https://github.com/bitcoin/bitcoin/issues/14979 | [Qt] Restore < Qt5.6 compatibility for addAction by jonasschnelli · Pull Request #14979 · bitcoin/bitcoin · GitHub 02:53 -!- fanquake [~fanquake@unaffiliated/fanquake] has joined #bitcoin-core-dev 02:54 < promag> one goal of CI is to prevent breaking master right? should we build with minimums in one stage of travis? 02:56 < fanquake> install qt 5.2 on the travis-qt build ? 02:56 < fanquake> Or a new build with a combination of all minimums 02:58 -!- spinza [~spin@155.93.246.187] has joined #bitcoin-core-dev 02:58 < promag> it breaks more often because of Qt 02:59 < promag> fanquake: is 5.2 available on apt? 03:00 < fanquake> promag unsure, will have a look 03:01 < fanquake> I was trying to establish more minimum versions a few days ago. 03:01 < 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? 03:02 < promag> https://packages.ubuntu.com/trusty/qtbase5-dev 03:02 < fanquake> *not meant to support 2.0.21, but have workarounds for it 03:02 < promag> I have that on my system 03:02 < promag> and builds fine, let me double check 03:02 < fanquake> promag maybe worth a PR then 03:04 < promag> after wall I'm already not using 2.0.21 03:04 < promag> *all 03:05 < promag> I have "rm -rf libevent-release-2.0.21-stable" on my history X) 03:05 < promag> fanquake: but it doesn't build with that libevent version? is there a report of that? 03:07 < fanquake> promag our minimum required is 2.0.22, so I wouldn't think so 03:07 < 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 03:11 < wumpus> would be good to test building with minimum qt on travis, though I don't see how to concretely do this 03:11 < wumpus> we definitely don't want to build qt 5.2 as part of depends 03:13 < fanquake> we are essentially testing minimum Python for the tests now as well I think 03:14 < fanquake> wumpus think #14979 can go in 03:14 < gribble> https://github.com/bitcoin/bitcoin/issues/14979 | [Qt] Restore < Qt5.6 compatibility for addAction by jonasschnelli · Pull Request #14979 · bitcoin/bitcoin · GitHub 03:14 < wumpus> for python installing a different version is more widely supported, I don't think anyone does that for gui toolkits :) 03:14 < wumpus> fanquake: great 03:16 -!- timothy [~tredaelli@redhat/timothy] has quit [Quit: Konversation terminated!] 03:43 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has joined #bitcoin-core-dev 03:53 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-dgegfoeruuxrshux] has joined #bitcoin-core-dev 03:53 < bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/34241716852d...bfd7e5409720 03:53 < bitcoin-git> bitcoin/master 3e21b69 Jonas Schnelli: [Qt] Restore < Qt5.6 compatibility for addAction 03:53 < bitcoin-git> bitcoin/master bfd7e54 Wladimir J. van der Laan: Merge #14979: [Qt] Restore < Qt5.6 compatibility for addAction... 03:53 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-dgegfoeruuxrshux] has left #bitcoin-core-dev [] 03:54 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-uecbacogxustrwuv] has joined #bitcoin-core-dev 03:54 < 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 03:54 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-uecbacogxustrwuv] has left #bitcoin-core-dev [] 04:03 -!- Zenton [~user@unaffiliated/vicenteh] has joined #bitcoin-core-dev 04:11 -!- lambolife [31916d37@gateway/web/freenode/ip.49.145.109.55] has joined #bitcoin-core-dev 04:12 < lambolife> whats up guys 04:12 < 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 04:15 < fanquake> lambolife Ask in #bitcoin instead, that'll be off-topic here. 04:15 < lambolife> got it 04:15 -!- lambolife [31916d37@gateway/web/freenode/ip.49.145.109.55] has left #bitcoin-core-dev [] 04:17 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 04:17 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 04:20 -!- spinza [~spin@155.93.246.187] has joined #bitcoin-core-dev 04:39 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-iruwbryavogwsnnx] has joined #bitcoin-core-dev 04:39 < 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 04:39 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-iruwbryavogwsnnx] has left #bitcoin-core-dev [] 05:01 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has quit [Remote host closed the connection] 05:19 -!- romanz [~romanz@5.22.134.182] has quit [Quit: Leaving] 05:44 -!- rh0nj [~rh0nj@136.243.139.96] has quit [Remote host closed the connection] 05:45 -!- rh0nj [~rh0nj@136.243.139.96] has joined #bitcoin-core-dev 05:50 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has joined #bitcoin-core-dev 05:57 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-jsilqzgonrbvqahj] has joined #bitcoin-core-dev 05:57 < bitcoin-git> [bitcoin] promag opened pull request #14982: rpc: Add getrpcinfo command (master...2018-12-getrpcinfo) https://github.com/bitcoin/bitcoin/pull/14982 05:57 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-jsilqzgonrbvqahj] has left #bitcoin-core-dev [] 06:00 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has quit [Remote host closed the connection] 06:07 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 268 seconds] 06:16 -!- timothy [tredaelli@redhat/timothy] has joined #bitcoin-core-dev 06:20 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 06:22 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 06:25 -!- promag [~promag@a89-153-67-150.cpe.netcabo.pt] has joined #bitcoin-core-dev 06:29 < promag> anyone can add "needs release notes" label to #14573? 06:29 < gribble> https://github.com/bitcoin/bitcoin/issues/14573 | qt: Add Window menu by promag · Pull Request #14573 · bitcoin/bitcoin · GitHub 06:30 < fanquake> promag done 06:30 < promag> ty 06:36 -!- jhfrontz [~Adium@cpe-184-57-118-36.columbus.res.rr.com] has quit [Quit: Leaving.] 06:37 -!- jhfrontz [~Adium@cpe-184-57-118-36.columbus.res.rr.com] has joined #bitcoin-core-dev 06:44 -!- jhfrontz1 [~Adium@cpe-184-57-118-36.columbus.res.rr.com] has joined #bitcoin-core-dev 06:44 -!- jhfrontz [~Adium@cpe-184-57-118-36.columbus.res.rr.com] has quit [Read error: Connection reset by peer] 07:03 < provoostenator> fanquake: we're testing minimum python since #14884 though it's not bullet-proof. 07:03 < gribble> https://github.com/bitcoin/bitcoin/issues/14884 | Travis: enforce Python 3.4 support through linter by Sjors · Pull Request #14884 · bitcoin/bitcoin · GitHub 07:07 < 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) 07:07 < gribble> https://github.com/bitcoin/bitcoin/issues/14983 | One Travis instance should run minimum supported QT version · Issue #14983 · bitcoin/bitcoin · GitHub 07:12 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-nflubibkskernadi] has joined #bitcoin-core-dev 07:12 < bitcoin-git> [bitcoin] MarcoFalke pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/bfd7e5409720...b545a6e68965 07:12 < bitcoin-git> bitcoin/master faee591 MarcoFalke: test: Fix race in mempool_accept 07:12 < bitcoin-git> bitcoin/master b545a6e MarcoFalke: Merge #14964: test: Fix race in mempool_accept... 07:12 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-nflubibkskernadi] has left #bitcoin-core-dev [] 07:13 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-lwuvwkbovxxenyvs] has joined #bitcoin-core-dev 07:13 < bitcoin-git> [bitcoin] MarcoFalke closed pull request #14964: test: Fix race in mempool_accept (master...Mf1812-testRaceMempoolAccept) https://github.com/bitcoin/bitcoin/pull/14964 07:13 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-lwuvwkbovxxenyvs] has left #bitcoin-core-dev [] 07:23 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 07:36 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has quit [Ping timeout: 240 seconds] 07:36 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-xgkbdijdbvrvslgq] has joined #bitcoin-core-dev 07:36 < 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 07:36 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-xgkbdijdbvrvslgq] has left #bitcoin-core-dev [] 07:40 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-jzativmtrvtzbcua] has joined #bitcoin-core-dev 07:40 < 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 07:40 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-jzativmtrvtzbcua] has left #bitcoin-core-dev [] 07:41 -!- ctrlbreak [~ctrlbreak@142.162.20.53] has joined #bitcoin-core-dev 07:45 -!- promag [~promag@a89-153-67-150.cpe.netcabo.pt] has quit [Remote host closed the connection] 07:46 -!- michaelsdunn1 [~michaelsd@unaffiliated/michaelsdunn1] has joined #bitcoin-core-dev 07:48 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has joined #bitcoin-core-dev 07:55 -!- rex4539 [~rex4539@ppp-2-84-161-2.home.otenet.gr] has joined #bitcoin-core-dev 07:56 -!- JackH [~laptop@62.232.170.181] has quit [Ping timeout: 250 seconds] 08:02 -!- fanquake [~fanquake@unaffiliated/fanquake] has quit [] 08:02 -!- ken2812221 [~ken281222@1.200.204.66] has joined #bitcoin-core-dev 08:06 < ken2812221> jonasschnelli: Your nightly gitian build website seems down. 08:09 < MarcoFalke> Yeah, the server that hosts the binaries seems down. The html itself is up? 08:16 -!- Murch [~murch@50-200-105-218-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 08:17 -!- berndj [~berndj@azna.co.za] has quit [Remote host closed the connection] 08:19 -!- berndj [~berndj@azna.co.za] has joined #bitcoin-core-dev 08:23 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has joined #bitcoin-core-dev 08:25 -!- Murch [~murch@50-200-105-218-static.hfc.comcastbusiness.net] has quit [Quit: Snoozing.] 08:27 -!- Murch [~murch@50-200-105-218-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 08:28 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has quit [Remote host closed the connection] 08:31 -!- JackH [~laptop@host86-175-127-233.range86-175.btcentralplus.com] has joined #bitcoin-core-dev 08:51 < wumpus> hopefully I've solved the problem in #14968, seems that travis returns ENOENT when trying to bind IPv4 not EADDRNOTAVAIL as expected 08:51 < gribble> https://github.com/bitcoin/bitcoin/issues/14968 | http: Fail initialization when any bind fails by laanwj · Pull Request #14968 · bitcoin/bitcoin · GitHub 08:53 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 08:56 -!- sipa [~pw@gateway/tor-sasl/sipa1024] has quit [Read error: Connection reset by peer] 08:56 -!- ghost43 [~daer@gateway/tor-sasl/daer] has quit [Read error: Connection reset by peer] 08:56 -!- sipa [~pw@gateway/tor-sasl/sipa1024] has joined #bitcoin-core-dev 08:57 -!- ghost43 [~daer@gateway/tor-sasl/daer] has joined #bitcoin-core-dev 09:11 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has quit [Remote host closed the connection] 09:19 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has joined #bitcoin-core-dev 09:38 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 244 seconds] 09:46 -!- rh0nj [~rh0nj@136.243.139.96] has quit [Remote host closed the connection] 09:47 -!- rh0nj [~rh0nj@136.243.139.96] has joined #bitcoin-core-dev 09:49 -!- fabianfabian [~fabianfab@D9656CCE.cm-27.dynamic.ziggo.nl] has joined #bitcoin-core-dev 09:53 -!- jungly [~quassel@79.8.200.97] has quit [Remote host closed the connection] 09:53 -!- timothy [tredaelli@redhat/timothy] has quit [Quit: Konversation terminated!] 09:55 -!- Guyver2_ [~Guyver@2001:985:f3f:1:44d:4cd9:9cd5:c8af] has joined #bitcoin-core-dev 09:58 -!- Guyver2 [AdiIRC@guyver2.xs4all.nl] has quit [Ping timeout: 264 seconds] 10:08 -!- shesek [~shesek@2.55.170.146] has joined #bitcoin-core-dev 10:08 -!- shesek [~shesek@2.55.170.146] has quit [Changing host] 10:08 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 10:15 -!- Zenton [~user@unaffiliated/vicenteh] has quit [Ping timeout: 250 seconds] 10:25 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 246 seconds] 10:36 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 250 seconds] 10:41 -!- Murch [~murch@50-200-105-218-static.hfc.comcastbusiness.net] has quit [Quit: Snoozing.] 10:42 -!- Murch [~murch@50-200-105-218-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 10:42 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 10:49 -!- shesek [~shesek@176.12.246.15] has joined #bitcoin-core-dev 10:49 -!- shesek [~shesek@176.12.246.15] has quit [Changing host] 10:49 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 10:57 -!- Guyver2_ [~Guyver@2001:985:f3f:1:44d:4cd9:9cd5:c8af] has quit [Quit: Going offline, see ya! (www.adiirc.com)] 10:57 -!- Guyver2 [AdiIRC@guyver2.xs4all.nl] has joined #bitcoin-core-dev 10:57 -!- Murch [~murch@50-200-105-218-static.hfc.comcastbusiness.net] has quit [Quit: Snoozing.] 10:59 -!- Murch [~murch@50-200-105-218-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 11:11 -!- michaelsdunn1 [~michaelsd@unaffiliated/michaelsdunn1] has quit [Remote host closed the connection] 11:13 -!- michaelsdunn1 [~michaelsd@unaffiliated/michaelsdunn1] has joined #bitcoin-core-dev 11:16 -!- jarthur [~jarthur@207.114.244.5] has joined #bitcoin-core-dev 11:23 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 250 seconds] 11:28 -!- jarthur [~jarthur@207.114.244.5] has quit [] 11:35 < wumpus> whoo passed 11:38 -!- kostiantyn [~kostianty@x590eb5f7.dyn.telefonica.de] has joined #bitcoin-core-dev 11:38 -!- kostiantyn [~kostianty@x590eb5f7.dyn.telefonica.de] has quit [Client Quit] 11:41 -!- michaelsdunn1 [~michaelsd@unaffiliated/michaelsdunn1] has quit [Remote host closed the connection] 11:42 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-tzipndcapqzjfbjl] has joined #bitcoin-core-dev 11:42 < bitcoin-git> [bitcoin] laanwj deleted 0.11 at 0bace83: https://github.com/bitcoin/bitcoin/commit/0bace83 11:42 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-tzipndcapqzjfbjl] has left #bitcoin-core-dev [] 11:42 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-nfxvgrnvboemywjt] has joined #bitcoin-core-dev 11:42 < bitcoin-git> [bitcoin] laanwj deleted 0.12 at c1b7421: https://github.com/bitcoin/bitcoin/commit/c1b7421 11:42 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-nfxvgrnvboemywjt] has left #bitcoin-core-dev [] 11:42 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-xtikyllobmzinivc] has joined #bitcoin-core-dev 11:42 < bitcoin-git> [bitcoin] laanwj deleted 0.13 at b654842: https://github.com/bitcoin/bitcoin/commit/b654842 11:42 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-xtikyllobmzinivc] has left #bitcoin-core-dev [] 11:44 -!- michaelsdunn1 [~michaelsd@unaffiliated/michaelsdunn1] has joined #bitcoin-core-dev 11:45 -!- Nkhan [aed72764@gateway/web/freenode/ip.174.215.39.100] has joined #bitcoin-core-dev 11:46 -!- Nkhan [aed72764@gateway/web/freenode/ip.174.215.39.100] has left #bitcoin-core-dev [] 11:47 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 244 seconds] 11:59 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 12:02 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 12:03 -!- CodeBlue1776 [~CodeBlue1@107-215-134-60.lightspeed.cicril.sbcglobal.net] has quit [Read error: Connection reset by peer] 12:04 -!- CodeBlue1776 [~CodeBlue1@107-215-134-60.lightspeed.cicril.sbcglobal.net] has joined #bitcoin-core-dev 12:10 -!- michaelsdunn1 [~michaelsd@unaffiliated/michaelsdunn1] has quit [Remote host closed the connection] 12:11 -!- michaelsdunn1 [~michaelsd@38.126.31.226] has joined #bitcoin-core-dev 12:11 -!- michaelsdunn1 [~michaelsd@38.126.31.226] has quit [Changing host] 12:11 -!- michaelsdunn1 [~michaelsd@unaffiliated/michaelsdunn1] has joined #bitcoin-core-dev 12:12 -!- Zenton [~user@unaffiliated/vicenteh] has joined #bitcoin-core-dev 12:19 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has quit [Remote host closed the connection] 12:37 -!- michaelsdunn1 [~michaelsd@unaffiliated/michaelsdunn1] has quit [Remote host closed the connection] 12:39 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has joined #bitcoin-core-dev 12:39 -!- michaelsdunn1 [~michaelsd@unaffiliated/michaelsdunn1] has joined #bitcoin-core-dev 12:41 < instagibbs> sipa TIL https://github.com/bitcoin-core/bitcoin-maintainer-tools 12:41 < instagibbs> had the answer to my subtree q 12:41 < gwillen> whaaaaat 12:42 < gwillen> how fancy 12:44 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has joined #bitcoin-core-dev 12:57 -!- michaelsdunn1 [~michaelsd@unaffiliated/michaelsdunn1] has quit [Remote host closed the connection] 12:59 -!- michaelsdunn1 [~michaelsd@unaffiliated/michaelsdunn1] has joined #bitcoin-core-dev 13:08 -!- jimmysong [~jimmysong@72-48-253-51.dyn.grandenetworks.net] has joined #bitcoin-core-dev 13:15 -!- Guyver2 [AdiIRC@guyver2.xs4all.nl] has quit [Quit: Going offline, see ya! (www.adiirc.com)] 13:18 -!- CodeBlue1776 [~CodeBlue1@107-215-134-60.lightspeed.cicril.sbcglobal.net] has quit [Read error: Connection reset by peer] 13:19 -!- CodeBlue1776 [~CodeBlue1@107-215-134-60.lightspeed.cicril.sbcglobal.net] has joined #bitcoin-core-dev 13:20 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 13:23 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 268 seconds] 13:23 -!- K222 [02b06f69@gateway/web/freenode/ip.2.176.111.105] has joined #bitcoin-core-dev 13:25 < K222> HELOO 13:26 -!- TheV01d [thev01d@btc.mining.ga] has quit [Disconnected by services] 13:26 -!- TheV01d [thev01d@btc.mining.ga] has joined #bitcoin-core-dev 13:26 -!- TheV01d [thev01d@btc.mining.ga] has quit [Disconnected by services] 13:27 -!- TheV01d [thev01d@btc.mining.ga] has joined #bitcoin-core-dev 13:28 -!- TheV01d [thev01d@btc.mining.ga] has quit [Killed (tepper.freenode.net (Nickname regained by services))] 13:28 -!- TheV01d_ [thev01d@btc.mining.ga] has joined #bitcoin-core-dev 13:30 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-mqarvieqrsokxytg] has joined #bitcoin-core-dev 13:30 < 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 13:30 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-mqarvieqrsokxytg] has left #bitcoin-core-dev [] 13:36 -!- ujjwalt [~ujjwalt@103.119.247.2] has joined #bitcoin-core-dev 13:41 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has quit [Remote host closed the connection] 13:43 -!- ujjwalt [~ujjwalt@103.119.247.2] has quit [Quit: ujjwalt] 13:44 -!- rex4539 [~rex4539@ppp-2-84-161-2.home.otenet.gr] has quit [Quit: rex4539] 13:44 -!- jarthur [~jarthur@207.114.244.5] has joined #bitcoin-core-dev 13:48 -!- rh0nj [~rh0nj@136.243.139.96] has quit [Remote host closed the connection] 13:49 -!- rh0nj [~rh0nj@136.243.139.96] has joined #bitcoin-core-dev 13:54 -!- hashist [~hashist@157.157.113.66] has joined #bitcoin-core-dev 13:56 -!- K222 [02b06f69@gateway/web/freenode/ip.2.176.111.105] has quit [Quit: Page closed] 14:03 -!- booyah_ is now known as booyah 14:05 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has quit [Remote host closed the connection] 14:11 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has joined #bitcoin-core-dev 14:13 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 14:15 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 14:15 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has quit [Ping timeout: 250 seconds] 14:20 -!- reardencode [~reardenco@shrugged.reardencode.com] has quit [Ping timeout: 268 seconds] 14:22 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has joined #bitcoin-core-dev 14:24 -!- danra [5ee654fb@gateway/web/freenode/ip.94.230.84.251] has joined #bitcoin-core-dev 14:26 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has quit [Ping timeout: 240 seconds] 14:30 -!- michaelsdunn1 [~michaelsd@unaffiliated/michaelsdunn1] has quit [Remote host closed the connection] 14:31 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 250 seconds] 14:35 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has joined #bitcoin-core-dev 14:40 -!- reardencode [~reardenco@shrugged.reardencode.com] has joined #bitcoin-core-dev 14:46 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 250 seconds] 14:51 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has quit [Remote host closed the connection] 14:54 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has joined #bitcoin-core-dev 14:57 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 14:58 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has quit [Ping timeout: 246 seconds] 15:09 -!- hebasto [~hebasto@95.164.65.194] has quit [Remote host closed the connection] 15:18 -!- spinza [~spin@155.93.246.187] has joined #bitcoin-core-dev 15:23 -!- hashist [~hashist@157.157.113.66] has quit [Quit: Leaving] 15:29 -!- harrymm [~harrymm@69.161.195.103] has quit [Ping timeout: 272 seconds] 15:32 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 15:36 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has joined #bitcoin-core-dev 15:37 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-kypsjlpykgsrrnst] has joined #bitcoin-core-dev 15:37 < 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 15:37 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-kypsjlpykgsrrnst] has left #bitcoin-core-dev [] 15:41 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has quit [Ping timeout: 250 seconds] 15:41 -!- harrymm [~harrymm@mx-ll-223.204.112-69.dynamic.3bb.co.th] has joined #bitcoin-core-dev 15:41 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has joined #bitcoin-core-dev 15:45 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has quit [Ping timeout: 240 seconds] 15:48 -!- jarthur [~jarthur@207.114.244.5] has quit [] 15:53 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has joined #bitcoin-core-dev 15:58 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 268 seconds] 15:58 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has quit [Ping timeout: 250 seconds] 16:04 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has joined #bitcoin-core-dev 16:09 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has quit [Ping timeout: 268 seconds] 16:10 -!- shesek [~shesek@176.12.246.15] has joined #bitcoin-core-dev 16:10 -!- shesek [~shesek@176.12.246.15] has quit [Changing host] 16:10 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 16:22 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has joined #bitcoin-core-dev 16:26 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has quit [Ping timeout: 240 seconds] 16:35 -!- reardencode [~reardenco@shrugged.reardencode.com] has quit [Ping timeout: 250 seconds] 16:36 -!- reardencode [~reardenco@shrugged.reardencode.com] has joined #bitcoin-core-dev 16:56 -!- fabianfabian [~fabianfab@D9656CCE.cm-27.dynamic.ziggo.nl] has quit [Quit: Textual IRC Client: www.textualapp.com] 17:24 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 250 seconds] 17:24 -!- shesek [~shesek@176.12.246.15] has joined #bitcoin-core-dev 17:24 -!- shesek [~shesek@176.12.246.15] has quit [Changing host] 17:24 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 17:39 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 246 seconds] 17:50 -!- rh0nj [~rh0nj@136.243.139.96] has quit [Remote host closed the connection] 17:53 -!- rh0nj [~rh0nj@136.243.139.96] has joined #bitcoin-core-dev 18:03 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 18:07 -!- dgenr8 [~dgenr8@unaffiliated/dgenr8] has joined #bitcoin-core-dev 18:07 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has joined #bitcoin-core-dev 18:12 -!- dgenr8 [~dgenr8@unaffiliated/dgenr8] has quit [Ping timeout: 250 seconds] 18:12 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 18:14 < phantomcircuit> so it seems that with a few modifications 0.7.2 will build on a modern system and sync (albeit slowly) 18:15 < phantomcircuit> i'd like to do some kind of 0.7.2.1 release, but in a way that it's obviously not maintained 18:15 < phantomcircuit> any ideas? 18:15 < luke-jr> phantomcircuit: why not just finish v0.7.3? 18:16 -!- dgenr8 [~dgenr8@unaffiliated/dgenr8] has joined #bitcoin-core-dev 18:16 < luke-jr> v0.7.2 IIRC lacks the changes needed for the 2013 hardfork 18:16 < luke-jr> also, that sounds like a lot of work if you mean backporting all the softforks 18:17 < phantomcircuit> luke-jr, no i mean the minimal changes required to get it to build 18:17 < phantomcircuit> and to work with modern openssl 18:17 < luke-jr> ah 18:17 < luke-jr> well still, I'd do it based on 0.7.3 18:18 < luke-jr> [rc3] 18:21 < luke-jr> looks like the old stable branch repo is defunct, so I pushed the 0.7.x branch to my personal github repo 18:27 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 250 seconds] 18:33 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-gunbqysizxwrkabu] has joined #bitcoin-core-dev 18:33 < bitcoin-git> [bitcoin] xujc opened pull request #14989: Delete JSON-RPC-interface.md (master...patch-1) https://github.com/bitcoin/bitcoin/pull/14989 18:33 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-gunbqysizxwrkabu] has left #bitcoin-core-dev [] 18:34 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-qhhzciivijyinvva] has joined #bitcoin-core-dev 18:34 < bitcoin-git> [bitcoin] fanquake closed pull request #14989: Delete JSON-RPC-interface.md (master...patch-1) https://github.com/bitcoin/bitcoin/pull/14989 18:34 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-qhhzciivijyinvva] has left #bitcoin-core-dev [] 18:37 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-fdpsupnuosijtzjm] has joined #bitcoin-core-dev 18:37 < bitcoin-git> [bitcoin] MeshCollider pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/b545a6e68965...27f5a295d740 18:37 < bitcoin-git> bitcoin/master 8b9171c Ben Woosley: wallet: Initialize stop_block to nullptr in CWallet::ScanForWalletTransactions... 18:37 < bitcoin-git> bitcoin/master 27f5a29 MeshCollider: Merge #14957: wallet: Initialize stop_block in CWallet::ScanForWalletTransactions... 18:37 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-fdpsupnuosijtzjm] has left #bitcoin-core-dev [] 18:38 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-wjrqaenqzxaswjfp] has joined #bitcoin-core-dev 18:38 < bitcoin-git> [bitcoin] MeshCollider closed pull request #14957: wallet: Initialize stop_block in CWallet::ScanForWalletTransactions (master...stop-block-null) https://github.com/bitcoin/bitcoin/pull/14957 18:38 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-wjrqaenqzxaswjfp] has left #bitcoin-core-dev [] 18:49 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 250 seconds] 18:53 -!- harrymm [~harrymm@mx-ll-223.204.112-69.dynamic.3bb.co.th] has quit [Ping timeout: 244 seconds] 18:59 -!- shesek [~shesek@176.12.246.15] has joined #bitcoin-core-dev 18:59 -!- shesek [~shesek@176.12.246.15] has quit [Changing host] 18:59 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 19:05 -!- owowo [~ovovo@unaffiliated/ovovo] has quit [Ping timeout: 272 seconds] 19:07 -!- harrymm [~harrymm@69.161.195.103] has joined #bitcoin-core-dev 19:09 -!- owowo [~ovovo@unaffiliated/ovovo] has joined #bitcoin-core-dev 19:13 < gkrizek> I requested an invite to the Bitcoin Core Slack and haven't heard anything. How can I get an invite? Is IRC or Slack used more? 19:20 -!- michaelfolkson [~textual@host86-131-210-193.range86-131.btcentralplus.com] has joined #bitcoin-core-dev 19:24 < booyah> gkrizek: the regular meetings, are happening here on irc 19:26 -!- michaelfolkson [~textual@host86-131-210-193.range86-131.btcentralplus.com] has quit [Quit: Textual IRC Client: www.textualapp.com] 19:26 -!- michaelfolkson [~textual@host86-131-210-193.range86-131.btcentralplus.com] has joined #bitcoin-core-dev 19:27 -!- michaelfolkson [~textual@host86-131-210-193.range86-131.btcentralplus.com] has quit [Client Quit] 19:27 -!- Murch [~murch@50-200-105-218-static.hfc.comcastbusiness.net] has quit [Quit: Snoozing.] 19:27 -!- michaelfolkson [~textual@host86-131-210-193.range86-131.btcentralplus.com] has joined #bitcoin-core-dev 19:29 < gkrizek> booyah: Thanks! I'll probably just stick to IRC then 19:36 -!- drexl [~drexl@cpc130676-camd16-2-0-cust445.know.cable.virginm.net] has quit [Remote host closed the connection] 19:37 -!- hebasto [~hebasto@95.164.65.194] has joined #bitcoin-core-dev 19:45 < luke-jr> gkrizek: I don't think any Core devs actually use the Slack at this point 19:50 < gkrizek> luke-jr: Ha, thanks for the heads up. 19:52 < sipa> no, it's just a community effort 19:54 -!- JackH [~laptop@host86-175-127-233.range86-175.btcentralplus.com] has quit [Ping timeout: 268 seconds] 19:57 < gkrizek> Looking at the master branch in bitcoin/bitcoin, I see a lot of PRs are merged with failing tests. Why is this? Are the tests just flaky? 19:58 < sipa> the appveyor tests are experimental, and we ignore them for merging 19:59 < sipa> unfortunately we can't prevent it from marking the github PR as invalid 19:59 < sipa> *failed 20:02 < gkrizek> Understood. But it seems like Travis fails at a similar frequency... 20:10 < gkrizek> sipa: I'm new and want to start contributing. I'm just trying to understand the flow and requirements. Mainly curious how important/accurate those test suites are. 20:10 < gwillen> travis is generally pretty reliable 20:10 < gwillen> I think travis fails are typically treated as real, although I admit I saw one just today that I'm pretty sure was spurious 20:11 < sipa> there are occasionally failures due to timeouts or so 20:11 < gwillen> but in that case all but one platform showed as passing, which I think is a good clue 20:11 < gwillen> you can also inspect the output 20:12 < gwillen> so I think the answer is "the tests must actually pass, but spurious CI failures that aren't actually the result of failing tests happen sometimes" 20:12 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 245 seconds] 20:14 < gkrizek> Ok, awesome. Thanks for the explanation! 20:15 -!- michaelfolkson [~textual@host86-131-210-193.range86-131.btcentralplus.com] has quit [Quit: Sleep mode] 20:16 -!- michaelfolkson [~textual@host86-131-210-193.range86-131.btcentralplus.com] has joined #bitcoin-core-dev 20:16 < phantomcircuit> gwillen, travis randomly fails too 20:16 < phantomcircuit> it seems like the tests are much more expensive to run than they used to be (which is fine, but breaking) 20:30 -!- shesek [~shesek@176.12.246.15] has joined #bitcoin-core-dev 20:30 -!- shesek [~shesek@176.12.246.15] has quit [Changing host] 20:30 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 20:33 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has quit [Remote host closed the connection] 20:34 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has joined #bitcoin-core-dev 21:10 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 250 seconds] 21:14 -!- michaelfolkson [~textual@host86-131-210-193.range86-131.btcentralplus.com] has quit [Quit: Sleep mode] 21:23 -!- Murch [~murch@c-73-223-113-121.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 21:40 -!- rex4539 [~rex4539@ppp-2-84-161-2.home.otenet.gr] has joined #bitcoin-core-dev 21:54 -!- rh0nj [~rh0nj@136.243.139.96] has quit [Remote host closed the connection] 21:54 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-jawredrxzqldptko] has joined #bitcoin-core-dev 21:54 < bitcoin-git> [bitcoin] jonasschnelli pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/27f5a295d740...e7b88ecbc920 21:54 < bitcoin-git> bitcoin/master 4d454dc Hennadii Stepanov: Refactoring with QString::toNSString... 21:54 < bitcoin-git> bitcoin/master e7b88ec Jonas Schnelli: Merge #14975: qt: Refactoring with QString::toNSString()... 21:54 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-jawredrxzqldptko] has left #bitcoin-core-dev [] 21:55 -!- rh0nj [~rh0nj@136.243.139.96] has joined #bitcoin-core-dev 21:55 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-qnrwaugtoqiyplsy] has joined #bitcoin-core-dev 21:55 < bitcoin-git> [bitcoin] jonasschnelli closed pull request #14975: qt: Refactoring with QString::toNSString() (master...20181216-macos-shownotification-refactor) https://github.com/bitcoin/bitcoin/pull/14975 21:55 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-qnrwaugtoqiyplsy] has left #bitcoin-core-dev [] 21:55 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-norstjpsbcysvigl] has joined #bitcoin-core-dev 21:55 < bitcoin-git> [bitcoin] hebasto opened pull request #14990: qt: Use bilinear filtering for icon (master...20181218-icon-bilinear-filtering) https://github.com/bitcoin/bitcoin/pull/14990 21:55 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-norstjpsbcysvigl] has left #bitcoin-core-dev [] 21:58 -!- a5m0 [~a5m0@unaffiliated/a5m0] has quit [Ping timeout: 268 seconds] 21:59 -!- a5m0 [~a5m0@unaffiliated/a5m0] has joined #bitcoin-core-dev 22:00 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 22:03 -!- spinza [~spin@155.93.246.187] has joined #bitcoin-core-dev 22:09 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 22:15 -!- gkrizek [~gkrizek@ip98-164-15-79.ks.ks.cox.net] has quit [Remote host closed the connection] 22:25 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 22:36 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 268 seconds] 22:53 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-vchirlvdpzxzfwgw] has joined #bitcoin-core-dev 22:54 < bitcoin-git> [bitcoin] suprraz opened pull request #14991: Doc build macos (master...doc_build_macos) https://github.com/bitcoin/bitcoin/pull/14991 22:54 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-vchirlvdpzxzfwgw] has left #bitcoin-core-dev [] 23:03 -!- laurentmt [~Thunderbi@194.59.249.22] has joined #bitcoin-core-dev 23:08 -!- shesek [~shesek@176.12.237.212] has joined #bitcoin-core-dev 23:08 -!- shesek [~shesek@176.12.237.212] has quit [Changing host] 23:08 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 23:15 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 250 seconds] 23:16 -!- laurentmt [~Thunderbi@194.59.249.22] has quit [Quit: laurentmt] 23:28 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 23:43 -!- shesek` [~shesek@141.226.217.67] has joined #bitcoin-core-dev 23:46 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 272 seconds] 23:49 -!- shesek` [~shesek@141.226.217.67] has quit [Read error: Connection reset by peer] 23:50 -!- shesek` [~shesek@141.226.217.67] has joined #bitcoin-core-dev 23:54 -!- kallewoof [~quassel@240d:1a:759:6000:a7b1:451a:8874:e1ac] has quit [Remote host closed the connection] 23:56 -!- kallewoof [~quassel@fp96f94c66.tkyc515.ap.nuro.jp] has joined #bitcoin-core-dev --- Log closed Tue Dec 18 00:00:55 2018