--- Log opened Thu Mar 28 00:00:10 2024 00:40 -!- AaronvanW [~AaronvanW@user/AaronvanW] has joined #bitcoin-core-dev 01:18 -!- abubakarsadiq [uid602234@id-602234.hampstead.irccloud.com] has joined #bitcoin-core-dev 01:26 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 01:28 -!- jon_atack [~jonatack@user/jonatack] has quit [Ping timeout: 260 seconds] 01:33 -!- Guyver2 [~Guyver@77-174-98-73.fixed.kpn.net] has joined #bitcoin-core-dev 02:10 -!- aleggg [~aleggg@177.204.243.50.dynamic.adsl.gvt.net.br] has quit [Remote host closed the connection] 02:13 -!- aleggg [~aleggg@177.204.243.50.dynamic.adsl.gvt.net.br] has joined #bitcoin-core-dev 02:15 -!- vasild [~vd@user/vasild] has quit [Remote host closed the connection] 02:18 -!- instagibbs [~instagibb@pool-100-15-116-202.washdc.fios.verizon.net] has quit [Ping timeout: 255 seconds] 02:18 -!- instagibbs [~instagibb@pool-100-15-116-202.washdc.fios.verizon.net] has joined #bitcoin-core-dev 02:20 -!- vasild [~vd@user/vasild] has joined #bitcoin-core-dev 02:28 -!- AaronvanW [~AaronvanW@user/AaronvanW] has quit [Quit: Leaving...] 02:44 -!- lbia [~lbia@user/lbia] has quit [Quit: lbia] 03:13 -!- asher [~ash3y@216.98.225.36] has joined #bitcoin-core-dev 03:15 -!- aleggg [~aleggg@177.204.243.50.dynamic.adsl.gvt.net.br] has quit [Remote host closed the connection] 03:35 -!- asher [~ash3y@216.98.225.36] has quit [Ping timeout: 255 seconds] 03:55 -!- lbia [~lbia@user/lbia] has joined #bitcoin-core-dev 04:27 -!- BrandonOdiwuor [~BrandonOd@41.80.113.148] has joined #bitcoin-core-dev 04:35 -!- the_mariner [~Thunderbi@177.37.233.227] has joined #bitcoin-core-dev 04:43 < bitcoin-git> [bitcoin] hebasto opened pull request #29756: doc: Override `-g` properly to skip debugging information (master...240328-debug) https://github.com/bitcoin/bitcoin/pull/29756 04:43 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Quit: = ""] 04:44 < bitcoin-git> [bitcoin] glozow pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/c8e397811471...d1e9a0212663 04:44 < bitcoin-git> bitcoin/master b9f04be kevkevin: mempool: Log added for dumping mempool transactions to disk 04:44 < bitcoin-git> bitcoin/master 4d5b557 kevkevin: log: renamed disk to file so wording was more accurate 04:44 < bitcoin-git> bitcoin/master d1e9a02 glozow: Merge bitcoin/bitcoin#29402: mempool: Log added for dumping mempool transa... 04:44 < bitcoin-git> [bitcoin] glozow merged pull request #29402: mempool: Log added for dumping mempool transactions to disk (master...dumpmempoollogsfeb2024) https://github.com/bitcoin/bitcoin/pull/29402 04:56 -!- lbia [~lbia@user/lbia] has quit [Quit: lbia] 04:59 -!- lbia [~lbia@user/lbia] has joined #bitcoin-core-dev 05:23 -!- cbergqvist [~chris@84-216-185-21.customers.ownit.se] has quit [Ping timeout: 272 seconds] 05:43 < vasild> I wonder why nBind is present on this line https://github.com/bitcoin/bitcoin/blob/c8e3978114716bb8fb10695b9d187652f3ab4926/src/init.cpp#L990 but not on https://github.com/bitcoin/bitcoin/blob/c8e3978114716bb8fb10695b9d187652f3ab4926/src/init.cpp#L993 05:45 < vasild> The original version of this code is https://github.com/bitcoin/bitcoin/blob/ba29a5590bc4479d74454f0b9fdaf007d9d80221/src/init.cpp#L533 (line 533 and 538) 05:46 < vasild> sipa: in case you remember, that is from 2013, not too long ago. To my understanding nBind should be present in both expressions 05:57 -!- aleggg [~aleggg@177.204.243.50.dynamic.adsl.gvt.net.br] has joined #bitcoin-core-dev 05:58 -!- kevkevin [~kevkevin@2601:241:8703:7b30:eda9:cf5e:34be:6b67] has joined #bitcoin-core-dev 06:08 < bitcoin-git> [bitcoin] sipa opened pull request #29757: feefrac: avoid explicitly computing diagram; compare based on chunks (master...202403_implicit_diagram) https://github.com/bitcoin/bitcoin/pull/29757 06:16 -!- pablomartin [~pablomart@185.216.146.241] has joined #bitcoin-core-dev 06:19 < sipa> vasild: i have no memory of that code 06:20 < vasild> ;-) 06:20 < vasild> ok, maybe I will PR some simplification of that 06:34 < _aj_> vasild: fd_max - nbind -- so you can have an fd for each interface you're listening on would be my guess? 06:35 < vasild> yes, for example -bind=1.2.3.4:1234 -bind=[2001::234]:2837 -bind=... would need 3 file descriptors for bind/listening 06:36 < vasild> it is properly accounted for on line 990 in the latest code but is missing from line 993 and I wonder why, I think it should be present on line 993 as well 06:36 < darosior> a story of a bug in one part "Not sure i understand this code. I will refactor it to make it simpler." :p 06:37 < vasild> darosior: been there done that :) or also "s/refactor/delete/" ;_) 06:37 < _aj_> vasild: it's mentioned in line 981, so seems like it should appear in 993 as well to me too, fwiw 06:41 < vasild> to be honest this nMaxConnections tweaking around those lines gives me a headache, it could be that I misunderstand it. darosior _aj_ sipa I will poke you for review if I gather enough bravery to simplify it (aka break it) 06:42 < darosior> is this the best use of everyone's time? Did you find a bug related to this or are you just trying to make it "look nicer"? 06:42 < _aj_> vasild: i think the main value is (a) to give an error in the logs if your system can't support the connections you want, and (b) to ensure enough fds are reserved for manual addnode connections 06:45 -!- Guyver2 [~Guyver@77-174-98-73.fixed.kpn.net] has left #bitcoin-core-dev [Closing Window] 06:48 < vasild> darosior: I think this piece is complicated enough to warrant a simplification. If I have troubles understanding it then others may as well. The code is read many times by many people, so that multiples. Also, I am now adding a new metric to that, similar to nBind and if there is a bug in the existent code, then should I do as in nBind, repeat the bug in the new code or not? This arised in 06:48 < vasild> https://github.com/bitcoin/bitcoin/pull/29415#discussion_r1539858047. Your or any other reviewer's judgement could vary of course. In this case you are free to ignore a PR if you view it as not important enough. 06:49 < darosior> sure, just asking cause you wanted me to review. 06:50 < vasild> ok, just "poke", feel free to ignore any review request. And I still have not opened any PR for that, maybe I will put it somewhere lower on my TODO and will never get to it... 06:53 -!- pablomartin [~pablomart@185.216.146.241] has quit [Ping timeout: 264 seconds] 06:54 -!- BrandonOdiwuor [~BrandonOd@41.80.113.148] has quit [Ping timeout: 250 seconds] 07:00 -!- Guest42 [~Guest42@212.129.75.125] has joined #bitcoin-core-dev 07:00 < achow101> #startmeeting 07:00 < darosior> hi 07:00 < dergoegge> hi 07:00 < Murch[m]> hi 07:00 < pinheadmz> hi 07:00 < achow101> #bitcoin-core-dev Meeting: achow101 _aj_ amiti ariard aureleoules b10c BlueMatt brunoerg cfields darosior dergoegge dongcarl fanquake fjahr furszy gleb glozow hebasto instagibbs jamesob jarolrod jonatack josibake kallewoof kanzure kouloumos kvaciral laanwj LarryRuane lightlike luke-jr MacroFake Murch phantomcircuit pinheadmz promag provoostenator ryanofsky sdaftuar S3RK stickies-v sipa theStack TheCharlatan vasild 07:00 < hebasto> hi 07:00 < glozow> hi 07:00 < TheCharlatan> hi 07:00 < furszy> hi 07:01 < vasild> hi 07:01 < achow101> There are 2 pre proposed meeting topics this week, and last minute ones to add 07:01 < sdaftuar> hi 07:01 < theStack> hi 07:01 < luke-jr_> hi 07:02 < kevkevin> hi 07:02 < lightlike> Hi 07:02 < achow101> #topic package relay updates (glozow) 07:02 < stickies-v> hi 07:02 < glozow> #28970 is my priority. Also, #29242 was merged. a followup is open (#29724) and I think the next PR is ready for review (#28984). 07:02 < LarryRuane> Hi 07:02 <@gribble> https://github.com/bitcoin/bitcoin/issues/28970 | p2p: opportunistically accept 1-parent-1-child packages by glozow · Pull Request #28970 · bitcoin/bitcoin · GitHub 07:02 <@gribble> https://github.com/bitcoin/bitcoin/issues/29242 | Mempool util: Add RBF diagram checks for single chunks against clusters of size 2 by instagibbs · Pull Request #29242 · bitcoin/bitcoin · GitHub 07:02 <@gribble> https://github.com/bitcoin/bitcoin/issues/29724 | 29242 Diagram check followups by instagibbs · Pull Request #29724 · bitcoin/bitcoin · GitHub 07:02 <@gribble> https://github.com/bitcoin/bitcoin/issues/28984 | Cluster size 2 package rbf by instagibbs · Pull Request #28984 · bitcoin/bitcoin · GitHub 07:02 < glozow> Thats it from me 07:03 < b10c> hi 07:03 < achow101> #topic cluster mempool updates (sdaftuar) 07:03 < sdaftuar> hi-- 07:03 < sdaftuar> Hi -- I found a memory accounting bug in the draft PR this week, which I think I've figured out and have a fix for, but haven't yet pushed. I'm verifying my fix now on my historical data and will push once I'm done. 07:03 < sdaftuar> Also, the draft PR is now badly in need of a rebase, which I probably won't get to in the next week -- I'm prioritizing trying to do research on historical data with the branch that I have. 07:03 < sdaftuar> My hope is to put together some kind of summary of the changes to transaction acceptance that would have occurred with the new mempool, based on last year's transaction data. (This includes redoing the preliminary performance benchmarks that I'd previously done which need to be re-done with the above-mentioned bugfix in place.) 07:04 < sdaftuar> So I'm planning to tackle the rebase and re-working of the draft PR after that research is complete. 07:04 < sdaftuar> Excitingly (for me), today I discovered over 1000 examples of RBFs that took place in January 2023 which were accepted by the old mempool logic but would have been rejected by the new feerate diagram check, which I'm in the process of exploring further. 07:04 < sdaftuar> If anyone has any questions that I can answer, please let me know! 07:04 < sdaftuar> (that's it for me) 07:04 < glozow> cool! (the RBFs) 07:05 < achow101> Is there anything that can be reviewed right now? 07:06 < kanzure> hi 07:06 -!- luke-jr_ is now known as luke-jr 07:07 < sdaftuar> achow101: well, i'm going to start asking people for help with the wallet and mini_miner changes soon. probably not a lot of useful review to be done now on the implementation itself, but i think reviewing the test changes could be helpful-- 07:07 < sdaftuar> really i think it would be helpful if anyone is interested in writing better/more comprehensive tests which i could take in the PR 07:07 < sdaftuar> but that can also come later, of course 07:08 < achow101> #topic legacy wallet removal updates (achow101) 07:09 < vasild> "last year's transaction data" - do you take that from the blockchain or did you run some recorder that saves each tx that makes it to your mempool. E.g. if a transaction was accepted in the mempool but never mined, would it be in that historical data you tested with? 07:09 < sdaftuar> vasild: i have a data logging system that records every transaction and block that my node sees, and a patch set that allows me to play that data back through our validation logic 07:10 < vasild> cool :) 07:10 < achow101> Hasn't been much activity in the last week so the thing to review is still #26606. Also been reviewing #28574, hoping to get that in soon 07:10 <@gribble> https://github.com/bitcoin/bitcoin/issues/26606 | wallet: Implement independent BDB parser by achow101 · Pull Request #26606 · bitcoin/bitcoin · GitHub 07:10 <@gribble> https://github.com/bitcoin/bitcoin/issues/28574 | wallet: optimize migration process, batch db transactions by furszy · Pull Request #28574 · bitcoin/bitcoin · GitHub 07:11 < achow101> #topic Ad-hoc high priority for review 07:11 < achow101> Anything to add or remove from https://github.com/orgs/bitcoin/projects/1/views/4 07:13 < achow101> #topic enable misc-no-recursion: #29690 (proposing on behalf of @dergoegge) (stickies-v) 07:13 <@gribble> https://github.com/bitcoin/bitcoin/issues/29690 | clang-tidy: Enable misc-no-recursion by dergoegge · Pull Request #29690 · bitcoin/bitcoin · GitHub 07:13 < dergoegge> i have a pr open to discourage the use of recursion (and to make it obvious when we introduce it) using the "misc-no-recursion" clang-tidy plugin #29690 07:13 <@gribble> https://github.com/bitcoin/bitcoin/issues/29690 | clang-tidy: Enable misc-no-recursion by dergoegge · Pull Request #29690 · bitcoin/bitcoin · GitHub 07:13 < dergoegge> if anyone has an issue with that please comment on the PR :) 07:14 < vasild> Is recursion frowned upon? :-O 07:15 < luke-jr> there's some arguments made, but I think the point here is to make it explicit 07:15 < luke-jr> contrasted with (eg) calling the same function with a different signature 07:15 < dergoegge> there is nuance to that question, i'd frown upon it in our repo but it's mostly about making it explicit 07:16 < achow101> The suggestion is that if a function is recursive, just mark it as such, rather than avoiding it entirely? 07:17 < achow101> iirc it's used quite a bit in wallet related things (descriptors, signing, etc.) 07:17 < lightlike> Is this an actual problem? Are there too many (or any) PRs that attempt to introduce recursion? 07:17 < luke-jr> lightlike: introducing recursion shouldn't be forbidden.. that's a different thing from making it explicit 07:18 < fjahr> I think it’s not going to be doing much for us because it’s not like inexperienced developers include recursion in their PRs by accident very often. But since this also won’t affect ~99% all PRs anyway, I won’t stand in the way if enough others see value in this. 07:18 < sipa> there have been some cases of recursive functions in the codebase that could be triggered to cause stack overfloe 07:18 < sipa> (including ones introduced by me) 07:19 < luke-jr> I guess the real question is, would this have helped catch those? ;) 07:19 < sipa> i doubt it 07:20 < sipa> but it's hard to say, having the explicit marker in the codebase permanently may cause some people to occasionslly just look over all of them 07:20 < achow101> I suppose if you have opinions, go comment on the PR? 07:20 < luke-jr> is it the function that gets marked, or the call? 07:20 < sipa> ok 07:20 < luke-jr> achow101: k 07:20 < dergoegge> 👍 07:21 < vasild> In my experience some problems are recursive in nature and the recursive solution is neat an tidy and easy to follow and review and thus unlikely to have bugs. Iterative solutions for those on the other hand could be messy and easier to get wrong. I don't think a blanket ban on recursion makes sense in any project. Explicitly flagging a function "this is recursive" to avoid accidental recursion 07:21 < achow101> #topic writeups and disclosure of historical bugs reported but were never published (darosior) 07:21 < vasild> is another thing. +1 on that. 07:21 < sipa> luke-jr: in recursive functions, those two are the same :) 07:21 < darosior> So last time a group of us met in person, Niklas and i volunteered to make a few writeups about historical vulnerabilities which were reported to the project. So we did that. Thanks to fanquake for sharing with us the old reports. 07:21 < luke-jr> sipa: not really, the call site may be a page or two away 07:21 < darosior> We only have two though, looks like there were not that many in the end. 07:21 < sipa> luke-jr: the function gets marked 07:21 < darosior> We think we could write a blog post at bitcoincore.org about them, and maybe announce them on the ML. Does anyone has any feedback / opinion / objection to us doing this? (remember we are talking about very old vulnerabilities which were just never disclosed) 07:21 < achow101> darosior: I think putting them on bitcoincore.org is fine 07:21 < sdaftuar> seems like a good idea to me, thanks for doing this! 07:22 < instagibbs> +1 07:22 < luke-jr> darosior: there's definitely more than 2? 07:22 < darosior> luke-jr: we can only put so much pressure on fanquake to spit historical reports 07:23 < b10c> +1 on publishing 07:23 < darosior> cool, also maybe as a teaser: we want to animate a discussion at the next about how to handle disclosures moving forward 07:23 < achow101> we can talk offline if there are any more to write 07:23 < darosior> s/at the next/at the next in-person meeting/ 07:24 < sipa> yeah i think i can help with more old ones too 07:24 < achow101> yes, I think bringing up this discussion at the next coredev would be good 07:24 < darosior> sipa: cool, will reach out 07:24 < luke-jr> k 07:24 < vasild> What's the point in publishing those? To get people running vulnerable versions to upgrade? 07:25 < dergoegge> vasild: yes and to give credit to the people that find the bugs 07:25 < darosior> I don't think anybody runs the affected versions anymore 07:25 < achow101> vasild: transparency, and it's also generally useful to have old vulns published so people can talk about them 07:25 < sdaftuar> vasild: i think it can also be instructive to contributors to learn from the past 07:25 < sipa> and also for ourselves, i think it's good to have a culture of keeping track of tjedr 07:25 < sipa> *these 07:26 < darosior> and there is also maybe a point to communicate to the larger Bitcoin community that this kind of thing does happen 07:26 < vasild> Good! I did not think about those 07:26 < kanzure> is there any existing disclosure content on bitcoincore.org? i don't want to see a "policy" 07:26 < luke-jr> darosior: there's at least a few trying to encourage downgrading to 0.12 :/ 07:26 < achow101> kanzure: pretty sure there's a few older things 07:26 < sdaftuar> kanzure: isnt' the inflation bug on there? 07:26 < harding> kanzure: year, duplicate inputs bug is there 07:26 < darosior> sdaftuar: yes it it 07:26 < dergoegge> kanzure: e.g. https://bitcoincore.org/en/2019/11/08/CVE-2017-18350/ 07:26 < achow101> they're buried deep in the blog section 07:27 < luke-jr> not-time-sensitive stuff has historically been published elsewhere tho 07:27 < luke-jr> maybe we can add a page of links to the menus somewhere so they're easy to find 07:27 < kanzure> there needs to be room to maneuver with respect to responsible disclosure and the unique nature of each incident. historical should be fine to document, but i wouldn't want it to be misinterpreted as an expectation on any specific timeline. 07:27 < achow101> luke-jr: it does make sense to have one place with/linking to all of them though 07:28 < achow101> kanzure: I don't think we're going to be setting a policy with hard deadlines 07:28 < darosior> kanzure: yes this topic was only about historical reports. Disclosure of more recent reports will be discussed at the next in-person meeting. 07:28 < sipa> kanzure: agreed, but i also think the number of bugs that require unusual treatment i a tiny fraction only 07:28 < kanzure> sipa: glad to hear that. 07:28 < darosior> Alright i think that's all we had to share, dergoegge anything to add? 07:29 < sipa> i assume darosior and dergoegge are talking about the few very serious ones we've had, and for those, we need ad-hoc proceddes 07:29 -!- Guest42 [~Guest42@212.129.75.125] has quit [Quit: Client closed] 07:29 < dergoegge> darosior: no :) 07:29 < fjahr> some old fork based altcoins could be affected still right? Not saying that means we shouldn't do it, just a thought. Maybe you could grep for the affected lines in github? 07:30 -!- Guest42 [~Guest42@212.129.75.125] has joined #bitcoin-core-dev 07:30 < darosior> fjahr: it's a decade old, i don't think anything remotely sane still running would be on these versions anymore 07:30 < achow101> darosior: there are plenty of insane people :p 07:30 < b10c> fjahr: if they haven't cherry-picked commits in 10 years, they won't start now? 07:31 < kanzure> fjahr: yes this has been discussed on the mailing list in the past as an issue with responsible disclosure (do i personally owe any responsibility to disclose to altcoins that forked and didn't provide developer resources back? what about their users...?) etc 07:31 < luke-jr> b10c: maybe they have, just didn't know about the relevant ones? 07:31 < luke-jr> kanzure: even if they had provided resources back, they wouldn't necessarily know 07:31 < fjahr> b10c: yeah, still a heads up a few days before publishing would be nice, but no strong feelings either way... 07:32 < kanzure> (and there are also security issues with disclosing to altcoins: many of these projects are acting as adversarial entities! why would you disclose weapons or vulnerabilities or whatever?) 07:32 < luke-jr> there's only a small few legit altcoins tho, and I don't see why we should care about the scams 07:32 < achow101> as usual, I think it needs to be evaluated on a case by case basis 07:32 < luke-jr> the legit ones are likely already rebased anyway 07:32 < darosior> fjahr: for recent disclosure i agree out of courtesy we could be reaching to a few of the main altcoins a few days before publishing. For historical ones, meh 07:32 < kanzure> sure, sure. this is an old topic, and not much has changed. 07:33 < achow101> anything else to discuss? 07:33 < dergoegge> i think i'd be irresponsible not to give them a heads up but only after we've decided it is safe to publish anyway 07:35 < achow101> #endmeeting 07:36 -!- lbia [~lbia@user/lbia] has quit [Quit: lbia] 07:37 -!- cguida [~cguida@2806:2f0:55e1:f7b9:99d9:91ae:74e5:e68d] has quit [Ping timeout: 255 seconds] 07:37 -!- luke-jr [~luke-jr@user/luke-jr] has quit [Read error: Connection reset by peer] 07:39 -!- Guest42 [~Guest42@212.129.75.125] has quit [Quit: Client closed] 07:41 -!- luke-jr [~luke-jr@user/luke-jr] has joined #bitcoin-core-dev 07:43 -!- pablomartin [~pablomart@217.146.93.18] has joined #bitcoin-core-dev 07:45 -!- pablomartin [~pablomart@217.146.93.18] has quit [Read error: Connection reset by peer] 07:45 -!- pablomartin4btc [~pablomart@217.146.93.18] has joined #bitcoin-core-dev 07:48 -!- preimage [~halosghos@user/halosghost] has joined #bitcoin-core-dev 07:49 -!- bugs_ [~bugs@user/bugs/x-5128603] has joined #bitcoin-core-dev 08:18 -!- puchka [~puchka@185.203.122.201] has quit [Ping timeout: 264 seconds] 08:23 -!- luke-jr [~luke-jr@user/luke-jr] has quit [Ping timeout: 252 seconds] 08:31 -!- brunoerg [~brunoerg@2804:14c:3bfb:37:6c35:c8b5:c6df:6686] has quit [Remote host closed the connection] 08:33 < bitcoin-git> [bitcoin] sipa opened pull request #29758: feefrac: 128-bit multiply support in MSVC (master...202403_feefrac128_msvc) https://github.com/bitcoin/bitcoin/pull/29758 08:33 -!- brunoerg [~brunoerg@187.183.43.117] has joined #bitcoin-core-dev 08:35 -!- Guest7 [~Guest7@2001:1c06:1b15:2100:6c20:d7fc:cadc:9f09] has joined #bitcoin-core-dev 08:39 -!- Guest7 [~Guest7@2001:1c06:1b15:2100:6c20:d7fc:cadc:9f09] has quit [Client Quit] 08:41 -!- brunoerg [~brunoerg@187.183.43.117] has quit [Ping timeout: 268 seconds] 08:48 -!- BrandonOdiwuor [~BrandonOd@41.80.116.39] has joined #bitcoin-core-dev 08:50 -!- jarthur [~jarthur@user/jarthur] has joined #bitcoin-core-dev 08:53 -!- AaronvanW [~AaronvanW@user/AaronvanW] has joined #bitcoin-core-dev 08:56 -!- pablomartin4btc [~pablomart@217.146.93.18] has quit [Ping timeout: 268 seconds] 09:00 -!- zeropoint [~alex@45-28-139-114.lightspeed.sntcca.sbcglobal.net] has joined #bitcoin-core-dev 09:00 -!- luke-jr [~luke-jr@user/luke-jr] has joined #bitcoin-core-dev 09:01 -!- BrandonOdiwuor [~BrandonOd@41.80.116.39] has quit [Ping timeout: 250 seconds] 09:04 -!- lbia [~lbia@user/lbia] has joined #bitcoin-core-dev 09:22 -!- preimage [~halosghos@user/halosghost] has quit [Quit: WeeChat 4.2.1] 09:29 -!- puchka [~puchka@185.203.122.46] has joined #bitcoin-core-dev 09:39 -!- asher [~ash3y@216.98.225.36] has joined #bitcoin-core-dev 09:39 -!- ppisati_ [~flag@81.56.89.175] has quit [Ping timeout: 255 seconds] 09:41 -!- ppisati [~flag@81.56.89.175] has joined #bitcoin-core-dev 09:59 -!- AaronvanW [~AaronvanW@user/AaronvanW] has quit [Remote host closed the connection] 10:05 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 264 seconds] 10:08 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 10:17 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 260 seconds] 10:53 -!- asher [~ash3y@216.98.225.36] has quit [Ping timeout: 268 seconds] 10:56 -!- pablomartin [~pablomart@217.146.93.22] has joined #bitcoin-core-dev 10:56 -!- Guest71 [~Guest71@177.245.194.2] has joined #bitcoin-core-dev 11:07 -!- Guest71 [~Guest71@177.245.194.2] has quit [Ping timeout: 250 seconds] 11:27 -!- ___nick___ [~quassel@82-132-213-79.dab.02.net] has joined #bitcoin-core-dev 11:30 -!- Talkless [~Talkless@mail.dargis.net] has joined #bitcoin-core-dev 11:38 -!- abubakarsadiq [uid602234@id-602234.hampstead.irccloud.com] has quit [Quit: Connection closed for inactivity] 11:41 -!- AaronvanW [~AaronvanW@user/AaronvanW] has joined #bitcoin-core-dev 11:43 -!- Guest29 [~Guest29@84-87-86-87.fixed.kpn.net] has joined #bitcoin-core-dev 11:44 -!- Guest29 [~Guest29@84-87-86-87.fixed.kpn.net] has quit [Client Quit] 11:53 -!- kevkevin [~kevkevin@2601:241:8703:7b30:eda9:cf5e:34be:6b67] has quit [Remote host closed the connection] 12:11 -!- core-meetingbot` [~meetingbo@2a01:4f9:3081:504d::2] has quit [Quit: 2021.06.15] 12:11 -!- core-meetingbot [~meetingbo@2a01:4f9:3081:504d::2] has joined #bitcoin-core-dev 12:13 -!- AaronvanW [~AaronvanW@user/AaronvanW] has quit [Ping timeout: 268 seconds] 12:14 -!- preimage [~halosghos@user/halosghost] has joined #bitcoin-core-dev 12:15 -!- preimage [~halosghos@user/halosghost] has quit [Client Quit] 12:25 -!- Talkless [~Talkless@mail.dargis.net] has quit [Ping timeout: 255 seconds] 12:29 -!- pablomartin [~pablomart@217.146.93.22] has quit [Ping timeout: 252 seconds] 13:01 -!- Zenton [~user@user/zenton] has quit [Ping timeout: 268 seconds] 13:11 -!- asher [~ash3y@216.98.225.36] has joined #bitcoin-core-dev 13:12 -!- preimage [~halosghos@user/halosghost] has joined #bitcoin-core-dev 13:25 -!- mudsip [~mudsip@user/mudsip] has joined #bitcoin-core-dev 13:28 -!- mudsip [~mudsip@user/mudsip] has quit [Client Quit] 13:30 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 13:44 -!- cguida [~cguida@2806:2f0:55e1:f7b9:a3f6:5e1b:55e:6614] has joined #bitcoin-core-dev 14:04 -!- ___nick___ [~quassel@82-132-213-79.dab.02.net] has quit [Ping timeout: 268 seconds] 14:05 -!- jonatack [~jonatack@user/jonatack] has quit [Quit: WeeChat 4.2.1] 14:12 -!- AaronvanW [~AaronvanW@user/AaronvanW] has joined #bitcoin-core-dev 14:15 -!- aleggg [~aleggg@177.204.243.50.dynamic.adsl.gvt.net.br] has quit [Remote host closed the connection] 14:23 -!- abubakarsadiq [uid602234@id-602234.hampstead.irccloud.com] has joined #bitcoin-core-dev 14:24 -!- pablomartin [~pablomart@217.146.93.23] has joined #bitcoin-core-dev 14:41 < bitcoin-git> [bitcoin] hebasto opened pull request #29761: build: Consider `SOURCE_DATE_EPOCH` in Guix environment only (master...240328-epoch) https://github.com/bitcoin/bitcoin/pull/29761 14:43 -!- preimage [~halosghos@user/halosghost] has quit [Quit: WeeChat 4.2.1] 14:44 -!- AaronvanW [~AaronvanW@user/AaronvanW] has quit [Ping timeout: 268 seconds] 14:54 -!- brunoerg [~brunoerg@186.204.61.58] has joined #bitcoin-core-dev 14:55 -!- kevkevin [~kevkevin@2601:243:197e:8f10:64e7:e72c:8cfb:6f46] has joined #bitcoin-core-dev 14:59 -!- bugs_ [~bugs@user/bugs/x-5128603] has quit [Quit: Leaving] 14:59 -!- kevkevin [~kevkevin@2601:243:197e:8f10:64e7:e72c:8cfb:6f46] has quit [Ping timeout: 240 seconds] 15:01 -!- preimage [~halosghos@user/halosghost] has joined #bitcoin-core-dev 15:02 -!- AaronvanW [~AaronvanW@user/AaronvanW] has joined #bitcoin-core-dev 15:03 -!- Guest1 [~Guest1@193.124.92.119] has joined #bitcoin-core-dev 15:07 -!- Guest1 [~Guest1@193.124.92.119] has quit [Client Quit] 15:07 -!- brunoerg [~brunoerg@186.204.61.58] has quit [Remote host closed the connection] 15:08 -!- brunoerg [~brunoerg@186.204.61.58] has joined #bitcoin-core-dev 15:17 -!- pablomartin [~pablomart@217.146.93.23] has quit [Ping timeout: 268 seconds] 15:30 -!- pablomartin [~pablomart@217.146.93.21] has joined #bitcoin-core-dev 15:31 -!- AaronvanW [~AaronvanW@user/AaronvanW] has quit [Ping timeout: 240 seconds] 15:44 -!- aleggg [~aleggg@177.204.243.50.dynamic.adsl.gvt.net.br] has joined #bitcoin-core-dev 15:54 -!- brunoerg [~brunoerg@186.204.61.58] has quit [Remote host closed the connection] 16:06 -!- brunoerg [~brunoerg@186.204.61.58] has joined #bitcoin-core-dev 16:12 -!- vasild [~vd@user/vasild] has quit [Ping timeout: 260 seconds] 16:13 -!- vasild [~vd@user/vasild] has joined #bitcoin-core-dev 16:46 -!- jarthur [~jarthur@user/jarthur] has quit [Quit: jarthur] 16:54 -!- brunoerg [~brunoerg@186.204.61.58] has quit [Remote host closed the connection] 17:58 -!- puchka [~puchka@185.203.122.46] has quit [Ping timeout: 256 seconds] 17:58 -!- maflcko [~none@107.172.8.183] has quit [Quit: ZNC 1.8.2+deb2build5 - https://znc.in] 17:59 -!- maflcko [~none@107.172.8.183] has joined #bitcoin-core-dev 18:27 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 18:28 -!- abubakarsadiq [uid602234@id-602234.hampstead.irccloud.com] has quit [Quit: Connection closed for inactivity] 18:31 -!- zeropoint [~alex@45-28-139-114.lightspeed.sntcca.sbcglobal.net] has quit [Quit: leaving] 18:44 -!- jamesob4 [~jamesob@108.44.248.162] has joined #bitcoin-core-dev 18:45 -!- jamesob [~jamesob@108.44.248.162] has quit [Read error: Connection reset by peer] 18:45 -!- jamesob4 is now known as jamesob 18:52 < bitcoin-git> [bitcoin] xiaoxianBoy opened pull request #29762: chore: fix typos (master...fix-typos) https://github.com/bitcoin/bitcoin/pull/29762 20:03 -!- asher [~ash3y@216.98.225.36] has quit [Quit: Leaving] 20:14 -!- brunoerg [~brunoerg@2804:1b3:a000:70bb:3c42:afe4:bdaa:1a0f] has joined #bitcoin-core-dev 20:19 -!- brunoerg [~brunoerg@2804:1b3:a000:70bb:3c42:afe4:bdaa:1a0f] has quit [Ping timeout: 255 seconds] 20:27 -!- preimage [~halosghos@user/halosghost] has quit [Quit: WeeChat 4.2.1] 20:41 -!- vasild [~vd@user/vasild] has quit [Remote host closed the connection] 20:41 -!- vasild [~vd@user/vasild] has joined #bitcoin-core-dev 21:00 -!- kouloumos [sid539228@id-539228.tinside.irccloud.com] has quit [Ping timeout: 256 seconds] 21:00 -!- vasild [~vd@user/vasild] has quit [Remote host closed the connection] 21:00 -!- vasild [~vd@user/vasild] has joined #bitcoin-core-dev 21:01 -!- cmirror [~cmirror@4.53.92.114] has quit [Remote host closed the connection] 21:01 -!- cmirror [~cmirror@4.53.92.114] has joined #bitcoin-core-dev 21:03 -!- kouloumos [sid539228@id-539228.tinside.irccloud.com] has joined #bitcoin-core-dev 22:00 -!- Guest14 [~Guest14@2804:d4b:8037:6700:b932:d7dd:e69c:7ba4] has joined #bitcoin-core-dev 22:02 -!- Guest14 [~Guest14@2804:d4b:8037:6700:b932:d7dd:e69c:7ba4] has quit [Client Quit] 22:04 -!- Guest14 [~Guest14@2804:d4b:8037:6700:b932:d7dd:e69c:7ba4] has joined #bitcoin-core-dev 22:04 -!- Guest14 [~Guest14@2804:d4b:8037:6700:b932:d7dd:e69c:7ba4] has quit [Client Quit] 22:27 -!- puchka [~puchka@185.203.122.186] has joined #bitcoin-core-dev 23:01 -!- AaronvanW [~AaronvanW@user/AaronvanW] has joined #bitcoin-core-dev 23:05 -!- Guest23 [~Guest23@201-43-146-67.dsl.telesp.net.br] has joined #bitcoin-core-dev 23:05 -!- Guest23 [~Guest23@201-43-146-67.dsl.telesp.net.br] has quit [Client Quit] 23:14 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev 23:54 -!- kevkevin [~kevkevin@2601:243:197e:8f10:64e7:e72c:8cfb:6f46] has joined #bitcoin-core-dev 23:59 -!- kevkevin [~kevkevin@2601:243:197e:8f10:64e7:e72c:8cfb:6f46] has quit [Ping timeout: 268 seconds] --- Log closed Fri Mar 29 00:00:11 2024