--- Log opened Thu Oct 26 00:00:07 2023 00:15 < vasild> hebasto: How is cmake WERROR supposed to work without suppressing warnings from external headers (e.g. boost and qt)? 00:16 < vasild> that is, configure.ac as --suppress-external-warnings, is that not needed also for the cmake build? 00:17 < vasild> s/as/has/ 00:18 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 00:23 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 272 seconds] 01:09 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 01:13 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 258 seconds] 01:25 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 01:30 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 260 seconds] 01:31 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 01:35 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 248 seconds] 01:42 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 01:47 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 255 seconds] 01:53 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 01:58 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 240 seconds] 02:07 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 02:15 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 240 seconds] 03:02 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 03:05 < hebasto> vasild: by default, all imported targets, ie external dependencies, are considered as "system" ones 03:06 < hebasto> see https://cmake.org/cmake/help/latest/prop_tgt/IMPORTED_NO_SYSTEM.html and https://cmake.org/cmake/help/latest/prop_tgt/SYSTEM.html 03:06 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 258 seconds] 03:07 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 03:07 < vasild> what is an imported target? 03:08 < vasild> https://cmake.org/cmake/help/latest/manual/cmake-buildsystem.7.html#imported-targets 03:09 < hebasto> they external dependencies; for example FindBoost command creates an imported Boost::headers target 03:09 < vasild> what does that mean? that cmake will automatically add -isystem /usr/local/include/qt5, but will not add -isystem src/ 03:09 < hebasto> * they are 03:09 < vasild> ? 03:10 < vasild> I mean, assuming it has to include headers from src/, src/util/, and /usr/local/include/qt5/, would it use -Isrc -Isrc/util -isystem /usr/local/include/qt5? 03:10 < hebasto> yes, `-isystem` is added to so-called "interface" headers of an imported target 03:11 < vasild> \o/ so no need for the --suppress-external-warnigns tweak/hack? 03:11 < hebasto> correct 03:12 < vasild> wow! :) 03:12 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 240 seconds] 03:13 < hebasto> again, this is the default behavior which might be altered if someone wants / needs to 03:23 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 03:28 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 246 seconds] 03:46 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 03:51 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 264 seconds] 03:51 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 03:56 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 252 seconds] 04:08 < fanquake> So how do we turn that behaviour off? 04:09 < fanquake> So we can see all the warnings from external code? 04:09 < fanquake> We need to be able to do that as well 04:09 < hebasto> not implemented yet 04:10 < fanquake> cmake doesn’t have a switch/feature for it? 04:11 < hebasto> it has; see links to target properties above 04:12 < fanquake> Right, but I mean it’s something we’ll have to implement ourselves, same as we needed to implement the inverse in autotools 04:12 < hebasto> correct 04:13 < fanquake> so we’ll still have the suppress external warnings “hack” 04:13 < fanquake> just doing the opposite hah 04:13 < hebasto> hehe 04:42 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 04:46 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 258 seconds] 05:15 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 05:19 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 252 seconds] 05:26 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 05:30 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 264 seconds] 05:32 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 05:37 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 272 seconds] 05:37 -!- brunoerg [~brunoerg@187.183.43.117] has joined #bitcoin-core-builds 05:42 -!- brunoerg [~brunoerg@187.183.43.117] has quit [Ping timeout: 252 seconds] 05:43 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 05:47 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 252 seconds] 05:53 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 07:02 -!- bob_x1 [~bob_x@user/bob-x1/x-8934932] has quit [Ping timeout: 256 seconds] 07:02 -!- bob_x1 [~bob_x@user/bob-x1/x-8934932] has joined #bitcoin-core-builds 07:12 -!- pablomartin [~pablomart@92.118.61.218] has joined #bitcoin-core-builds 07:55 < emzy> FWIW build of 26.0rc1 with no-substitutes worked for me. 07:56 < hebasto> emzy: how long did it take for you? 07:59 < emzy> about 2 days on a 6 Core AMD Ryzen 5 3600. But I had build 24.2 before on it. 07:59 -!- pablomartin [~pablomart@92.118.61.218] has quit [Ping timeout: 255 seconds] 07:59 < hebasto> ty 07:59 < emzy> and 25.1 08:07 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Remote host closed the connection] 08:08 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 08:13 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 246 seconds] 08:43 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 08:48 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 260 seconds] 09:17 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 09:21 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 245 seconds] 09:37 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 09:48 -!- pablomartin [~pablomart@92.118.61.218] has joined #bitcoin-core-builds 09:54 -!- Jackielove4u [uid43977@user/jackielove4u] has quit [Quit: Connection closed for inactivity] 10:21 -!- Jackielove4u [uid43977@user/jackielove4u] has joined #bitcoin-core-builds 10:51 -!- DarrylTheFish [~DarrylThe@user/DarrylTheFish] has joined #bitcoin-core-builds 13:22 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Remote host closed the connection] 13:23 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 13:27 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 248 seconds] 13:34 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 13:38 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 252 seconds] 13:40 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 13:44 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 246 seconds] 13:45 -!- brunoerg [~brunoerg@187.183.43.117] has joined #bitcoin-core-builds 13:50 -!- brunoerg [~brunoerg@187.183.43.117] has quit [Ping timeout: 258 seconds] 13:55 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 14:00 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 258 seconds] 14:01 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 14:06 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 248 seconds] 14:13 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 14:54 -!- DarrylTheFiish [~DarrylThe@user/DarrylTheFish] has joined #bitcoin-core-builds 14:57 -!- DarrylTheFish [~DarrylThe@user/DarrylTheFish] has quit [Ping timeout: 272 seconds] 16:09 -!- DarrylTheFiiish [~DarrylThe@user/DarrylTheFish] has joined #bitcoin-core-builds 16:10 -!- Gamer212 [~Gamer212@93.sub-174-215-178.myvzw.com] has joined #bitcoin-core-builds 16:11 -!- DarrylTheFiish [~DarrylThe@user/DarrylTheFish] has quit [Ping timeout: 240 seconds] 16:14 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Remote host closed the connection] 16:15 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 16:24 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 264 seconds] 16:25 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 16:30 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 240 seconds] 16:31 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 16:36 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 245 seconds] 16:37 -!- brunoerg [~brunoerg@187.183.43.117] has joined #bitcoin-core-builds 16:41 -!- brunoerg [~brunoerg@187.183.43.117] has quit [Ping timeout: 255 seconds] 16:59 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 17:07 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 260 seconds] 17:11 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 17:16 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 248 seconds] 17:22 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 17:27 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 258 seconds] 17:35 -!- brunoerg [~brunoerg@187.183.43.117] has joined #bitcoin-core-builds 17:42 -!- brunoerg [~brunoerg@187.183.43.117] has quit [Ping timeout: 258 seconds] 17:59 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 18:04 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 252 seconds] 18:05 -!- brunoerg [~brunoerg@187.183.43.117] has joined #bitcoin-core-builds 18:10 -!- brunoerg [~brunoerg@187.183.43.117] has quit [Ping timeout: 255 seconds] 18:10 -!- DarrylTheFiish [~DarrylThe@user/DarrylTheFish] has joined #bitcoin-core-builds 18:12 -!- DarrylTheFiiish [~DarrylThe@user/DarrylTheFish] has quit [Ping timeout: 255 seconds] 18:14 -!- Gamer212 [~Gamer212@93.sub-174-215-178.myvzw.com] has quit [K-Lined] 18:20 -!- brunoerg [~brunoerg@187.183.43.117] has joined #bitcoin-core-builds 18:25 -!- brunoerg [~brunoerg@187.183.43.117] has quit [Ping timeout: 255 seconds] 18:40 -!- DarrylTheFiiish [~DarrylThe@user/DarrylTheFish] has joined #bitcoin-core-builds 18:43 -!- DarrylTheFiish [~DarrylThe@user/DarrylTheFish] has quit [Ping timeout: 255 seconds] 18:52 -!- pablomartin [~pablomart@92.118.61.218] has quit [Ping timeout: 255 seconds] 19:00 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 19:01 -!- pablomartin [~pablomart@92.118.61.217] has joined #bitcoin-core-builds 19:05 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 264 seconds] 19:05 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 19:10 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 264 seconds] 19:28 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 19:38 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 272 seconds] 19:46 -!- brunoerg [~brunoerg@187.183.43.117] has joined #bitcoin-core-builds 19:50 -!- brunoerg [~brunoerg@187.183.43.117] has quit [Ping timeout: 246 seconds] 19:51 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 19:56 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 260 seconds] 20:02 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 20:06 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 258 seconds] 20:08 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 20:12 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 248 seconds] 20:19 -!- brunoerg [~brunoerg@187.183.43.117] has joined #bitcoin-core-builds 20:23 -!- brunoerg [~brunoerg@187.183.43.117] has quit [Ping timeout: 255 seconds] 20:24 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 20:29 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 240 seconds] 20:54 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 20:59 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 240 seconds] 21:00 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 21:05 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 255 seconds] 21:22 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 21:27 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 248 seconds] 21:30 -!- brunoerg [~brunoerg@187.183.43.117] has joined #bitcoin-core-builds 21:34 -!- brunoerg [~brunoerg@187.183.43.117] has quit [Ping timeout: 248 seconds] 21:36 -!- brunoerg [~brunoerg@187.183.43.117] has joined #bitcoin-core-builds 21:41 -!- brunoerg [~brunoerg@187.183.43.117] has quit [Ping timeout: 255 seconds] 21:41 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 21:46 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 245 seconds] 21:52 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 21:57 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 240 seconds] 21:58 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 22:03 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 258 seconds] 22:03 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 22:08 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 240 seconds] 22:14 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 22:19 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 260 seconds] 22:42 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 22:47 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 264 seconds] 22:48 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 22:53 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 248 seconds] 22:54 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 22:58 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 240 seconds] 23:00 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 23:04 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 258 seconds] 23:05 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 23:09 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 255 seconds] 23:22 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 23:32 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 264 seconds] 23:33 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 23:37 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 245 seconds] 23:43 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has joined #bitcoin-core-builds 23:49 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:c4b4:cf6b:2aae:9a35] has quit [Ping timeout: 272 seconds] --- Log closed Fri Oct 27 00:00:07 2023