--- Log opened Mon May 18 00:00:24 2020 00:08 < shesek> sipa, getmempoolentry is useful indeed, not sure why I haven't considered it (I do ideally need this for confirmed transactions too, but its not as important). thanks. 00:09 < shesek> but now I'm no longer sure that I should be providing raw feerate info for incoming transactions. what would be a sensible way to display fee information that takes ancestors/descendants into account to a user? ideally I'm thinking of a metric that says "if the miner clears transactions paying X sat/vB, this transaction should get included" 00:11 -!- tmoc [~textual@c-73-41-135-128.hsd1.ca.comcast.net] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 00:11 < shesek> taking ancestors into account seems easy enough - total fees divided by total vsize. but descendants are more tricky because you only need to take the ones that increase the combined feerate into account, right? 00:12 -!- tmoc [~textual@c-73-41-135-128.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 00:12 < shesek> I guess that means recursively iterating over `spentby` and figuring it out? 00:13 < sipa> shesek: if you want to make a guess for inclusion... run getblocktemplate 00:14 < sipa> perhaps we could expose a way that uses the same algorithm, but without the block weight/sigops restrictions, to have an idea how far down every transaction gets included 00:15 < shesek> I'm not trying to determine the feerate needed to get included in the next block, I'm trying to tell how low the feerate has to be in order for the transaction package to get included 00:17 < sipa> yeah, i know 00:17 < shesek> oh, sorry. I misunderstood you. how can I use getblocktemplate for that? 00:18 < sipa> the current algorithm that GBT uses (but this is an implementation detail and subject to change) basically includes transactions in feerate order 00:18 < sipa> (package feerate) 00:18 < sipa> so you can see how far down in the GBT result you are, to see how many kB worth of block spaces goes to other transactions before it 00:19 < sipa> of course, that is restricted to 1 block 00:19 < sipa> but it's not too hard to modify things to have a (non-GBT) way to computing the same thing for more than just 1 block 00:24 < shesek> so basically make larger and larger blocks until I see the transaction is able to get in? clever, but terribly inefficient :) 00:26 < shesek> I guess there's no --bitcoin-unlimited parameter that would easily let me make blocks that are larger than the weight limit, right? :p 00:27 < shesek> but it wouldn't be relevant for my purposes anyway, its aimed for personal use on a low-resource environment 00:27 < sipa> not larger and larger; just once for a huge size, and keep track of the order 00:28 < shesek> assuming a very large mempool and a transaction that's paying a high fee rate relative to others, it could be quite wasteful. like, maybe it would've been enough to create a 10kb block, but you're creating a 50mb one instead anyway 00:29 < shesek> so hmm, how about I simply use `ancestorfees/ancestorsize`? this would at least take low feerate ancestors into account, making the feerate less misleading. it still won't take cpfp into account, but still better than just the raw feerate 00:31 < shesek> thanks for all the help and your time btw, its very appreciated 00:35 -!- marcoagner [~user@bl13-226-166.dsl.telepac.pt] has joined #bitcoin-core-dev 00:47 -!- Pavlenex [~Thunderbi@141.98.103.251] has joined #bitcoin-core-dev 01:00 -!- kljasdfvv [~flack@p200300d46f079c0091717658a9673a0c.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 01:03 -!- marcoagner [~user@bl13-226-166.dsl.telepac.pt] has quit [Ping timeout: 256 seconds] 01:30 -!- promag [~promag@bl19-22-20.dsl.telepac.pt] has quit [Remote host closed the connection] 01:30 -!- promag [~promag@bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 01:35 -!- promag [~promag@bl19-22-20.dsl.telepac.pt] has quit [Remote host closed the connection] 01:36 -!- promag [~promag@bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 01:43 -!- manantial [~tecnecio_@unaffiliated/manantial] has joined #bitcoin-core-dev 01:50 -!- DeanWeen [~dean@gateway/tor-sasl/deanguss] has joined #bitcoin-core-dev 01:52 -!- Dean_Guss [~dean@gateway/tor-sasl/deanguss] has quit [Ping timeout: 240 seconds] 02:00 -!- daim2k5 [~daim2k5@185.204.1.185] has quit [] 02:07 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 02:07 < bitcoin-git> [bitcoin] kcalvinalvin opened pull request #19004: script: Replace const char* to std::string (master...replace-char-with-string) https://github.com/bitcoin/bitcoin/pull/19004 02:08 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 02:10 -!- timothy [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 02:12 -!- Guyver2 [Guyver@guyver2.xs4all.nl] has quit [Quit: Going offline, see ya! (www.adiirc.com)] 02:14 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 02:19 -!- tmoc [~textual@c-73-41-135-128.hsd1.ca.comcast.net] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 02:22 -!- nitind1 [~nitind@185.189.114.11] has joined #bitcoin-core-dev 02:26 -!- promag [~promag@bl19-22-20.dsl.telepac.pt] has quit [Remote host closed the connection] 02:26 -!- promag [~promag@bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 02:32 -!- belcher [~belcher@unaffiliated/belcher] has joined #bitcoin-core-dev 02:32 -!- Relis [~Relis@cpc96290-lewi18-2-0-cust910.2-4.cable.virginm.net] has joined #bitcoin-core-dev 02:35 < harding> I'm not sure knowing how deep a transaction is in the package-feerate sorted mempool is useful to normal users. E.g., knowing that a transaction is 3 block candidates deep in the mempool doesn't mean it's likely to be mined three blocks from now---during active periods, it's likely to be mined much later than that as additional relayed transactions arrive paying next-block and second-to-next-block feerates. If you want to give 02:35 < harding> useful information to the use, I think you want to (1) use getmempoolentry recursively to enumerate all of its descendents (this is limited to 25 by default), (2) find whichever one of those descendents has the highest package feerate (ancestorfees / ancestorsize), (3) loop over the estimatesmartfee estimates for the closest feerate match and report to the user something like "estimated to confirm within 30 blocks". 02:40 < aj> harding: i think getblocktemplate is useful for the case where you have P at 1kB + 1000sat, A spending P:0 at 200B, 6000sat, and B spending P:1 at 200B, 800 sat -- gbt will include P+A at 5sat/byte, then B at 4sat/byte, even though B's ancestor fee rate is only 1.5sat/byte 02:42 < harding> aj: which of those transactions is the one affecting the user's wallet? 02:43 < harding> The one the user wants to know whether it needs to be fee bumped? 02:43 < aj> harding: B 02:44 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has quit [Ping timeout: 260 seconds] 02:49 < harding> Hmm. That's a good point, but I think it means that both methods might suck for anything that's not in the next-block top of the mempool. If P+A gets mined without B, then B drops much further down in the mempool. 02:51 -!- Pavlenex [~Thunderbi@141.98.103.251] has quit [Quit: Pavlenex] 02:51 -!- afk11` [~afk11@gateway/tor-sasl/afk11] has quit [Remote host closed the connection] 02:52 < aj> harding: no, 4sat/byte is B's fee rate on its own, it won't move lower 02:52 -!- afk11` [~afk11@gateway/tor-sasl/afk11] has joined #bitcoin-core-dev 02:52 < harding> Yeah, sorry. 02:52 < aj> harding: otherwise, yeah 03:13 -!- Marie20Altenwert [~Marie20Al@static.57.1.216.95.clients.your-server.de] has joined #bitcoin-core-dev 03:20 -!- Marie20Altenwert [~Marie20Al@static.57.1.216.95.clients.your-server.de] has quit [Ping timeout: 256 seconds] 03:21 -!- Pavlenex [~Thunderbi@141.98.103.251] has joined #bitcoin-core-dev 03:22 -!- Pavlenex [~Thunderbi@141.98.103.251] has quit [Client Quit] 03:28 -!- promag_ [~promag@Bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 03:30 -!- Pavlenex [~Thunderbi@141.98.103.251] has joined #bitcoin-core-dev 03:30 -!- Pavlenex [~Thunderbi@141.98.103.251] has quit [Client Quit] 03:30 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 03:33 -!- promag_ [~promag@Bl19-22-20.dsl.telepac.pt] has quit [Ping timeout: 260 seconds] 03:35 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has quit [Ping timeout: 260 seconds] 03:41 -!- qubenix [~qubenix@66.172.11.228] has quit [Remote host closed the connection] 03:46 -!- qubenix [~qubenix@66.172.11.228] has joined #bitcoin-core-dev 03:53 < wumpus> PSA rc2 binaries up https://bitcoincore.org/bin/bitcoin-core-0.20.0/test.rc2/ 03:54 -!- morcos [~morcos@gateway/tor-sasl/morcos] has quit [Ping timeout: 240 seconds] 03:58 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 04:01 < wumpus> hebasto: yes, thanks for the reminder, didn't get around to it in the weekend 04:03 -!- berndj [~berndj@azna.co.za] has quit [Quit: ZNC - http://znc.in] 04:03 < hebasto> \o/ 04:05 -!- berndj [~berndj@azna.co.za] has joined #bitcoin-core-dev 04:07 < hebasto> downloaded rc2 source archive looks nice :) 04:11 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 04:16 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has quit [Ping timeout: 258 seconds] 04:18 -!- Dean_Guss [~dean@gateway/tor-sasl/deanguss] has joined #bitcoin-core-dev 04:19 -!- DeanWeen [~dean@gateway/tor-sasl/deanguss] has quit [Ping timeout: 240 seconds] 04:21 -!- theStack [~honeybadg@vps1648322.vs.webtropia-customer.com] has joined #bitcoin-core-dev 04:31 -!- Pavlenex [~Thunderbi@141.98.103.251] has joined #bitcoin-core-dev 04:41 -!- cryptapus [~cryptapus@jupiter.osmus.org] has joined #bitcoin-core-dev 04:41 -!- cryptapus [~cryptapus@jupiter.osmus.org] has quit [Changing host] 04:41 -!- cryptapus [~cryptapus@unaffiliated/cryptapus] has joined #bitcoin-core-dev 04:44 -!- Pavlenex [~Thunderbi@141.98.103.251] has quit [Quit: Pavlenex] 04:45 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Quit: = ""] 04:50 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 04:55 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has quit [Ping timeout: 272 seconds] 05:00 -!- nitind1 [~nitind@185.189.114.11] has quit [] 05:01 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 05:22 -!- justMaD [~justMaD@141.98.102.179] has joined #bitcoin-core-dev 05:25 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 05:25 < bitcoin-git> [bitcoin] kcalvinalvin opened pull request #19005: doc: Add documentation for 'checklevel' argument in 'verifychain' RPC… (master...add-documentation-for-verifychain) https://github.com/bitcoin/bitcoin/pull/19005 05:25 -!- Eliz [c16d5515@193.109.85.21] has joined #bitcoin-core-dev 05:25 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 05:25 -!- Eliz is now known as Guest30063 05:27 -!- rmoura [~rmoura@114.52.115.89.rev.vodafone.pt] has quit [Read error: Connection reset by peer] 05:39 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has joined #bitcoin-core-dev 05:40 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has quit [Client Quit] 05:40 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has joined #bitcoin-core-dev 05:45 -!- justMaD [~justMaD@141.98.102.179] has quit [Ping timeout: 256 seconds] 05:48 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has joined #bitcoin-core-dev 06:04 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has quit [Ping timeout: 246 seconds] 06:12 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 06:12 < bitcoin-git> [bitcoin] MarcoFalke opened pull request #19006: http: Avoid crash when g_thread_http was never started (master...2005-httpNoCrash) https://github.com/bitcoin/bitcoin/pull/19006 06:12 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 06:13 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 06:14 -!- bowfin [~bowfin@nc-71-48-203-7.dhcp.embarqhsd.net] has joined #bitcoin-core-dev 06:16 -!- bowfin [~bowfin@nc-71-48-203-7.dhcp.embarqhsd.net] has left #bitcoin-core-dev [] 06:17 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has quit [Ping timeout: 265 seconds] 06:18 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 06:20 -!- dgenr8 [~dgenr8@unaffiliated/dgenr8] has joined #bitcoin-core-dev 06:23 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has quit [Ping timeout: 256 seconds] 06:40 -!- filchef [~filchef@212.104.97.177] has joined #bitcoin-core-dev 06:54 -!- timothy [~tredaelli@redhat/timothy] has quit [Ping timeout: 265 seconds] 06:59 < jonasschnelli> ugh. #12783 introduced a nasty mac only GUI blocking issue 06:59 < gribble> https://github.com/bitcoin/bitcoin/issues/12783 | macOS: disable AppNap during sync by krab · Pull Request #12783 · bitcoin/bitcoin · GitHub 07:01 -!- AimHere1 [~AimHere@184.75.221.43] has joined #bitcoin-core-dev 07:14 -!- Pavlenex [~Thunderbi@141.98.103.251] has joined #bitcoin-core-dev 07:19 -!- Pavlenex [~Thunderbi@141.98.103.251] has quit [Quit: Pavlenex] 07:34 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 07:34 < bitcoin-git> [bitcoin] jonasschnelli opened pull request #19007: relax GUI locks: avoid unnecesarry calls to ::ChainstateActive().IsInitialBlockDownload (master...2020/05/fix_macguilock) https://github.com/bitcoin/bitcoin/pull/19007 07:34 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 07:35 -!- emilengler [~emilengle@stratum0/entity/emilengler] has joined #bitcoin-core-dev 07:38 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 07:43 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has quit [Ping timeout: 265 seconds] 07:43 -!- mdunnio [~mdunnio@208.59.170.5] has joined #bitcoin-core-dev 07:44 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 07:45 -!- Relis [~Relis@cpc96290-lewi18-2-0-cust910.2-4.cable.virginm.net] has quit [Quit: This computer has gone to sleep] 07:49 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has quit [Ping timeout: 246 seconds] 07:57 -!- Relis [~Relis@cpc96290-lewi18-2-0-cust910.2-4.cable.virginm.net] has joined #bitcoin-core-dev 08:00 -!- AimHere1 [~AimHere@184.75.221.43] has quit [] 08:04 -!- Guyver2 [Guyver@guyver2.xs4all.nl] has joined #bitcoin-core-dev 08:04 -!- Pavlenex [~Thunderbi@141.98.103.251] has joined #bitcoin-core-dev 08:05 -!- promag [~promag@bl19-22-20.dsl.telepac.pt] has quit [Remote host closed the connection] 08:05 -!- promag [~promag@bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 08:06 -!- promag [~promag@bl19-22-20.dsl.telepac.pt] has quit [Remote host closed the connection] 08:06 -!- promag [~promag@Bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 08:14 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 08:14 -!- promag [~promag@Bl19-22-20.dsl.telepac.pt] has quit [Read error: Connection reset by peer] 08:14 -!- promag [~promag@Bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 08:16 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has quit [Quit: leaving] 08:18 -!- promag_ [~promag@bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 08:18 -!- promag [~promag@Bl19-22-20.dsl.telepac.pt] has quit [Read error: Connection reset by peer] 08:19 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has quit [Ping timeout: 265 seconds] 08:20 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 08:21 -!- sirkitree [~sirkitree@195.206.169.238] has joined #bitcoin-core-dev 08:25 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has quit [Ping timeout: 258 seconds] 08:26 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has joined #bitcoin-core-dev 08:27 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has quit [Client Quit] 08:27 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has joined #bitcoin-core-dev 08:27 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has quit [Client Quit] 08:28 -!- Pavlenex [~Thunderbi@141.98.103.251] has quit [Quit: Pavlenex] 08:28 -!- promag_ [~promag@bl19-22-20.dsl.telepac.pt] has quit [Ping timeout: 246 seconds] 08:30 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has joined #bitcoin-core-dev 08:30 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 244 seconds] 08:35 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 08:35 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has quit [Quit: leaving] 08:35 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has joined #bitcoin-core-dev 08:36 -!- Pavlenex [~Thunderbi@141.98.103.251] has joined #bitcoin-core-dev 08:36 -!- promag [~promag@Bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 08:39 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has quit [Ping timeout: 240 seconds] 08:40 -!- promag [~promag@Bl19-22-20.dsl.telepac.pt] has quit [Read error: Connection reset by peer] 08:40 -!- promag [~promag@Bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 08:44 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has quit [Quit: leaving] 08:44 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has joined #bitcoin-core-dev 08:47 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 08:51 -!- promag [~promag@Bl19-22-20.dsl.telepac.pt] has quit [Remote host closed the connection] 08:51 -!- promag [~promag@bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 08:59 -!- brianhoffman [~brianhoff@pool-96-240-138-69.washdc.fios.verizon.net] has quit [Quit: brianhoffman] 09:00 -!- proofofkeags [~proofofke@174-29-9-247.hlrn.qwest.net] has joined #bitcoin-core-dev 09:02 -!- brianhoffman [~brianhoff@pool-96-240-138-69.washdc.fios.verizon.net] has joined #bitcoin-core-dev 09:02 -!- proofofkeags [~proofofke@174-29-9-247.hlrn.qwest.net] has quit [Remote host closed the connection] 09:03 -!- proofofkeags [~proofofke@174-29-9-247.hlrn.qwest.net] has joined #bitcoin-core-dev 09:05 -!- promag_ [~promag@bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 09:08 -!- proofofkeags [~proofofke@174-29-9-247.hlrn.qwest.net] has quit [Ping timeout: 256 seconds] 09:18 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 09:20 -!- vasild_ [~vd@gateway/tor-sasl/vasild] has joined #bitcoin-core-dev 09:23 -!- vasild [~vd@gateway/tor-sasl/vasild] has quit [Ping timeout: 240 seconds] 09:23 -!- vasild_ is now known as vasild 09:23 -!- Pavlenex [~Thunderbi@141.98.103.251] has quit [Quit: Pavlenex] 09:23 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has quit [Ping timeout: 264 seconds] 09:26 -!- promag_ [~promag@bl19-22-20.dsl.telepac.pt] has quit [Remote host closed the connection] 09:28 -!- proofofkeags [~proofofke@c-65-50-169-164.hs.gigamonster.net] has joined #bitcoin-core-dev 09:33 -!- proofofkeags [~proofofke@c-65-50-169-164.hs.gigamonster.net] has quit [Ping timeout: 260 seconds] 09:40 -!- real_or_random [~real_or_r@2a02:c207:3002:7468::1] has quit [Quit: ZNC 1.7.5 - https://znc.in] 09:41 -!- real_or_random [~real_or_r@173.249.7.254] has joined #bitcoin-core-dev 09:42 -!- Guest30063 [c16d5515@193.109.85.21] has quit [Remote host closed the connection] 09:59 -!- proofofkeags [~proofofke@c-65-50-169-164.hs.gigamonster.net] has joined #bitcoin-core-dev 10:04 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has quit [Ping timeout: 256 seconds] 10:19 -!- Pavlenex [~Thunderbi@141.98.103.251] has joined #bitcoin-core-dev 10:30 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 10:30 < bitcoin-git> [bitcoin] MarcoFalke opened pull request #19008: ci: tsan on focal (master...2005-ciTsanFocal) https://github.com/bitcoin/bitcoin/pull/19008 10:31 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 10:39 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 10:39 < bitcoin-git> [bitcoin] h2o10 opened pull request #19009: Print "verifychain" progress every 1 step if user verifies whole blockchain. (master...patch-3) https://github.com/bitcoin/bitcoin/pull/19009 10:39 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 10:53 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has quit [Ping timeout: 265 seconds] 11:00 -!- sirkitree [~sirkitree@195.206.169.238] has quit [] 11:01 -!- nickler is now known as nix-bitcoin 11:01 -!- nix-bitcoin is now known as nickler 11:06 -!- Pavlenex [~Thunderbi@141.98.103.251] has quit [Quit: Pavlenex] 11:10 -!- Pavlenex [~Thunderbi@141.98.103.251] has joined #bitcoin-core-dev 11:13 -!- marcoagner [~user@2001:8a0:6a5f:a900:6d3e:1158:b50:97b6] has joined #bitcoin-core-dev 11:17 -!- ironhelix [~d@193.56.117.143] has joined #bitcoin-core-dev 11:22 -!- MasterGruntR75 [~MasterGru@178.238.229.54] has joined #bitcoin-core-dev 11:29 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has joined #bitcoin-core-dev 11:41 -!- proofofkeags [~proofofke@c-65-50-169-164.hs.gigamonster.net] has quit [Remote host closed the connection] 11:41 -!- proofofkeags [~proofofke@c-65-50-169-164.hs.gigamonster.net] has joined #bitcoin-core-dev 11:46 -!- go121212 [~go1111111@104.156.98.86] has joined #bitcoin-core-dev 11:46 -!- proofofkeags [~proofofke@c-65-50-169-164.hs.gigamonster.net] has quit [Ping timeout: 265 seconds] 11:49 -!- go11111111111 [go1111111@gateway/vpn/privateinternetaccess/go1111111] has quit [Ping timeout: 260 seconds] 11:52 -!- DeanWeen [~dean@gateway/tor-sasl/deanguss] has joined #bitcoin-core-dev 11:52 -!- Dean_Guss [~dean@gateway/tor-sasl/deanguss] has quit [Remote host closed the connection] 11:53 -!- owowo [~ovovo@unaffiliated/ovovo] has quit [Ping timeout: 272 seconds] 11:57 -!- owowo [~ovovo@unaffiliated/ovovo] has joined #bitcoin-core-dev 11:58 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 11:58 < bitcoin-git> [bitcoin] jnewbery opened pull request #19010: net processing: Add support for getcfheaders (master...2020-05-cfheaders) https://github.com/bitcoin/bitcoin/pull/19010 11:58 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 12:07 -!- proofofkeags [~proofofke@c-65-50-169-164.hs.gigamonster.net] has joined #bitcoin-core-dev 12:10 -!- promag_ [~promag@bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 12:12 -!- proofofkeags [~proofofke@c-65-50-169-164.hs.gigamonster.net] has quit [Ping timeout: 256 seconds] 12:13 -!- promag_ [~promag@bl19-22-20.dsl.telepac.pt] has quit [Remote host closed the connection] 12:14 -!- Talkless [~Talkless@hst-227-49.splius.lt] has quit [Quit: Konversation terminated!] 12:19 -!- promag_ [~promag@bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 12:21 -!- emilengler [~emilengle@stratum0/entity/emilengler] has quit [Remote host closed the connection] 12:29 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has joined #bitcoin-core-dev 12:30 -!- MrSquanchee [uid421192@gateway/web/irccloud.com/x-ujnabllfvviboomr] has joined #bitcoin-core-dev 12:30 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has quit [Ping timeout: 246 seconds] 12:33 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has quit [Ping timeout: 260 seconds] 12:40 -!- dfmb_ [~dfmb_@unaffiliated/dfmb/x-4009105] has quit [Quit: Leaving] 12:45 -!- kristapsk_ [~KK@gateway/tor-sasl/kristapsk] has quit [Remote host closed the connection] 12:47 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has joined #bitcoin-core-dev 12:47 < pierre_rochard> For those interested, https://bitcoinacks.com is back up, feel free to send pull requests / feature ideas 12:47 -!- promag_ [~promag@bl19-22-20.dsl.telepac.pt] has quit [Remote host closed the connection] 12:52 -!- MrSquanchee [uid421192@gateway/web/irccloud.com/x-ujnabllfvviboomr] has left #bitcoin-core-dev [] 12:52 < michaelfolkson> Awesome. I'm assuming from the above you have the time to maintain it pierre_rochard going forward? 12:53 < pierre_rochard> Yes for the foreseeable future, if that changes I'll notify here and hand it over if there are users. 12:54 < michaelfolkson> Cool, that's great. Thanks 13:03 < harding> pierre_rochard: thanks! 13:05 -!- MasterGruntR75 [~MasterGru@178.238.229.54] has quit [Ping timeout: 258 seconds] 13:14 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 13:14 < bitcoin-git> [bitcoin] jonasschnelli opened pull request #19011: Reduce cs_main lock accumulation during GUI startup (master...2020/05/guilocks) https://github.com/bitcoin/bitcoin/pull/19011 13:14 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 13:14 < tryphe> is there any way to resolve these review comments? i guess i've selected the wrong review type but it looks ugly to see all of my comments expanded: https://github.com/bitcoin/bitcoin/pull/19004#pullrequestreview-413807305 13:15 < tryphe> or maybe i can't and will have to select the right one in the future 13:16 -!- proofofkeags [~proofofke@c-65-50-169-164.hs.gigamonster.net] has joined #bitcoin-core-dev 13:18 < jonasschnelli> tryphe: don't you have a "Resolve conversation" button? 13:18 < sipa> tryphe: i marked them resolved for you 13:19 < jonasschnelli> (or is that an admin thing?) 13:19 < tryphe> sipa, thanks 13:19 < tryphe> jonasschnelli, i had selected the first type of review, something like "general comments" 13:19 < sipa> tryphe: not sure what you mean by review type 13:19 < tryphe> i guess the resolve button is only available for the other 2 choices 13:20 -!- promag [~promag@bl19-22-20.dsl.telepac.pt] has quit [Remote host closed the connection] 13:21 -!- promag [~promag@bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 13:21 < tryphe> sipa, when you press "start a review" there's multiple choices, and i wasn't able to unexpand my comments from showing up in the default thread without you doing it 13:22 < tryphe> will use the other ones in the future 13:25 < tryphe> i guess maybe only the author and admins can resolve the conversation? 13:25 < tryphe> author/PR author 13:26 < sipa> huh, never seen that 13:27 < tryphe> yeah i had figured i could resolve it, but honestly i don't do much review and didn't know which review type to select 13:33 -!- aqu4 [~aqu4@184.75.221.43] has joined #bitcoin-core-dev 13:34 -!- kristapsk [~KK@gateway/tor-sasl/kristapsk] has joined #bitcoin-core-dev 13:37 -!- promag [~promag@bl19-22-20.dsl.telepac.pt] has quit [Remote host closed the connection] 13:52 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 13:52 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has quit [Ping timeout: 256 seconds] 13:53 -!- filchef [~filchef@212.104.97.177] has quit [Read error: Connection reset by peer] 14:00 -!- aqu4 [~aqu4@184.75.221.43] has quit [] 14:04 -!- kristapsk [~KK@gateway/tor-sasl/kristapsk] has quit [Remote host closed the connection] 14:06 -!- Guyver2 [Guyver@guyver2.xs4all.nl] has quit [Quit: Going offline, see ya! (www.adiirc.com)] 14:13 -!- kristapsk [~KK@gateway/tor-sasl/kristapsk] has joined #bitcoin-core-dev 14:21 -!- r2wj [~r2wj@185.204.1.185] has joined #bitcoin-core-dev 14:26 -!- mrostecki [~mrostecki@gateway/tor-sasl/mrostecki] has quit [Ping timeout: 240 seconds] 14:32 -!- Pavlenex [~Thunderbi@141.98.103.251] has quit [Ping timeout: 272 seconds] 14:34 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 256 seconds] 14:36 -!- promag [~promag@bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 14:38 -!- DeanWeen [~dean@gateway/tor-sasl/deanguss] has quit [Ping timeout: 240 seconds] 14:38 -!- Manats [afb020f5@175.176.32.245] has joined #bitcoin-core-dev 14:40 -!- Manats [afb020f5@175.176.32.245] has quit [Remote host closed the connection] 14:40 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 14:42 -!- mrostecki [~mrostecki@gateway/tor-sasl/mrostecki] has joined #bitcoin-core-dev 14:44 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 264 seconds] 14:47 -!- shesek [~shesek@185.3.145.28] has joined #bitcoin-core-dev 14:47 -!- shesek [~shesek@185.3.145.28] has quit [Changing host] 14:47 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 14:47 -!- manantial [~tecnecio_@unaffiliated/manantial] has quit [Ping timeout: 272 seconds] 14:54 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 264 seconds] 14:55 -!- shesek [~shesek@185.3.145.28] has joined #bitcoin-core-dev 14:55 -!- shesek [~shesek@185.3.145.28] has quit [Changing host] 14:55 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 14:56 -!- mdunnio [~mdunnio@208.59.170.5] has quit [Remote host closed the connection] 14:59 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 265 seconds] 15:00 -!- proofofkeags [~proofofke@c-65-50-169-164.hs.gigamonster.net] has quit [Remote host closed the connection] 15:01 -!- proofofkeags [~proofofke@c-65-50-169-164.hs.gigamonster.net] has joined #bitcoin-core-dev 15:04 -!- shesek [~shesek@185.3.145.28] has joined #bitcoin-core-dev 15:04 -!- shesek [~shesek@185.3.145.28] has quit [Changing host] 15:04 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 15:05 -!- proofofkeags [~proofofke@c-65-50-169-164.hs.gigamonster.net] has quit [Ping timeout: 258 seconds] 15:11 -!- promag [~promag@bl19-22-20.dsl.telepac.pt] has quit [Remote host closed the connection] 15:18 -!- roconnor [~roconnor@host-45-78-197-156.dyn.295.ca] has quit [Ping timeout: 272 seconds] 15:21 -!- marcoagner [~user@2001:8a0:6a5f:a900:6d3e:1158:b50:97b6] has quit [Ping timeout: 240 seconds] 15:22 -!- roconnor [~roconnor@host-45-78-197-156.dyn.295.ca] has joined #bitcoin-core-dev 15:28 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has joined #bitcoin-core-dev 15:28 -!- promag [~promag@bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 15:34 -!- pinheadmz [~pinheadmz@pool-100-33-69-78.nycmny.fios.verizon.net] has quit [Remote host closed the connection] 15:34 -!- pinheadmz [~pinheadmz@pool-100-33-69-78.nycmny.fios.verizon.net] has joined #bitcoin-core-dev 15:35 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has quit [Ping timeout: 256 seconds] 16:00 -!- mrostecki [~mrostecki@gateway/tor-sasl/mrostecki] has quit [Remote host closed the connection] 16:10 -!- mrostecki [~mrostecki@gateway/tor-sasl/mrostecki] has joined #bitcoin-core-dev 16:26 -!- vasild [~vd@gateway/tor-sasl/vasild] has quit [Ping timeout: 240 seconds] 16:26 -!- vasild [~vd@gateway/tor-sasl/vasild] has joined #bitcoin-core-dev 16:31 -!- promag [~promag@bl19-22-20.dsl.telepac.pt] has quit [Remote host closed the connection] 16:37 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 240 seconds] 16:52 -!- niklas54 [bc61d8e1@dslb-188-097-216-225.188.097.pools.vodafone-ip.de] has joined #bitcoin-core-dev 16:54 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 17:00 -!- r2wj [~r2wj@185.204.1.185] has quit [] 17:03 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 17:03 < bitcoin-git> [bitcoin] MarcoFalke pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/dc5333d31f28...362f9c60a54e 17:03 < bitcoin-git> bitcoin/master 784ae09 codeShark149: test: Add capability to disable RPC timeout in functional tests. 17:03 < bitcoin-git> bitcoin/master 38c3dd9 codeShark149: docs: Add notes on how to diasble rpc timeout in functional tests while at... 17:03 < bitcoin-git> bitcoin/master 362f9c6 MarcoFalke: Merge #18986: tests: Add capability to disable RPC timeout in functional t... 17:03 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 17:03 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 17:03 < bitcoin-git> [bitcoin] MarcoFalke merged pull request #18986: tests: Add capability to disable RPC timeout in functional tests (master...notimeout-flag) https://github.com/bitcoin/bitcoin/pull/18986 17:03 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 17:17 < hebasto> jonasschnelli: hi, mind reviewing #18152 ? 17:17 < gribble> https://github.com/bitcoin/bitcoin/issues/18152 | qt: Use SynchronizationState enum for signals to GUI by hebasto · Pull Request #18152 · bitcoin/bitcoin · GitHub 17:26 -!- proofofkeags [~proofofke@174-29-9-247.hlrn.qwest.net] has joined #bitcoin-core-dev 17:27 -!- hex17or [~hex17or@HSI-KBW-46-223-238-38.hsi.kabel-badenwuerttemberg.de] has quit [Ping timeout: 260 seconds] 17:30 -!- mol [~mol@unaffiliated/molly] has quit [Ping timeout: 256 seconds] 17:43 -!- hex17or [~hex17or@HSI-KBW-46-223-238-38.hsi.kabel-badenwuerttemberg.de] has joined #bitcoin-core-dev 17:56 -!- Maijin [~Maijin@141.98.102.227] has joined #bitcoin-core-dev 17:58 -!- mol [~mol@unaffiliated/molly] has joined #bitcoin-core-dev 18:10 -!- DeanWeen [~dean@gateway/tor-sasl/deanguss] has joined #bitcoin-core-dev 18:28 -!- DeanWeen [~dean@gateway/tor-sasl/deanguss] has quit [Remote host closed the connection] 18:29 -!- Dean_Guss [~dean@gateway/tor-sasl/deanguss] has joined #bitcoin-core-dev 18:33 -!- qubenix [~qubenix@66.172.11.228] has quit [Quit: quit] 18:34 -!- qubenix [~qubenix@66.172.11.228] has joined #bitcoin-core-dev 18:44 -!- Highway61 [~Thunderbi@104.129.24.50] has quit [Ping timeout: 256 seconds] 18:49 -!- proofofkeags [~proofofke@174-29-9-247.hlrn.qwest.net] has quit [Remote host closed the connection] 18:49 -!- proofofkeags [~proofofke@174-29-9-247.hlrn.qwest.net] has joined #bitcoin-core-dev 18:51 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 256 seconds] 18:56 -!- proofofk_ [~proofofke@174-29-9-247.hlrn.qwest.net] has joined #bitcoin-core-dev 18:57 -!- proofofkeags [~proofofke@174-29-9-247.hlrn.qwest.net] has quit [Ping timeout: 258 seconds] 18:58 -!- proofofk_ [~proofofke@174-29-9-247.hlrn.qwest.net] has quit [Remote host closed the connection] 18:58 -!- proofofkeags [~proofofke@174-29-9-247.hlrn.qwest.net] has joined #bitcoin-core-dev 19:02 -!- a5m0 [~a5m0@unaffiliated/a5m0] has joined #bitcoin-core-dev 19:18 -!- niklas54 [bc61d8e1@dslb-188-097-216-225.188.097.pools.vodafone-ip.de] has quit [Remote host closed the connection] 19:23 -!- Emcy [~Emcy@unaffiliated/emcy] has joined #bitcoin-core-dev 19:30 -!- proofofkeags [~proofofke@174-29-9-247.hlrn.qwest.net] has quit [Remote host closed the connection] 19:30 -!- proofofkeags [~proofofke@174-29-9-247.hlrn.qwest.net] has joined #bitcoin-core-dev 19:35 -!- proofofkeags [~proofofke@174-29-9-247.hlrn.qwest.net] has quit [Ping timeout: 260 seconds] 19:39 -!- Relis [~Relis@cpc96290-lewi18-2-0-cust910.2-4.cable.virginm.net] has quit [Quit: This computer has gone to sleep] 19:39 -!- proofofkeags [~proofofke@174-29-9-247.hlrn.qwest.net] has joined #bitcoin-core-dev 19:43 -!- proofofkeags [~proofofke@174-29-9-247.hlrn.qwest.net] has quit [Remote host closed the connection] 19:43 -!- proofofkeags [~proofofke@174-29-9-247.hlrn.qwest.net] has joined #bitcoin-core-dev 19:46 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has quit [Remote host closed the connection] 19:47 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 19:47 -!- Relis [~Relis@cpc96290-lewi18-2-0-cust910.2-4.cable.virginm.net] has joined #bitcoin-core-dev 19:48 -!- proofofkeags [~proofofke@174-29-9-247.hlrn.qwest.net] has quit [Ping timeout: 246 seconds] 19:49 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has quit [Remote host closed the connection] 19:49 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 20:00 -!- Maijin [~Maijin@141.98.102.227] has quit [] 20:13 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has quit [Remote host closed the connection] 20:16 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 20:20 -!- surja795 [~surja795@c-24-61-194-104.hsd1.ma.comcast.net] has quit [Ping timeout: 246 seconds] 20:20 -!- Dean_Guss [~dean@gateway/tor-sasl/deanguss] has quit [Ping timeout: 240 seconds] 20:21 -!- EricFisher [~EricFishe@37.120.203.188] has joined #bitcoin-core-dev 20:28 < tryphe> is there a reason configure.ac doesn't add "noexecstack" to LDFLAGS? it seems like we're using lots of other hardening options but not that one. is it not necessary? 20:31 < fanquake> tryphe: It's on by default if you're compiling using Ubuntu, which we are for gitian builds. We do have to add it explicitly when building for RISCV though: https://github.com/bitcoin/bitcoin/blob/master/contrib/gitian-descriptors/gitian-linux.yml#L160 20:32 < fanquake> We also test our release binaries to ensure that the stacks are not marked executable 20:32 < tryphe> fanquake, oh, that makes sense, i did see that in the gitian script for riscv while searching but couldn't figure out why not for everything else :p 20:37 < luke-jr> tryphe: because it's not configure's job to decide your build flags 20:38 < luke-jr> #14066 does set it explicitly for all platforms 20:38 < gribble> https://github.com/bitcoin/bitcoin/issues/14066 | gitian-linux: Build binaries for 64-bit POWER by luke-jr · Pull Request #14066 · bitcoin/bitcoin · GitHub 20:38 < luke-jr> in gitian 20:39 < tryphe> luke-jr, what's the point of ./configure --with-hardening then? it enabled relro, now, pie, but not noexecstack? 20:39 < luke-jr> maybe --with-hardening should do that too 20:39 < tryphe> on Debian 9, it's not, and i'm getting a different hash when i add noexecstack 20:39 < tryphe> different bitcoind hash 20:40 < tryphe> my thought was that everyone who went with --with-hardening assumed it was enabled, or maybe didn't know about it enough to look for it manually 20:41 -!- Dean_Guss [~dean@gateway/tor-sasl/deanguss] has joined #bitcoin-core-dev 20:44 < tryphe> shall i open a PR? 20:46 < fanquake> tryphe: is the binary actually marked as requiring an executable stack 20:54 < tryphe> fanquake, good point, i guess not 20:55 < tryphe> for both bins: src/bitcoind: ELF 64-bit LSB shared object, x86-64, version 1 (GNU/Linux), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linux 2.6.32, BuildID[sha1]=ec42b47cbaf82198ba6902e12568bac6f09ccde1, not stripped 20:57 < tryphe> but i wonder why the bin hash is different, secondary differences? 21:00 < fanquake> You can something like diffoscope on the two binaries and check what the differences are 21:01 < tryphe> i guess if pie is on, it's still a shared object, so that could be why it's not on by default 21:01 < tryphe> it's=noexecstack 21:04 < tryphe> because i don't think you could have execstack with -pie 21:20 -!- vasild_ [~vd@gateway/tor-sasl/vasild] has joined #bitcoin-core-dev 21:23 -!- vasild [~vd@gateway/tor-sasl/vasild] has quit [Ping timeout: 240 seconds] 21:23 -!- vasild_ is now known as vasild 21:39 < tryphe> building diffoscope now, it's just taking a bit :) will try to post it here when done if possible 22:12 -!- Talkless [~Talkless@hst-227-49.splius.lt] has joined #bitcoin-core-dev 22:21 -!- Relis [~Relis@cpc96290-lewi18-2-0-cust910.2-4.cable.virginm.net] has quit [Quit: This computer has gone to sleep] 22:24 -!- Relis [~Relis@cpc96290-lewi18-2-0-cust910.2-4.cable.virginm.net] has joined #bitcoin-core-dev 22:26 -!- Relis [~Relis@cpc96290-lewi18-2-0-cust910.2-4.cable.virginm.net] has quit [Client Quit] 22:38 -!- manantial [~tecnecio_@unaffiliated/manantial] has joined #bitcoin-core-dev 22:45 -!- manantial [~tecnecio_@unaffiliated/manantial] has quit [Quit: Leaving] 23:00 -!- EricFisher [~EricFishe@37.120.203.188] has quit [] 23:16 -!- Guyver2 [Guyver@guyver2.xs4all.nl] has joined #bitcoin-core-dev 23:19 -!- kristapsk [~KK@gateway/tor-sasl/kristapsk] has quit [Remote host closed the connection] 23:21 -!- milky1 [~milky@37.120.203.188] has joined #bitcoin-core-dev 23:31 < jonasschnelli> hebasto: oh. 18152 looks great. I haven't looked at it previously! Will review. 23:36 < hebasto> jonasschnelli: thanks! --- Log closed Tue May 19 00:00:25 2020