--- Log opened Wed Oct 01 00:00:55 2025 00:12 -!- f321x [~f321x@user/f321x] has quit [Quit: f321x] 01:03 -!- durandal_ [~durandal@148.252.128.83] has quit [Ping timeout: 264 seconds] 01:16 -!- durandal_ [~durandal@148.252.147.199] has joined #bitcoin-core-dev 01:31 -!- robobub [uid248673@id-248673.uxbridge.irccloud.com] has quit [Quit: Connection closed for inactivity] 01:50 < bitcoin-git> [bitcoincore.org] yuvadm opened pull request #1175: Migrate bitcoincore.org from Jekyll to Astro.js (master...astro) https://github.com/bitcoin-core/bitcoincore.org/pull/1175 01:52 -!- f321x [~f321x@user/f321x] has joined #bitcoin-core-dev 02:03 -!- aleggg [~aleggg@187.34.170.110] has quit [Ping timeout: 264 seconds] 02:04 -!- aleggg [~aleggg@201-68-135-236.dsl.telesp.net.br] has joined #bitcoin-core-dev 02:18 -!- Guest39 [~Guest39@102.208.130.2] has joined #bitcoin-core-dev 02:20 -!- Guest39 [~Guest39@102.208.130.2] has quit [Client Quit] 02:52 < bitcoin-git> [bitcoin] vasild closed pull request #31316: fuzz: set the output argument of FuzzedSock::Accept() (master...fuzzedsock_accept) https://github.com/bitcoin/bitcoin/pull/31316 03:24 -!- Guest85 [~Guest85@102.90.102.132] has joined #bitcoin-core-dev 03:24 -!- Guest85 [~Guest85@102.90.102.132] has quit [Client Quit] 03:28 < vasild> About mocked time: currently we can set a mocked time and then it stays frozen at that value. Then we can set it to another frozen value. Eventually we can remove mocked time and then it reverts to the real time which is flowing. I think it would be useful to be able to let the mocked time flow. Or (which is the same) to be able to advance the currently flowing time by a given interval and keep 03:28 < vasild> it flowing, simulating time passage in tests. Any thoughts? 03:36 < bitcoin-git> [bitcoin] hebasto pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/f41f97240c06...acc7f2a433b1 03:36 < bitcoin-git> bitcoin/master 5019402 Brandon Odiwuor: ci: Remove bash -c from cmake invocation using eval 03:36 < bitcoin-git> bitcoin/master acc7f2a Hennadii Stepanov: Merge bitcoin/bitcoin#33401: ci: Remove bash -c from cmake invocation usin... 03:36 < bitcoin-git> [bitcoin] hebasto merged pull request #33401: ci: Remove bash -c from cmake invocation using eval (master...ci-cmake-eval) https://github.com/bitcoin/bitcoin/pull/33401 03:42 -!- TallTim_ is now known as TallTim 03:43 < shiza> vasild: mock spawns a thread that on wake adjusts mocked time to delta between case start and now and then sleeps? 03:47 < vasild> shiza: hmm, maybe no need for a new thread, looking at NodeClock::now() in src/util/time.cpp which returns either std::chrono::system_clock::now().time_since_epoch() (the real flowing time) or g_mock_time (frozen mock time), maybe it would return the real time + mock delta. 03:51 < sipa> vasild: it sounds very reasonable, but is there a use case? 03:57 < vasild> sipa: yes, this is what I am trying to understand. Over time, occassionally I felt the need for that when writing tests, but if it is just me, then there is little motivation to pursue it. 04:11 < shiza> vasild: never done such a thing but I suppose it could fit niches in transportation software test suites or in ecash if you have very large resources for IBD performance optimization 04:11 < shiza> sounds real time software development to me 04:15 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 04:15 -!- memset [~memset@gateway/tor-sasl/memset] has joined #bitcoin-core-dev 04:41 -!- jespada [~jespada@2800:a4:2302:2500:2966:dd36:8919:14e4] has joined #bitcoin-core-dev 04:47 < _aj_> vasild: using setmocktime(int(time.time())) to stop/bump the clock and setmocktime(0) to make it continue again seems a decent approximation of that? the mockscheduler rpc / scheduler.cpp MockForward does a similar manipulation arguably 04:49 < vasild> setmocktime(int(time.time())) + setmocktime(0) is to pause the time and let it flow again, can't simlulate time passage, unless you do sleep(2 minutes) in the test if you want to simulate 2 minutes have passed. 04:50 < vasild> yes, mockscheduler does that for the scheduler 04:53 -!- bst_ [~root@dynamic-046-114-229-095.46.114.pool.telefonica.de] has joined #bitcoin-core-dev 04:55 < _aj_> vasild: you can do t=time.time()-3600; setmocktime(t); setmocktime(t+120); ...; setmocktime(0). can't do it for multiple chunks, but if you're controlling the flow of time once in a test, then controlling it fairly continually seems mostly sensible to me 04:56 < vasild> yeah, that is an approximation of time passage 04:59 < _aj_> well, rt = time.time(); t = X; setmocktime(t + time.time() - rt) would get you an approximation of time passage 05:01 -!- jespada [~jespada@2800:a4:2302:2500:2966:dd36:8919:14e4] has quit [Quit: Textual IRC Client: www.textualapp.com] 05:03 -!- bst_ [~root@dynamic-046-114-229-095.46.114.pool.telefonica.de] has quit [Quit: leaving] 05:08 -!- jespada [~jespada@2800:a4:2302:2500:f477:29de:56a6:e1d6] has joined #bitcoin-core-dev 05:15 -!- Holz [~Holz@user/Holz] has joined #bitcoin-core-dev 05:31 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Quit: = ""] 05:35 -!- robszarka [~szarka@2603:3003:4eac:100:adbc:82b3:b101:92a0] has joined #bitcoin-core-dev 05:38 -!- szarka [~szarka@2603:3003:4eac:100:1e5:7224:7bdc:f458] has quit [Ping timeout: 250 seconds] 05:52 -!- robszarka [~szarka@2603:3003:4eac:100:adbc:82b3:b101:92a0] has quit [Quit: Leaving] 05:52 -!- szarka [~szarka@2603:3003:4eac:100:adbc:82b3:b101:92a0] has joined #bitcoin-core-dev 06:06 -!- f321x [~f321x@user/f321x] has quit [Ping timeout: 272 seconds] 06:11 -!- f321x [~f321x@user/f321x] has joined #bitcoin-core-dev 06:45 -!- jespada [~jespada@2800:a4:2302:2500:f477:29de:56a6:e1d6] has quit [Ping timeout: 256 seconds] 07:04 < bitcoin-git> [bitcoin] willcl-ark opened pull request #33514: Clear out space on centos job (master...centos-space-fix) https://github.com/bitcoin/bitcoin/pull/33514 07:18 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 07:21 -!- Earnestly [~earnest@user/earnestly] has quit [Ping timeout: 264 seconds] 07:22 -!- Earnestly [~earnest@user/earnestly] has joined #bitcoin-core-dev 07:26 -!- bugs_ [~bugs@user/bugs/x-5128603] has joined #bitcoin-core-dev 07:34 -!- eugenesiegel [~eugenesie@user/eugenesiegel] has joined #bitcoin-core-dev 07:39 -!- kevkevin [~kevkevin@209.242.39.30] has joined #bitcoin-core-dev 07:50 -!- l0rinc [~l0rinc@user/l0rinc] has joined #bitcoin-core-dev 07:52 -!- jon_atack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 07:53 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 244 seconds] 08:08 -!- kevkevin [~kevkevin@209.242.39.30] has quit [Remote host closed the connection] 08:17 -!- pedrohgs [~pedrohgs@user/pedrohgs] has joined #bitcoin-core-dev 08:19 -!- f321x [~f321x@user/f321x] has quit [Remote host closed the connection] 08:20 -!- f321x [~f321x@user/f321x] has joined #bitcoin-core-dev 08:25 -!- l0rinc [~l0rinc@user/l0rinc] has quit [Quit: l0rinc] 08:30 -!- eugenesiegel [~eugenesie@user/eugenesiegel] has quit [Quit: Client closed] 08:33 -!- l0rinc [~l0rinc@user/l0rinc] has joined #bitcoin-core-dev 08:35 -!- ghost43_ [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 08:35 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 08:36 -!- eugenesiegel [~eugenesie@user/eugenesiegel] has joined #bitcoin-core-dev 08:38 -!- l0rinc [~l0rinc@user/l0rinc] has quit [Ping timeout: 256 seconds] 08:49 -!- f321x [~f321x@user/f321x] has quit [Ping timeout: 272 seconds] 08:49 -!- Guest85 [~Guest85@2001-14bb-11c-35de-c4ad-b505-6855-7229.rev.dnainternet.fi] has joined #bitcoin-core-dev 08:50 -!- Guest85 [~Guest85@2001-14bb-11c-35de-c4ad-b505-6855-7229.rev.dnainternet.fi] has quit [Client Quit] 08:50 -!- Guest85 [~Guest85@84-253-208-145.bb.dnainternet.fi] has joined #bitcoin-core-dev 08:51 -!- Guest85 [~Guest85@84-253-208-145.bb.dnainternet.fi] has quit [Client Quit] 09:16 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 09:18 -!- jonatack1 [~jonatack@user/jonatack] has joined #bitcoin-core-dev 09:18 -!- jon_atack [~jonatack@user/jonatack] has quit [Ping timeout: 255 seconds] 09:21 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 264 seconds] 09:25 -!- l0rinc [~l0rinc@user/l0rinc] has joined #bitcoin-core-dev 09:35 -!- bugs_ [~bugs@user/bugs/x-5128603] has quit [Quit: Leaving] 09:46 -!- l0rinc [~l0rinc@user/l0rinc] has quit [Quit: l0rinc] 09:49 -!- eugenesiegel [~eugenesie@user/eugenesiegel] has quit [Quit: Client closed] 09:50 -!- l0rinc [~l0rinc@user/l0rinc] has joined #bitcoin-core-dev 09:59 -!- Guest2 [~Guest2@2a00:54c0:8031:4fe0:4f56:3ae3:d5f:bbc9] has joined #bitcoin-core-dev 10:00 -!- Guest2 [~Guest2@2a00:54c0:8031:4fe0:4f56:3ae3:d5f:bbc9] has quit [Client Quit] 10:04 < cfields> review beg for libmultiprocess#220. I know it's really really late, but I'm still hoping to see that in for v30 as it fixes a substantial performance issue for libmultiprocess users as well as bitcoin-node itself. 10:04 < corebot> https://github.com/bitcoin-core/libmultiprocess/issues/220 | Add log levels and advertise them to users via logging callback by theuni · Pull Request #220 · bitcoin-core/libmultiprocess · GitHub 10:24 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 10:26 -!- jonatack1 [~jonatack@user/jonatack] has quit [Ping timeout: 252 seconds] 10:27 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 10:28 -!- memset [~memset@gateway/tor-sasl/memset] has joined #bitcoin-core-dev 10:31 -!- Guest35 [~Guest35@2001:569:53e1:7300:c4ce:8358:f3c:41] has joined #bitcoin-core-dev 10:40 -!- Guest35 [~Guest35@2001:569:53e1:7300:c4ce:8358:f3c:41] has quit [Quit: Client closed] 10:42 < bitcoin-git> [bitcoin] achow101 pushed 20 commits to 28.x: https://github.com/bitcoin/bitcoin/compare/a0b5730f858c...ed730c5674cf 10:42 < bitcoin-git> bitcoin/28.x e779d59 glozow: [test] check miner doesn't select 0fee transactions 10:42 < bitcoin-git> bitcoin/28.x 308778b glozow: [test] check bypass of minrelay for various minrelaytxfee settings 10:42 < bitcoin-git> bitcoin/28.x cf875f1 glozow: [test] RBF rule 4 for various incrementalrelayfee settings 10:42 < bitcoin-git> [bitcoin] achow101 merged pull request #33476: [28.x] backports + 28.3rc1 (28.x...2025-09-28.3-backport) https://github.com/bitcoin/bitcoin/pull/33476 10:44 < bitcoin-git> [bitcoin] achow101 pushed tag v28.3rc1: https://github.com/bitcoin/bitcoin/compare/v28.3rc1 10:47 -!- Talkless [~Talkless@138.199.6.197] has joined #bitcoin-core-dev 10:52 -!- pedrohgs [~pedrohgs@user/pedrohgs] has quit [Quit: WeeChat 4.1.1] 10:55 -!- l0rinc_ [~l0rinc@user/l0rinc] has joined #bitcoin-core-dev 10:56 -!- l0rinc [~l0rinc@user/l0rinc] has quit [Ping timeout: 240 seconds] 10:57 -!- theStack [~theStack@95.179.145.232] has joined #bitcoin-core-dev 10:59 -!- l0rinc_ [~l0rinc@user/l0rinc] has quit [Client Quit] 11:06 < bitcoin-git> [bitcoin] sipa opened pull request #33515: Improve LastCommonAncestor performance + add tests (master...202510_lca) https://github.com/bitcoin/bitcoin/pull/33515 11:12 -!- l0rinc [~l0rinc@user/l0rinc] has joined #bitcoin-core-dev 11:17 -!- jon_atack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 11:17 -!- kevkevin [~kevkevin@2607:fb90:9b18:c0f2:9d97:ce2d:25c2:29e4] has joined #bitcoin-core-dev 11:19 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 264 seconds] 11:22 -!- saturday- [~saturday7@206.83.122.170] has joined #bitcoin-core-dev 11:23 -!- saturday7 [~saturday7@206.83.123.154] has quit [Ping timeout: 240 seconds] 11:29 -!- kevkevin [~kevkevin@2607:fb90:9b18:c0f2:9d97:ce2d:25c2:29e4] has quit [Remote host closed the connection] 11:33 < bitcoin-git> [bitcoincore.org] achow101 closed pull request #1175: Migrate bitcoincore.org from Jekyll to Astro.js (master...astro) https://github.com/bitcoin-core/bitcoincore.org/pull/1175 11:34 -!- Chris_Stewart_5 [~Chris_Ste@155.2.191.142] has quit [Ping timeout: 260 seconds] 11:35 -!- Chris_Stewart_5 [~Chris_Ste@static-23-234-81-96.cust.tzulo.com] has joined #bitcoin-core-dev 11:44 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 11:46 -!- jon_atack [~jonatack@user/jonatack] has quit [Ping timeout: 244 seconds] 11:49 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 11:50 -!- memset [~memset@gateway/tor-sasl/memset] has joined #bitcoin-core-dev 12:04 -!- l0rinc [~l0rinc@user/l0rinc] has quit [Quit: l0rinc] 12:07 -!- l0rinc [~l0rinc@user/l0rinc] has joined #bitcoin-core-dev 12:13 -!- kevkevin [~kevkevin@209.242.39.30] has joined #bitcoin-core-dev 12:17 -!- kevkevin [~kevkevin@209.242.39.30] has quit [Ping timeout: 265 seconds] 12:25 -!- Talkless [~Talkless@138.199.6.197] has quit [Quit: Konversation terminated!] 12:27 -!- cotsuka [~cotsuka@user/cotsuka] has quit [Remote host closed the connection] 12:29 -!- cotsuka [~cotsuka@user/cotsuka] has joined #bitcoin-core-dev 12:37 -!- cotsuka [~cotsuka@user/cotsuka] has quit [Remote host closed the connection] 12:38 -!- cotsuka [~cotsuka@user/cotsuka] has joined #bitcoin-core-dev 12:43 -!- l0rinc [~l0rinc@user/l0rinc] has quit [Quit: l0rinc] 12:44 -!- l0rinc [~l0rinc@user/l0rinc] has joined #bitcoin-core-dev 12:50 -!- l0rinc [~l0rinc@user/l0rinc] has quit [Quit: l0rinc] 12:52 -!- l0rinc [~l0rinc@user/l0rinc] has joined #bitcoin-core-dev 13:36 -!- l0rinc [~l0rinc@user/l0rinc] has quit [Quit: l0rinc] 13:37 -!- l0rinc [~l0rinc@user/l0rinc] has joined #bitcoin-core-dev 13:59 < bitcoin-git> [packaging] hebasto closed pull request #305: snap: Enable cross-compiling on `amd64` and `arm64` (main...250926-cross) https://github.com/bitcoin-core/packaging/pull/305 14:03 -!- l0rinc [~l0rinc@user/l0rinc] has quit [Quit: l0rinc] 14:04 -!- l0rinc [~l0rinc@user/l0rinc] has joined #bitcoin-core-dev 14:17 < bitcoin-git> [bitcoin] achow101 pushed 5 commits to master: https://github.com/bitcoin/bitcoin/compare/acc7f2a433b1...75353a016357 14:17 < bitcoin-git> bitcoin/master 3a4d1a2 Vasil Dimov: net: merge AlreadyConnectedToAddress() and FindNode(CNetAddr) 14:17 < bitcoin-git> bitcoin/master 4268aba Vasil Dimov: net: avoid recursive m_nodes_mutex lock in DisconnectNode() 14:17 < bitcoin-git> bitcoin/master 2a4450c Vasil Dimov: net: change FindNode() to not return a node and rename it 14:17 < bitcoin-git> [bitcoin] achow101 merged pull request #32326: net: improve the interface around FindNode() and avoid a recursive mutex lock (master...findnode) https://github.com/bitcoin/bitcoin/pull/32326 14:29 < bitcoin-git> [bitcoin] GabrielSchnei opened pull request #33516: doc: Correct typo 'implementes' to 'implements' (master...fix-typo-implementes) https://github.com/bitcoin/bitcoin/pull/33516 14:31 < bitcoin-git> [bitcoin] fanquake closed pull request #33516: doc: Correct typo 'implementes' to 'implements' (master...fix-typo-implementes) https://github.com/bitcoin/bitcoin/pull/33516 14:31 -!- kevkevin [~kevkevin@209.242.39.30] has joined #bitcoin-core-dev 14:36 -!- kevkevin [~kevkevin@209.242.39.30] has quit [Ping timeout: 244 seconds] 14:43 -!- LainIwakura [~LainIwaku@user/LainIwakura] has joined #bitcoin-core-dev 14:56 -!- l0rinc [~l0rinc@user/l0rinc] has quit [Quit: l0rinc] 15:00 -!- l0rinc [~l0rinc@user/l0rinc] has joined #bitcoin-core-dev 15:09 -!- jon_atack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 15:10 -!- LainIwakura [~LainIwaku@user/LainIwakura] has quit [Quit: Client closed] 15:10 -!- l0rinc [~l0rinc@user/l0rinc] has quit [Quit: l0rinc] 15:12 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 248 seconds] 15:12 -!- RandGenPseudo [~RandGenPs@user/RandGenPseudo] has joined #bitcoin-core-dev 15:14 -!- RandGenPseudo [~RandGenPs@user/RandGenPseudo] has quit [Quit: Leaving] 15:15 -!- RandGenPseudo [~RandGenPs@user/RandGenPseudo] has joined #bitcoin-core-dev 15:18 -!- RandGenPseudo [~RandGenPs@user/RandGenPseudo] has quit [Client Quit] 15:19 -!- RandGenPseudo [~RandGenPs@user/RandGenPseudo] has joined #bitcoin-core-dev 15:26 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 15:28 -!- jon_atack [~jonatack@user/jonatack] has quit [Ping timeout: 264 seconds] 15:32 -!- LainIwakura [~LainIwaku@user/LainIwakura] has joined #bitcoin-core-dev 15:35 < bitcoin-git> [bitcoin] theuni opened pull request #33517: multiprocess: Fix high overhead from message logging (master...libmultiprocess-logging-bump) https://github.com/bitcoin/bitcoin/pull/33517 15:58 -!- jon_atack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 16:00 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 245 seconds] 16:20 -!- _flood [~flooded@149.88.18.225] has joined #bitcoin-core-dev 16:20 -!- RandGenPseudo [~RandGenPs@user/RandGenPseudo] has quit [Quit: Leaving] 16:22 -!- _flooded [~flooded@149.88.18.225] has quit [Ping timeout: 256 seconds] 16:23 -!- jon_atack [~jonatack@user/jonatack] has quit [Ping timeout: 264 seconds] 16:27 -!- RandGenPseudo [~RandGenPs@user/RandGenPseudo] has joined #bitcoin-core-dev 16:35 -!- jamesob1566591 [~jamesob@108.44.244.6] has joined #bitcoin-core-dev 16:36 -!- jamesob156659 [~jamesob@pool-108-44-244-6.clppva.fios.verizon.net] has quit [Read error: Connection reset by peer] 16:36 -!- jamesob1566591 is now known as jamesob156659 16:45 -!- jonasschnelli_ [~jonasschn@2a01:4f9:3081:504d::2] has joined #bitcoin-core-dev 16:45 -!- chjj_ [~chjj@user/chjj] has joined #bitcoin-core-dev 16:47 -!- _cold [~cold@user/cold] has joined #bitcoin-core-dev 16:47 -!- hirish_ [~hirish@ip251.ip-178-33-19.eu] has joined #bitcoin-core-dev 16:47 -!- jonasschnelli [~jonasschn@bitcoinsrv3.jonasschnelli.ch] has quit [Quit: Mahalo] 16:47 -!- chjj [~chjj@user/chjj] has quit [Read error: Connection reset by peer] 16:47 -!- theStack [~theStack@95.179.145.232] has quit [Remote host closed the connection] 16:47 -!- johnzwen- [~johnzweng@zweng.at] has quit [Quit: Leaving...] 16:47 -!- cold [~cold@user/cold] has quit [Quit: Quitting...] 16:47 -!- hirish [~hirish@ip251.ip-178-33-19.eu] has quit [Quit: ZNC - https://znc.in] 16:47 -!- chjj_ is now known as chjj 16:49 -!- johnzweng [~johnzweng@zweng.at] has joined #bitcoin-core-dev 16:52 -!- jamesob156659 [~jamesob@108.44.244.6] has quit [Read error: Connection reset by peer] 16:52 -!- jamesob156659 [~jamesob@pool-108-44-244-6.clppva.fios.verizon.net] has joined #bitcoin-core-dev 16:54 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 16:59 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 265 seconds] 17:15 -!- l0rinc [~l0rinc@user/l0rinc] has joined #bitcoin-core-dev 17:22 -!- l0rinc [~l0rinc@user/l0rinc] has quit [Quit: l0rinc] 17:28 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 17:30 -!- RandGenPseudo [~RandGenPs@user/RandGenPseudo] has quit [Quit: Leaving] 17:32 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 244 seconds] 17:34 -!- kevkevin [~kevkevin@209.242.39.30] has joined #bitcoin-core-dev 17:38 -!- kevkevin [~kevkevin@209.242.39.30] has quit [Ping timeout: 240 seconds] 18:03 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 18:07 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 250 seconds] 18:11 -!- purpleKarrot [~purpleKar@185.240.173.188] has joined #bitcoin-core-dev 18:18 -!- jerryf [~jerryf@user/jerryf] has joined #bitcoin-core-dev 18:26 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 18:31 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 248 seconds] 18:33 -!- PaperSword [~Thunderbi@securemail.qrsnap.io] has quit [Quit: PaperSword] 18:39 -!- LainIwakura [~LainIwaku@user/LainIwakura] has quit [Quit: Client closed] 18:47 -!- PaperSword [~Thunderbi@securemail.qrsnap.io] has joined #bitcoin-core-dev 18:55 -!- conman [~con@180-150-21-3.b49615.mel.static.aussiebb.net] has quit [Quit: Konversation terminated!] 19:01 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 19:06 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 250 seconds] 19:12 -!- l0rinc [~l0rinc@user/l0rinc] has joined #bitcoin-core-dev 19:13 -!- Guest40 [~Guest40@2001:1960:7000:3014:2c78:d86:592e:d364] has joined #bitcoin-core-dev 19:16 -!- l0rinc [~l0rinc@user/l0rinc] has quit [Ping timeout: 250 seconds] 19:16 -!- Alexa [~Alexa@2001:1960:7000:3014:2c78:d86:592e:d364] has joined #bitcoin-core-dev 19:19 -!- Guest40 [~Guest40@2001:1960:7000:3014:2c78:d86:592e:d364] has quit [Quit: Ping timeout (120 seconds)] 19:23 -!- Alexa [~Alexa@2001:1960:7000:3014:2c78:d86:592e:d364] has quit [Ping timeout: 250 seconds] 19:30 -!- Guest40 [~Guest40@2001:1960:7000:3014:2c78:d86:592e:d364] has joined #bitcoin-core-dev 19:32 -!- l0rinc [~l0rinc@user/l0rinc] has joined #bitcoin-core-dev 19:32 -!- Guest40 [~Guest40@2001:1960:7000:3014:2c78:d86:592e:d364] has quit [Client Quit] 19:33 -!- Guest40 [~Guest40@2001:1960:7000:3014:2c78:d86:592e:d364] has joined #bitcoin-core-dev 19:37 -!- Guest40 [~Guest40@2001:1960:7000:3014:2c78:d86:592e:d364] has quit [Ping timeout: 250 seconds] 19:41 -!- Guest40 [~Guest40@2001:1960:7000:3014:2c78:d86:592e:d364] has joined #bitcoin-core-dev 19:49 -!- Guest40 [~Guest40@2001:1960:7000:3014:2c78:d86:592e:d364] has quit [Ping timeout: 250 seconds] 19:55 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 19:55 -!- memset [~memset@gateway/tor-sasl/memset] has joined #bitcoin-core-dev 20:11 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 20:11 -!- memset [~memset@gateway/tor-sasl/memset] has joined #bitcoin-core-dev 20:22 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 20:27 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 244 seconds] 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:07 -!- Alexa [~Alexa@2001:1960:7000:3014:2c78:d86:592e:d364] has joined #bitcoin-core-dev 21:13 -!- l0rinc [~l0rinc@user/l0rinc] has quit [Quit: l0rinc] 21:23 -!- Alexa [~Alexa@2001:1960:7000:3014:2c78:d86:592e:d364] has quit [Quit: Client closed] 21:43 -!- jerryf [~jerryf@user/jerryf] has quit [Remote host closed the connection] 21:44 -!- jerryf [~jerryf@user/jerryf] has joined #bitcoin-core-dev 23:06 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 23:07 -!- memset [~memset@gateway/tor-sasl/memset] has joined #bitcoin-core-dev 23:14 -!- jerryf [~jerryf@user/jerryf] has quit [Remote host closed the connection] 23:14 -!- jerryf [~jerryf@user/jerryf] has joined #bitcoin-core-dev 23:42 -!- brunoerg [~brunoerg@2804:14d:5285:8318:5406:524f:3dc5:6d07] has quit [Ping timeout: 244 seconds] 23:42 -!- brunoerg [~brunoerg@2804:14d:5285:8318:8474:8be7:d496:c931] has joined #bitcoin-core-dev 23:46 -!- upekkha [~Advanced@2a01:4f8:1c0c:49df::1] has quit [] 23:50 -!- upekkha [~Advanced@2a01:4f8:1c0c:49df::1] has joined #bitcoin-core-dev --- Log closed Thu Oct 02 00:00:56 2025