--- Day changed Fri Dec 15 2017 00:09 -!- mrfrasha_ [~mrfrasha@66-188-250-34.dhcp.eucl.wi.charter.com] has quit [Quit: mrfrasha_] 00:19 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 00:20 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 00:23 -!- Guyver2 [AdiIRC@guyver2.xs4all.nl] has joined #bitcoin-core-dev 00:36 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has joined #bitcoin-core-dev 00:44 -!- vtt [71a7d621@gateway/web/freenode/ip.113.167.214.33] has joined #bitcoin-core-dev 00:44 < vtt> hi 00:45 -!- vtt [71a7d621@gateway/web/freenode/ip.113.167.214.33] has quit [Client Quit] 00:55 -!- laurentmt [~Thunderbi@92.154.68.134] has joined #bitcoin-core-dev 00:58 -!- timothy [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 01:05 -!- Szadek [~Szadek@2001:ac8:28:d::3e] has quit [Ping timeout: 272 seconds] 01:06 -!- anditto [~anditto@182.248.158.129] has quit [] 01:10 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Remote host closed the connection] 01:10 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has joined #bitcoin-core-dev 01:14 < Provoostenator> My entire machine almost completely froze while trying shutdown QT. Maybe because I set DB cache to 10 GB on a 16 GB machine, but it could have some other process I was running. 01:15 -!- Guyver2 [AdiIRC@guyver2.xs4all.nl] has quit [Quit: Going offline, see ya! (www.adiirc.com)] 01:15 < Provoostenator> More interesting is that when I restart it and then immedidately try to quit, it took about 5 minutes for it to honor that quit command. 01:16 < Provoostenator> Not much memory and CPU usage at all, just lots of disk writing. 01:17 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 01:17 < Provoostenator> It showed the "don't shut the computer down message" during the first time (when the computer froze), but it did not show that warning message the second time. 01:18 < Provoostenator> Does the db cache get written to disk during idle time? 01:18 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 01:36 < gmaxwell> Provoostenator: no because that would undermine its benefits. (well it gets flushed after 24 hours if fullness doesn't trigger a flsh first) 01:36 < gmaxwell> the main purpose of the dbcache is to act as a buffer that prevents utxo from ever hitting the database at all. 01:38 < gmaxwell> since the design changes in the last year we can now do partial flushing, which would allow for some incremental flushing-- e.g. flush things more than N blocks old-- but it hasn't been implemented yet. 01:39 -!- GV [4c110bda@gateway/web/freenode/ip.76.17.11.218] has quit [Ping timeout: 260 seconds] 01:39 -!- vicenteH [~user@195.235.96.150] has joined #bitcoin-core-dev 01:42 < wumpus> jonasschnelli: yep, looks good to me 01:44 < bitcoin-git> [bitcoin] laanwj pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/c66adb286a89...8585bb8f0584 01:44 < bitcoin-git> bitcoin/master c853812 Jonas Schnelli: Update ban-state in case of dirty-state during periodic sweep 01:44 < bitcoin-git> bitcoin/master 57ac471 Jonas Schnelli: Call BannedListChanged outside of cs_setBanned lock 01:44 < bitcoin-git> bitcoin/master 8585bb8 Wladimir J. van der Laan: Merge #11616: Update ban-state in case of dirty-state during periodic sweep... 01:44 < bitcoin-git> [bitcoin] laanwj closed pull request #11616: Update ban-state in case of dirty-state during periodic sweep (master...2017/11/qt_ban) https://github.com/bitcoin/bitcoin/pull/11616 01:49 -!- dabura667 [~dabura667@p98110-ipngnfx01marunouchi.tokyo.ocn.ne.jp] has quit [Remote host closed the connection] 01:59 -!- Kozuch [~Kozuch@81.0.198.168] has joined #bitcoin-core-dev 02:05 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 02:11 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 02:12 < Provoostenator> gmaxwell: I see. I set it to a high number during IBD with the idea of then lowering it after that's done. 02:12 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 02:14 < Provoostenator> Maybe doing a flush after IBD makes sense? 02:20 < gmaxwell> yes, a flush after IBD would make sense and probably avoid a lot of complaints from users who crashed their system and are unhappy that its effectively revalidating the whole chain. it's not really clear at what point it should flush though, ibd doesn't have a bright boundary line 02:21 < luke-jr> when the best known header chain has been fully processed? 02:22 < Provoostenator> Does the flush block the UI? If not, then I guess it can be done once the "downloading blocks" dialog goes away (I don't know what triggers that). 02:23 < wumpus> that's complicated - a flush doesn't block normal user activity in the GUI, however holding up cs_main will make it block once the user does any action that requires response from the node 02:23 < wumpus> or wallet, such as sending a transaction (fee computation), looking at transaction details, pretty much anything 02:23 < Provoostenator> So then a progress bar would be good. 02:23 < Provoostenator> Even if the user can dismiss it (as they can the IDB popover), at least they'd have a clue as to why somethign is unresponsive. 02:23 < wumpus> anyhow isn't this only a problem with huge dbcaches? with the normal settings, flushes are abundant 02:24 < wumpus> showing a progress bar every time would be crazy 02:24 < Provoostenator> If it's likely to take more than 10 seconds, there should be some UI indicator. But it doesn't have to cover the whole screen. 02:24 < wumpus> we should just fix the GUI to be more async and not block the GUI thread on everything 02:24 < wumpus> that's much better than hacking even more around it 02:25 < Provoostenator> That for sure. 02:25 < Provoostenator> Don't Block The Main Thread is a good mantra 02:26 < Provoostenator> (iOs devs are obsessed by it, because blocking the main thread for more than 1/60th of a second breaks butter smooth scrolling. 02:27 * luke-jr wishes his window manager didn't block the main thread :x 02:27 < Provoostenator> And probably many crashes are a result of over complicated engineering to keep said scrolling smooth. 02:28 < wumpus> my brain is too slow to notice 1/60th of a second :) but yes, as a mantra it makes sense, I really wish I could go in time and convince myself to design the GUI with that in mind instead of planning to leave it for later 02:29 < Provoostenator> Well, if you'd done that, maybe Bitcoin would never have taken off :-) 02:29 < Provoostenator> (because of the never shipping) 02:30 < wumpus> yep, good point 02:30 < wumpus> going from wx to qt was already a huge change 02:31 < wumpus> luke-jr: how do you mean that? 02:31 < luke-jr> ? quite often when I alt-tab, my window manager blocks on I/O until whatever fsync something else did has finished 02:32 -!- jeeteshsurana [31d52237@gateway/web/freenode/ip.49.213.34.55] has joined #bitcoin-core-dev 02:32 < wumpus> even when not swapping? 02:32 < luke-jr> yes, only at 24 GB used (of 32 GB) 02:33 < luke-jr> I suspect btrfs-related, but oh well 02:34 < luke-jr> when Talos arrives, I'll probably switch back to ext4 or something 02:36 -!- jeeteshsurana [31d52237@gateway/web/freenode/ip.49.213.34.55] has quit [Client Quit] 02:37 -!- Amuza [~Amuza@85.159.207.5] has joined #bitcoin-core-dev 02:47 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-cdadjtieczwkpksn] has joined #bitcoin-core-dev 03:01 -!- jtimon [~quassel@37.134.31.164] has quit [Ping timeout: 256 seconds] 03:06 -!- arubi [~ese168@gateway/tor-sasl/ese168] has quit [Remote host closed the connection] 03:07 -!- arubi [~ese168@gateway/tor-sasl/ese168] has joined #bitcoin-core-dev 03:10 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 03:10 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has quit [Remote host closed the connection] 03:11 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has joined #bitcoin-core-dev 03:11 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 03:15 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has quit [Ping timeout: 265 seconds] 03:16 -!- YellowSphere [~YellowSph@95-37-194-52.dynamic.mts-nn.ru] has joined #bitcoin-core-dev 03:17 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has joined #bitcoin-core-dev 03:21 -!- freeark1 [6adf9aac@gateway/web/freenode/ip.106.223.154.172] has joined #bitcoin-core-dev 03:25 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 03:26 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 03:32 -!- cdecker [~cdecker@mail.snyke.net] has quit [Quit: ZNC - http://znc.in] 03:36 < ryanofsky> MarcoFalke, others, anybody know about "Configuring boost..., /bin/sh: 1: requires: not found" errors from travis depends? i filed #11906 03:36 < gribble> https://github.com/bitcoin/bitcoin/issues/11906 | Travis x86_64-apple-darwin11 errors: "Configuring boost... /bin/sh: 1: requires: not found" · Issue #11906 · bitcoin/bitcoin · GitHub 03:36 -!- fanquake [~fanquake@unaffiliated/fanquake] has joined #bitcoin-core-dev 03:39 < fanquake> Reminds me, building depends boost is currently broken on osx 10.13 03:49 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Ping timeout: 248 seconds] 03:49 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has quit [Remote host closed the connection] 03:50 -!- YellowSphere [~YellowSph@95-37-194-52.dynamic.mts-nn.ru] has quit [Remote host closed the connection] 03:50 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has joined #bitcoin-core-dev 03:50 -!- YellowSphere [~YellowSph@95-37-194-52.dynamic.mts-nn.ru] has joined #bitcoin-core-dev 03:51 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has quit [Remote host closed the connection] 03:51 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 03:51 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has joined #bitcoin-core-dev 03:55 -!- freeark1 [6adf9aac@gateway/web/freenode/ip.106.223.154.172] has quit [Ping timeout: 260 seconds] 03:56 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has quit [Ping timeout: 272 seconds] 03:58 -!- azkel [ad26dc31@gateway/web/freenode/ip.173.38.220.49] has joined #bitcoin-core-dev 04:01 -!- azkel [ad26dc31@gateway/web/freenode/ip.173.38.220.49] has quit [Client Quit] 04:04 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 04:05 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 04:07 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 04:10 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 248 seconds] 04:27 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 04:28 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 04:51 < wumpus> fanquake: any idea why? do we have an issue open for that? 04:53 < bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/8585bb8f0584...df7181952436 04:53 < bitcoin-git> bitcoin/master c79d73d Matt Corallo: Clarify getbalance meaning a tiny bit in response to questions. 04:53 < bitcoin-git> bitcoin/master df71819 Wladimir J. van der Laan: Merge #11886: Clarify getbalance meaning a tiny bit in response to questions.... 04:54 < bitcoin-git> [bitcoin] laanwj closed pull request #11886: Clarify getbalance meaning a tiny bit in response to questions. (master...2017-12-getbalance-docs) https://github.com/bitcoin/bitcoin/pull/11886 04:55 -!- Emcy [~Emcy@unaffiliated/emcy] has quit [Read error: Connection reset by peer] 04:55 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Read error: Connection reset by peer] 04:56 -!- Emcy [~Emcy@unaffiliated/emcy] has joined #bitcoin-core-dev 04:56 -!- Chris_Stewart_5 [~chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has joined #bitcoin-core-dev 04:56 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 04:58 < fanquake> wumpus I don't think so. I'll have a look again tonight and open an issue with some more info. 04:58 < wumpus> thanks! 04:58 < fanquake> I have a few depends changes I need to PR as well, will do it at the same time. 05:05 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-cdadjtieczwkpksn] has quit [Quit: Connection closed for inactivity] 05:12 -!- Guest16 [~textual@249.13.77.188.dynamic.jazztel.es] has joined #bitcoin-core-dev 05:16 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 05:17 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 05:21 -!- goatpig [56f75683@gateway/web/freenode/ip.86.247.86.131] has joined #bitcoin-core-dev 05:22 -!- Lightsword [~Lightswor@2604:a880:1:20::1d3:9001] has quit [Ping timeout: 240 seconds] 05:25 -!- Lightsword [~Lightswor@107.170.253.193] has joined #bitcoin-core-dev 05:32 -!- Aaronvan_ is now known as AaronvanW 05:36 -!- cdecker [~cdecker@mail.snyke.net] has joined #bitcoin-core-dev 05:45 -!- propumpkin is now known as contrapumpkin 05:45 -!- Guest16 [~textual@249.13.77.188.dynamic.jazztel.es] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 05:51 -!- Guest16 [~textual@249.13.77.188.dynamic.jazztel.es] has joined #bitcoin-core-dev 05:53 -!- Chris_Stewart_5 [~chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has quit [Ping timeout: 240 seconds] 05:53 -!- Guest16 [~textual@249.13.77.188.dynamic.jazztel.es] has quit [Client Quit] 06:02 -!- quantbot [~quantbot@38.101.106.141] has joined #bitcoin-core-dev 06:08 -!- Guest16 [~textual@63.red-81-45-39.staticip.rima-tde.net] has joined #bitcoin-core-dev 06:10 -!- mrfrasha_ [~mrfrasha@66-188-250-34.dhcp.eucl.wi.charter.com] has joined #bitcoin-core-dev 06:11 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 06:12 -!- Guest16 [~textual@63.red-81-45-39.staticip.rima-tde.net] has quit [Client Quit] 06:12 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 06:20 < SopaXorzTaker> I want to propose using Bech32 for private keys 06:20 < SopaXorzTaker> it would be quite useful, and if we want to phase Base58 out, we must do so everywhere we can 06:29 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 06:30 -!- Cogito_Ergo_Sum [~Myself@unaffiliated/cogito-ergo-sum/x-7399460] has joined #bitcoin-core-dev 06:31 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 06:31 < wumpus> there would be no point in defining a new format for normal private keys, but for a new format representing private key + segwit metadata, sure 06:32 -!- Guest16 [~textual@63.red-81-45-39.staticip.rima-tde.net] has joined #bitcoin-core-dev 06:34 -!- Guest16 [~textual@63.red-81-45-39.staticip.rima-tde.net] has quit [Read error: Connection reset by peer] 06:36 -!- Chris_Stewart_5 [~chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has joined #bitcoin-core-dev 06:44 < bitcoin-git> [bitcoin] johnBuffer opened pull request #11908: Used pragma once instead of defines (master...patch-1) https://github.com/bitcoin/bitcoin/pull/11908 06:44 < SopaXorzTaker> wumpus, bech32 is better than b58 06:45 < SopaXorzTaker> so encoding the private keys in the better encoding would make sense 06:45 -!- quantbot [~quantbot@38.101.106.141] has quit [Remote host closed the connection] 06:45 < wumpus> what is 'better'? I think a standard that exists is better, just thinking up new encodings because you can is a waste of everyone's time 06:47 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Read error: Connection reset by peer] 06:47 < wumpus> so unless there's a use case for making it incompatible with what people are used to, e.g. segwit address type, don't. 06:48 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 06:48 < wumpus> anyhow that's my opinion, feel free to propose a BIP 06:50 < SopaXorzTaker> wumpus, how to propose a BIP? 06:51 < SopaXorzTaker> (I really want you to throw some documentation in my face) 06:52 < wumpus> https://github.com/bitcoin/bips/blob/master/bip-0001.mediawiki 06:52 < timothy> SopaXorzTaker: https://github.com/bitcoin/bips/blob/master/bip-0002.mediawiki ? 06:54 < SopaXorzTaker> hmm, that seems useful 07:09 -!- mrfrasha_ [~mrfrasha@66-188-250-34.dhcp.eucl.wi.charter.com] has quit [Quit: mrfrasha_] 07:10 -!- gribble [~gribble@unaffiliated/nanotube/bot/gribble] has quit [Read error: Connection reset by peer] 07:14 -!- fanquake [~fanquake@unaffiliated/fanquake] has quit [Quit: Leaving.] 07:16 -!- gribble [~gribble@unaffiliated/nanotube/bot/gribble] has joined #bitcoin-core-dev 07:16 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 07:17 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 07:19 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 07:20 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 07:20 < bitcoin-git> [bitcoin] MarcoFalke closed pull request #11908: Used pragma once instead of defines (master...patch-1) https://github.com/bitcoin/bitcoin/pull/11908 07:23 -!- zshlyk [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 07:24 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 07:31 -!- quantbot [~quantbot@38.101.106.141] has joined #bitcoin-core-dev 07:31 -!- quantbot [~quantbot@38.101.106.141] has quit [Remote host closed the connection] 07:32 -!- quantbot [~quantbot@38.101.106.141] has joined #bitcoin-core-dev 07:37 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 07:40 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 248 seconds] 07:43 -!- CASEgezadthfr [~ZZXv@dsl-216-221-58-177.mtl.aei.ca] has joined #bitcoin-core-dev 07:44 -!- CASEgezadthfr [~ZZXv@dsl-216-221-58-177.mtl.aei.ca] has quit [Remote host closed the connection] 07:46 -!- Kozuch [~Kozuch@81.0.198.168] has quit [Ping timeout: 248 seconds] 07:47 -!- Aaronvan_ is now known as AaronvanW 07:49 -!- dcousens [~dcousens@CPE-101-181-119-74.lnse5.cha.bigpond.net.au] has quit [Ping timeout: 240 seconds] 07:50 -!- dcousens [~dcousens@CPE-121-214-142-19.lnse3.lon.bigpond.net.au] has joined #bitcoin-core-dev 07:52 -!- Amuza [~Amuza@85.159.207.5] has quit [Ping timeout: 240 seconds] 07:55 -!- dcousens [~dcousens@CPE-121-214-142-19.lnse3.lon.bigpond.net.au] has quit [Ping timeout: 272 seconds] 07:56 -!- dcousens [~dcousens@CPE-101-181-58-96.lnse4.cha.bigpond.net.au] has joined #bitcoin-core-dev 08:18 -!- pkx2 [~pkx@unaffiliated/pkx] has joined #bitcoin-core-dev 08:19 -!- jamesob [~james@c-73-241-180-136.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 08:21 -!- zshlyk [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 08:22 -!- zshlyk [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 08:22 -!- zshlyk [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 08:23 -!- pkx2 [~pkx@unaffiliated/pkx] has quit [Read error: Connection reset by peer] 08:23 -!- zshlyk [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 08:29 -!- snake [75c5748f@gateway/web/freenode/ip.117.197.116.143] has joined #bitcoin-core-dev 08:31 -!- jamesob [~james@c-73-241-180-136.hsd1.ca.comcast.net] has quit [Ping timeout: 272 seconds] 08:32 -!- goatpig [56f75683@gateway/web/freenode/ip.86.247.86.131] has quit [Ping timeout: 260 seconds] 08:35 -!- snake [75c5748f@gateway/web/freenode/ip.117.197.116.143] has quit [Ping timeout: 260 seconds] 08:43 -!- jamesob [~james@199.230.10.198] has joined #bitcoin-core-dev 08:43 -!- mrfrasha_ [~mrfrasha@66-188-250-34.dhcp.eucl.wi.charter.com] has joined #bitcoin-core-dev 08:48 -!- YellowSphere [~YellowSph@95-37-194-52.dynamic.mts-nn.ru] has quit [Read error: Connection reset by peer] 08:49 -!- xmsx [4e24bf5f@gateway/web/freenode/ip.78.36.191.95] has joined #bitcoin-core-dev 08:50 < xmsx> Hi guys, could you tell me please, is it safe to send RBF transactions from bitcoin-qt? Sent a tx with 50 sat/byte instead of 500 sat/byte :'( 08:56 -!- Randolf [~randolf@96.53.47.42] has quit [Ping timeout: 248 seconds] 09:04 -!- zshlyk [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 09:05 -!- zshlyk [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 09:07 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-qvhbeurrruwanckk] has joined #bitcoin-core-dev 09:10 -!- Randolf [~randolf@96.53.47.42] has joined #bitcoin-core-dev 09:16 -!- zshlyk [~zshlyk@gateway/tor-sasl/intcat] has quit [Ping timeout: 248 seconds] 09:17 -!- arubi [~ese168@gateway/tor-sasl/ese168] has quit [Ping timeout: 248 seconds] 09:17 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Ping timeout: 248 seconds] 09:17 -!- ghost43 [~daer@gateway/tor-sasl/daer] has quit [Ping timeout: 248 seconds] 09:18 -!- Dizzle [~dizzle@108.171.182.16] has joined #bitcoin-core-dev 09:20 -!- jamesob [~james@199.230.10.198] has quit [Ping timeout: 248 seconds] 09:24 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has joined #bitcoin-core-dev 09:25 -!- arubi [~ese168@gateway/tor-sasl/ese168] has joined #bitcoin-core-dev 09:25 -!- ghost43 [~daer@gateway/tor-sasl/daer] has joined #bitcoin-core-dev 09:27 -!- zshlyk [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 09:32 -!- timothy [~tredaelli@redhat/timothy] has quit [Quit: Konversation terminated!] 09:35 -!- Randolf [~randolf@96.53.47.42] has quit [Ping timeout: 256 seconds] 09:35 -!- maaku [~maaku@173.234.25.100] has left #bitcoin-core-dev ["http://quassel-irc.org - Chat comfortably. Anywhere."] 09:39 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-zysoqlyagzlchfwn] has joined #bitcoin-core-dev 09:39 -!- twistedline [~quassel@unaffiliated/twistedline] has quit [Ping timeout: 255 seconds] 09:42 -!- xmsx [4e24bf5f@gateway/web/freenode/ip.78.36.191.95] has quit [Quit: Page closed] 09:49 -!- twistedline [~quassel@unaffiliated/twistedline] has joined #bitcoin-core-dev 10:00 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Read error: Connection reset by peer] 10:01 -!- Murch [~murch@96-82-80-28-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 10:01 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 10:10 -!- HarlequinFields [~Harlequin@c-68-52-70-169.hsd1.tn.comcast.net] has joined #bitcoin-core-dev 10:13 < bitcoin-git> [bitcoin] MarcoFalke opened pull request #11909: Gitian: Move keys to sigs repo (master...Mf1712-gitianKeysDel) https://github.com/bitcoin/bitcoin/pull/11909 10:16 -!- jamesob [~james@199.230.10.198] has joined #bitcoin-core-dev 10:19 -!- nandal [~nandal@49.33.0.238] has joined #bitcoin-core-dev 10:28 < bitcoin-git> [bitcoin] snomofomo opened pull request #11910: Merge pull request #1 from bitcoin/master (master...master) https://github.com/bitcoin/bitcoin/pull/11910 10:29 -!- Murch [~murch@96-82-80-28-static.hfc.comcastbusiness.net] has quit [Quit: Snoozing.] 10:29 < bitcoin-git> [bitcoin] snomofomo closed pull request #11910: Mistake, please remove, sorry (master...master) https://github.com/bitcoin/bitcoin/pull/11910 10:30 -!- Murch [~murch@96-82-80-28-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 10:38 -!- vicenteH [~user@195.235.96.150] has quit [Ping timeout: 248 seconds] 10:44 -!- chjj [~chjj@unaffiliated/chjj] has quit [Ping timeout: 240 seconds] 10:49 -!- mrfrasha_ [~mrfrasha@66-188-250-34.dhcp.eucl.wi.charter.com] has quit [Quit: mrfrasha_] 10:49 -!- Nonghwangrumgrim [7c7a29ee@gateway/web/freenode/ip.124.122.41.238] has joined #bitcoin-core-dev 10:50 -!- Nonghwangrumgrim [7c7a29ee@gateway/web/freenode/ip.124.122.41.238] has quit [Client Quit] 10:53 -!- HarlequinFields [~Harlequin@c-68-52-70-169.hsd1.tn.comcast.net] has quit [Ping timeout: 265 seconds] 10:58 -!- xmsx [4e24bf5f@gateway/web/freenode/ip.78.36.191.95] has joined #bitcoin-core-dev 10:59 -!- mrfrasha_ [~mrfrasha@66-188-250-34.dhcp.eucl.wi.charter.com] has joined #bitcoin-core-dev 10:59 < xmsx> I went full retard and thought I'm using RBF by default..:/ Does CPFP work atm? 11:00 < sipa> yes 11:00 < sipa> #bitcoin 11:01 < xmsx> Thanks a lot :) 11:05 -!- HarlequinFields [~Harlequin@c-69-137-88-131.hsd1.tn.comcast.net] has joined #bitcoin-core-dev 11:14 -!- Murch [~murch@96-82-80-28-static.hfc.comcastbusiness.net] has quit [Quit: Snoozing.] 11:15 -!- nandal [~nandal@49.33.0.238] has quit [Remote host closed the connection] 11:15 -!- Murch [~murch@96-82-80-28-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 11:15 -!- jb55 [~jb55@24.87.206.252] has joined #bitcoin-core-dev 11:19 < bitcoin-git> [bitcoin] ryanofsky opened pull request #11911: Free CDBEnv instances when not in use (master...pr/countenv) https://github.com/bitcoin/bitcoin/pull/11911 11:20 -!- laurentmt [~Thunderbi@92.154.68.134] has quit [Quit: laurentmt] 11:32 -!- jb55 [~jb55@24.87.206.252] has quit [Ping timeout: 256 seconds] 11:32 -!- zshlyk [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 11:33 -!- zshlyk [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 11:35 -!- jb55 [~jb55@24.87.206.252] has joined #bitcoin-core-dev 11:36 < jonasschnelli> full sync against random peers (height: 499414) in 2h57min on AMD Ryzen 5 1600X / SSD 11:38 < bitcoin-git> [bitcoin] MarcoFalke opened pull request #11912: travis: Post result to irc on failure (master...Mf1712-travisIRCfail) https://github.com/bitcoin/bitcoin/pull/11912 11:40 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 11:40 -!- zshlyk [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 11:48 -!- HarlequinFields [~Harlequin@c-69-137-88-131.hsd1.tn.comcast.net] has quit [Ping timeout: 265 seconds] 11:48 -!- ekrok [~ekrok@85.200.34.95.customer.cdi.no] has quit [Quit: Leaving] 11:49 -!- Guyver2 [AdiIRC@guyver2.xs4all.nl] has joined #bitcoin-core-dev 11:50 -!- Randolf [~randolf@24.244.32.187] has joined #bitcoin-core-dev 11:58 -!- Randolf [~randolf@24.244.32.187] has quit [Ping timeout: 272 seconds] 11:59 -!- chjj [~chjj@unaffiliated/chjj] has joined #bitcoin-core-dev 12:04 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Read error: Connection reset by peer] 12:05 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 12:05 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 12:06 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 12:06 -!- clarkmoody [~clarkmood@47-218-248-206.bcstcmta04.res.dyn.suddenlink.net] has quit [Quit: Leaving] 12:09 -!- chjj [~chjj@unaffiliated/chjj] has quit [Ping timeout: 265 seconds] 12:10 -!- Murch [~murch@96-82-80-28-static.hfc.comcastbusiness.net] has quit [Ping timeout: 240 seconds] 12:10 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 12:10 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-zysoqlyagzlchfwn] has quit [Quit: Connection closed for inactivity] 12:11 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 12:17 -!- Chris_Stewart_5 [~chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has quit [Ping timeout: 265 seconds] 12:21 -!- xmsx [4e24bf5f@gateway/web/freenode/ip.78.36.191.95] has quit [Quit: Page closed] 12:29 -!- Randolf [~randolf@96.53.47.42] has joined #bitcoin-core-dev 12:36 -!- Chris_Stewart_5 [~chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has joined #bitcoin-core-dev 12:38 -!- YellowSphere [~YellowSph@95-37-194-52.dynamic.mts-nn.ru] has joined #bitcoin-core-dev 12:38 -!- Randolf [~randolf@96.53.47.42] has quit [Ping timeout: 256 seconds] 12:41 -!- Murch [~murch@96-82-80-28-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 12:41 -!- YellowSphere [~YellowSph@95-37-194-52.dynamic.mts-nn.ru] has quit [Client Quit] 12:43 -!- mrfrasha_ [~mrfrasha@66-188-250-34.dhcp.eucl.wi.charter.com] has quit [Quit: mrfrasha_] 12:49 -!- jadee_ [~Jadee@50-248-173-75-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 12:51 -!- Randolf [~randolf@96.53.47.42] has joined #bitcoin-core-dev 12:56 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-qvhbeurrruwanckk] has quit [Quit: Connection closed for inactivity] 13:02 -!- quantbot_ [~quantbot@38.101.106.141] has joined #bitcoin-core-dev 13:04 < bitcoin-git> [bitcoin] TheBlueMatt opened pull request #11913: Avoid cs_main during ReadBlockFromDisk Calls (master...2017-12-no-readblockfromdisk-csmain) https://github.com/bitcoin/bitcoin/pull/11913 13:04 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 13:05 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 13:06 -!- quantbot [~quantbot@38.101.106.141] has quit [Ping timeout: 248 seconds] 13:06 -!- bsm117532 [~mcelrath@104.129.204.130] has quit [Ping timeout: 264 seconds] 13:07 -!- quantbot_ [~quantbot@38.101.106.141] has quit [Ping timeout: 272 seconds] 13:07 -!- Randolf [~randolf@96.53.47.42] has quit [Ping timeout: 240 seconds] 13:08 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-qbitrvbiiynrxndf] has joined #bitcoin-core-dev 13:08 -!- jadee_ [~Jadee@50-248-173-75-static.hfc.comcastbusiness.net] has quit [Quit: This computer has gone to sleep] 13:09 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 13:09 -!- Randolf [~randolf@96.53.47.42] has joined #bitcoin-core-dev 13:11 * BlueMatt is curious if ^ helps gui freezes, at least for unlucky folks who get peers requesting blocks 13:12 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 13:12 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 265 seconds] 13:13 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 13:15 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has quit [Remote host closed the connection] 13:24 -!- jtimon [~quassel@164.31.134.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 13:29 -!- Randolf [~randolf@96.53.47.42] has quit [Ping timeout: 248 seconds] 13:35 -!- Guyver2 [AdiIRC@guyver2.xs4all.nl] has quit [Quit: Going offline, see ya! (www.adiirc.com)] 13:47 -!- chjj [~chjj@unaffiliated/chjj] has joined #bitcoin-core-dev 13:54 < jonasschnelli> BlueMatt: yeah.. not sure... 13:54 -!- chjj [~chjj@unaffiliated/chjj] has quit [Ping timeout: 265 seconds] 13:55 < jonasschnelli> You can test it with the GUI abort rescan PR from achow101 13:56 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 13:56 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 13:57 < BlueMatt> test what? 14:00 -!- andytoshi [~apoelstra@96.53.77.134] has joined #bitcoin-core-dev 14:01 -!- andytoshi [~apoelstra@96.53.77.134] has quit [Changing host] 14:01 -!- andytoshi [~apoelstra@unaffiliated/andytoshi] has joined #bitcoin-core-dev 14:11 -!- YellowSphere [~YellowSph@95-37-194-52.dynamic.mts-nn.ru] has joined #bitcoin-core-dev 14:17 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 14:18 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 14:26 -!- chjj [~chjj@unaffiliated/chjj] has joined #bitcoin-core-dev 14:33 -!- jb55 [~jb55@24.87.206.252] has quit [Ping timeout: 265 seconds] 14:35 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 14:35 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Remote host closed the connection] 14:35 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has joined #bitcoin-core-dev 14:36 -!- YellowSphere [~YellowSph@95-37-194-52.dynamic.mts-nn.ru] has quit [Quit: Leaving] 14:37 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 14:43 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has quit [Ping timeout: 248 seconds] 14:48 -!- Emcy_ [~Emcy@unaffiliated/emcy] has joined #bitcoin-core-dev 14:51 -!- Emcy [~Emcy@unaffiliated/emcy] has quit [Ping timeout: 264 seconds] 14:53 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has joined #bitcoin-core-dev 14:55 -!- Dizzle [~dizzle@108.171.182.16] has quit [Quit: Leaving...] 15:03 -!- jadee_ [~Jadee@50-248-173-75-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 15:12 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 15:17 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 15:18 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 15:21 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 15:22 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 15:26 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Remote host closed the connection] 15:27 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has joined #bitcoin-core-dev 15:27 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Read error: Connection reset by peer] 15:29 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 15:34 -!- Pavle [~pavle_@unaffiliated/pavle/x-4679000] has joined #bitcoin-core-dev 15:34 -!- chjj [~chjj@unaffiliated/chjj] has quit [Ping timeout: 255 seconds] 15:41 -!- Murch [~murch@96-82-80-28-static.hfc.comcastbusiness.net] has quit [Quit: Snoozing.] 15:44 -!- jb55 [~jb55@208.98.200.100] has joined #bitcoin-core-dev 15:46 -!- Randolf [~randolf@96.53.47.42] has joined #bitcoin-core-dev 15:49 -!- Pavle [~pavle_@unaffiliated/pavle/x-4679000] has quit [Quit: Leaving] 15:52 -!- Deacyde [~Deacyde@unaffiliated/deacyde] has joined #bitcoin-core-dev 15:55 -!- cysm [cysm@gateway/shell/elitebnc/x-ambjwiazqxrigisn] has quit [Ping timeout: 276 seconds] 15:55 -!- jadee_ [~Jadee@50-248-173-75-static.hfc.comcastbusiness.net] has quit [Quit: This computer has gone to sleep] 15:56 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 240 seconds] 16:01 -!- fanquake [~fanquake@unaffiliated/fanquake] has joined #bitcoin-core-dev 16:01 -!- Cogito_Ergo_Sum [~Myself@unaffiliated/cogito-ergo-sum/x-7399460] has quit [] 16:02 -!- cysm [cysm@gateway/shell/elitebnc/x-dkrsackpmnghifna] has joined #bitcoin-core-dev 16:08 -!- fanquake [~fanquake@unaffiliated/fanquake] has quit [Remote host closed the connection] 16:17 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 16:19 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 16:20 -!- tikkietek [~tikkietek@CPE9050caba2f63-CM9050caba2f60.cpe.net.cable.rogers.com] has joined #bitcoin-core-dev 16:27 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has quit [Remote host closed the connection] 16:28 -!- jb55 [~jb55@208.98.200.100] has quit [Ping timeout: 272 seconds] 16:34 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has joined #bitcoin-core-dev 16:35 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Remote host closed the connection] 16:35 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has joined #bitcoin-core-dev 16:37 -!- quantbot_ [~quantbot@ool-2f125d98.dyn.optonline.net] has joined #bitcoin-core-dev 16:37 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has quit [Read error: Connection reset by peer] 16:40 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Remote host closed the connection] 16:40 -!- quantbot_ [~quantbot@ool-2f125d98.dyn.optonline.net] has quit [Read error: Connection reset by peer] 16:40 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has joined #bitcoin-core-dev 16:40 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has joined #bitcoin-core-dev 16:46 -!- vicenteH [~user@35.233.15.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 16:47 -!- Emcy [~Emcy@unaffiliated/emcy] has joined #bitcoin-core-dev 16:48 -!- photonclock_ [~photonclo@47.37.153.193] has quit [Quit: photonclock_] 16:49 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Remote host closed the connection] 16:49 -!- Emcy_ [~Emcy@unaffiliated/emcy] has quit [Ping timeout: 256 seconds] 16:49 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has joined #bitcoin-core-dev 16:51 -!- StopAndDecrypt [~StopAndDe@unaffiliated/stopanddecrypt] has quit [Remote host closed the connection] 16:52 -!- StopAndDecrypt [~StopAndDe@unaffiliated/stopanddecrypt] has joined #bitcoin-core-dev 17:11 -!- chjj [~chjj@unaffiliated/chjj] has joined #bitcoin-core-dev 17:12 -!- fanquake [~fanquake@unaffiliated/fanquake] has joined #bitcoin-core-dev 17:12 -!- fanquake [~fanquake@unaffiliated/fanquake] has quit [Remote host closed the connection] 17:12 -!- fanquake [~fanquake@unaffiliated/fanquake] has joined #bitcoin-core-dev 17:13 -!- fanquake [~fanquake@unaffiliated/fanquake] has quit [Client Quit] 17:13 -!- fanquake [~fanquake@unaffiliated/fanquake] has joined #bitcoin-core-dev 17:14 -!- fanquake [~fanquake@unaffiliated/fanquake] has quit [Client Quit] 17:14 -!- fanquake [~fanquake@unaffiliated/fanquake] has joined #bitcoin-core-dev 17:16 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-qbitrvbiiynrxndf] has quit [Quit: Connection closed for inactivity] 17:26 -!- Chris_Stewart_5 [~chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has quit [Ping timeout: 256 seconds] 17:28 -!- Emcy_ [~Emcy@unaffiliated/emcy] has joined #bitcoin-core-dev 17:30 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 17:30 -!- Emcy [~Emcy@unaffiliated/emcy] has quit [Ping timeout: 256 seconds] 17:30 -!- yoctopede [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 17:36 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-yqmlqarngijzicum] has joined #bitcoin-core-dev 17:37 -!- Randolf [~randolf@96.53.47.42] has quit [Ping timeout: 272 seconds] 17:38 -!- jb55 [~jb55@70-36-49-138.dyn.novuscom.net] has joined #bitcoin-core-dev 17:44 -!- tikkietek [~tikkietek@CPE9050caba2f63-CM9050caba2f60.cpe.net.cable.rogers.com] has quit [Ping timeout: 256 seconds] 17:52 -!- eenoch_ is now known as eenoch 18:18 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has quit [Remote host closed the connection] 18:20 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Read error: Connection reset by peer] 18:21 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 18:22 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 18:23 < meshcollider> in wallet/db.cpp in VerifyEnvironment(), if opening the environment fails the first time then the database env is moved to a backup and opening is retried... can someone explain what situation moving it would help in? 18:23 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 18:23 < meshcollider> https://github.com/bitcoin/bitcoin/blob/master/src/wallet/db.cpp#L272-L290 18:27 -!- Chris_Stewart_5 [~chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has joined #bitcoin-core-dev 18:34 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 18:34 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 18:35 -!- jadee_ [~Jadee@50-248-173-75-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 18:38 < meshcollider> sipa: looks like you introduced it in #2558, could you give me a bit of info :) 18:38 < gribble> https://github.com/bitcoin/bitcoin/issues/2558 | Some database/-related recovery improvements by sipa · Pull Request #2558 · bitcoin/bitcoin · GitHub 18:39 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 264 seconds] 18:40 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has joined #bitcoin-core-dev 18:41 -!- Deacyde [~Deacyde@unaffiliated/deacyde] has quit [Read error: Connection reset by peer] 18:41 -!- unholymachine [~quassel@c-69-248-123-139.hsd1.nj.comcast.net] has quit [Remote host closed the connection] 18:44 -!- archaeal [62ce095e@gateway/web/freenode/ip.98.206.9.94] has quit [Ping timeout: 260 seconds] 18:46 -!- jadee_ [~Jadee@50-248-173-75-static.hfc.comcastbusiness.net] has quit [Quit: This computer has gone to sleep] 18:46 -!- jadee_ [~Jadee@50-248-173-75-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 18:56 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has quit [Remote host closed the connection] 18:57 -!- jtimon [~quassel@164.31.134.37.dynamic.jazztel.es] has quit [Ping timeout: 265 seconds] 18:59 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has joined #bitcoin-core-dev 19:01 -!- chjj [~chjj@unaffiliated/chjj] has quit [Ping timeout: 265 seconds] 19:02 -!- unholymachine [~quassel@2601:8c:c003:9f16:e11b:d659:fad0:f172] has joined #bitcoin-core-dev 19:03 -!- booyah [~bb@193.25.1.157] has quit [Read error: Connection reset by peer] 19:17 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 19:18 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 19:23 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 19:24 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 19:38 -!- Chris_Stewart_5 [~chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has quit [Ping timeout: 248 seconds] 19:49 -!- quantbot [~quantbot@ool-2f125d98.dyn.optonline.net] has quit [Remote host closed the connection] 20:01 -!- nickyb [~androirc@24.224.167.33] has joined #bitcoin-core-dev 20:02 -!- nickyb [~androirc@24.224.167.33] has quit [Client Quit] 20:03 -!- nickyb [~androirc@24-224-167-33.eastlink.ca] has joined #bitcoin-core-dev 20:05 -!- derrekito [~derrekito@cpe-65-29-218-61.cinci.res.rr.com] has quit [Remote host closed the connection] 20:06 -!- derrekito [~derrekito@cpe-65-29-218-61.cinci.res.rr.com] has joined #bitcoin-core-dev 20:18 -!- Randolf [~randolf@96.53.47.42] has joined #bitcoin-core-dev 20:19 -!- Chris_Stewart_5 [~chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has joined #bitcoin-core-dev 20:23 -!- freeark1 [6adf670e@gateway/web/freenode/ip.106.223.103.14] has joined #bitcoin-core-dev 20:25 < freeark1> Hi friends, I am new to blockchain, I am learning its internal. 20:25 * Randolf congratulates freeark1 20:26 < wumpus> we've all been there 20:27 < freeark1> Wecome Randolf 20:27 < freeark1> welcome 20:28 < Randolf> freeark1: Thanks. Which area(s) of Bitcoin interests you the most? 20:28 -!- Chris_Stewart_5 [~chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has quit [Ping timeout: 265 seconds] 20:28 < Randolf> ...from a core-development standpoint. 20:28 -!- jadee_ [~Jadee@50-248-173-75-static.hfc.comcastbusiness.net] has quit [Quit: This computer has gone to sleep] 20:30 < freeark1> I propose to create a system in which hard core developers get their earning directly rather outsourcing entities eat up major chunk. 20:33 * luke-jr doesn't comphrehend this proposal 20:33 < freeark1> If some people co-operate me I will bring blockchain theme everywhere. Hard-working people are exploited by smart people. And hard-working people are understood to be stupid. 20:34 < luke-jr> that's a societal problem, not a Bitcoin problem 20:35 < wumpus> this is very off topic here, this is a channel for development of the code of the bitcoin core software; I'd suggest to take it to #bitcoin. 20:35 < freeark1> ok 20:36 < freeark1> just one sentence. 20:36 < luke-jr> one sentence in #bitcoin, please ;) 20:37 < wumpus> feel free to listen in here to learn about the development, but this is not the place for wild project ideas but very specific ones 20:38 -!- freeark1 [6adf670e@gateway/web/freenode/ip.106.223.103.14] has quit [Quit: Page closed] 20:59 -!- nickyb [~androirc@24-224-167-33.eastlink.ca] has quit [Quit: AndroIRC - Android IRC Client ( http://www.androirc.com )] 21:09 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 21:14 < ryanofsky> meshcollider, it's only renaming the database log directory, not the actual database file. this might help if something is wrong with the transaction logs 21:15 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 21:21 -!- HarlequinFields [~Harlequin@c-69-137-88-131.hsd1.tn.comcast.net] has joined #bitcoin-core-dev 21:26 -!- HarlequinFields [~Harlequin@c-69-137-88-131.hsd1.tn.comcast.net] has quit [] 21:53 -!- Squidicc [~squid@pool-173-48-82-37.bstnma.fios.verizon.net] has quit [Read error: Connection reset by peer] 21:54 -!- puff [~stevenjow@static-108-32-33-25.pitbpa.fios.verizon.net] has quit [Remote host closed the connection] 21:54 -!- Squidicuz [~squid@pool-173-48-82-37.bstnma.fios.verizon.net] has joined #bitcoin-core-dev 21:55 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Read error: Connection reset by peer] 21:55 -!- cysm [cysm@gateway/shell/elitebnc/x-dkrsackpmnghifna] has quit [Ping timeout: 240 seconds] 21:55 -!- twistedline [~quassel@unaffiliated/twistedline] has quit [Quit: No Ping reply in 180 seconds.] 21:55 -!- puff [~stevenjow@static-108-32-33-25.pitbpa.fios.verizon.net] has joined #bitcoin-core-dev 21:56 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 21:56 -!- twistedline [~quassel@unaffiliated/twistedline] has joined #bitcoin-core-dev 21:56 -!- gmaxwell [gmaxwell@wikimedia/KatWalsh/x-0001] has quit [Ping timeout: 240 seconds] 21:57 -!- Squidicuz [~squid@pool-173-48-82-37.bstnma.fios.verizon.net] has quit [Read error: Connection reset by peer] 21:57 -!- cysm [cysm@gateway/shell/elitebnc/x-esfiwupfggsncvgq] has joined #bitcoin-core-dev 21:57 -!- gmaxwell [gmaxwell@mf4-xiph.osuosl.org] has joined #bitcoin-core-dev 21:57 -!- Squidicuz [~squid@pool-173-48-82-37.bstnma.fios.verizon.net] has joined #bitcoin-core-dev 21:58 -!- gmaxwell is now known as Guest37758 22:01 -!- alcipir [~user@201-29-204-111.user.veloxzone.com.br] has joined #bitcoin-core-dev 22:04 -!- alcipir [~user@201-29-204-111.user.veloxzone.com.br] has quit [Client Quit] 22:05 -!- alcipir [~user@201-29-204-111.user.veloxzone.com.br] has joined #bitcoin-core-dev 22:06 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-yqmlqarngijzicum] has quit [Quit: Connection closed for inactivity] 22:43 -!- alcipir [~user@201-29-204-111.user.veloxzone.com.br] has left #bitcoin-core-dev ["ERC (IRC client for Emacs 25.3.1)"] 22:48 < jonasschnelli> Oh,... there is a significant mem leak in rescan-chainstate! 22:49 < jonasschnelli> *reindex 22:49 < jonasschnelli> -bash: fork: Cannot allocate memory 22:49 < jonasschnelli> (can't even kill bitcoind) 22:50 < sipa> jonasschnelli: #11824? 22:50 < gribble> https://github.com/bitcoin/bitcoin/issues/11824 | Block ActivateBestChain to empty validationinterface queue by TheBlueMatt · Pull Request #11824 · bitcoin/bitcoin · GitHub 22:51 < jonasschnelli> happend on my with headless debian only running bitcoind (only installed bitcoind after debian 9 minimal), machine has 32 GB DDR4 RAM / AMD Ryzen 7 1700X 22:51 -!- arubi [~ese168@gateway/tor-sasl/ese168] has quit [Remote host closed the connection] 22:51 < jonasschnelli> sipa: Yes, let me test that... 22:51 -!- arubi [~ese168@gateway/tor-sasl/ese168] has joined #bitcoin-core-dev 23:05 -!- jb55 [~jb55@70-36-49-138.dyn.novuscom.net] has quit [Ping timeout: 256 seconds] 23:07 -!- Emcy [~Emcy@unaffiliated/emcy] has joined #bitcoin-core-dev 23:09 -!- Emcy_ [~Emcy@unaffiliated/emcy] has quit [Ping timeout: 264 seconds] 23:10 -!- jadee_ [~Jadee@50-248-173-75-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 23:13 -!- arubi [~ese168@gateway/tor-sasl/ese168] has quit [Remote host closed the connection] 23:14 -!- arubi [~ese168@gateway/tor-sasl/ese168] has joined #bitcoin-core-dev 23:23 -!- arubi [~ese168@gateway/tor-sasl/ese168] has quit [Ping timeout: 248 seconds] 23:23 -!- Guest37758 [gmaxwell@mf4-xiph.osuosl.org] has quit [Changing host] 23:23 -!- Guest37758 [gmaxwell@wikimedia/KatWalsh/x-0001] has joined #bitcoin-core-dev 23:24 -!- Guest37758 is now known as gmaxwell 23:24 -!- arubi [~ese168@gateway/tor-sasl/ese168] has joined #bitcoin-core-dev 23:32 -!- jadee_ [~Jadee@50-248-173-75-static.hfc.comcastbusiness.net] has quit [Ping timeout: 256 seconds] 23:32 -!- Jadee [~Jadee@50-248-173-75-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 23:43 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-qyulfkpbqdyijtew] has joined #bitcoin-core-dev 23:50 < bitcoin-git> [bitcoin] valentinewallace opened pull request #11915: Qt: Reflect correct dbcache value in options panel. (master...dbcache_gui_fix) https://github.com/bitcoin/bitcoin/pull/11915 23:53 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-wwhrmrxskmjfgwez] has joined #bitcoin-core-dev