--- Log opened Wed May 17 00:00:03 2023 00:08 -!- Guyver2 [~Guyver@77.174.98.73] has quit [Remote host closed the connection] 00:20 -!- brunoerg [~brunoerg@187.183.43.117] has joined #bitcoin-core-dev 00:23 -!- vysn [~vysn@user/vysn] has joined #bitcoin-core-dev 00:24 -!- brunoerg [~brunoerg@187.183.43.117] has quit [Ping timeout: 250 seconds] 00:35 < josie> question for the gdb gurus: I'm starting and loading bitcoind with the following commands: $ gdb; file src/bitcoind; b ; run -signet 00:35 < josie> each time I do this, the node does IBD, which is pretty annoying when debugging 00:36 -!- aielima [~aielima@user/aielima] has joined #bitcoin-core-dev 00:36 < josie> is this normal? or is there something about how I am starting bitcoind which is causing this? 00:39 -!- evri [~vytautas@46.36.65.17] has joined #bitcoin-core-dev 00:44 < kouloumos> and it does that on startup even after you already completed IBD on signet on a previous session? 00:46 < josie> kouloumos: yep 00:49 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 00:54 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 264 seconds] 00:55 < vasild> josie: that should be the same as running "src/bitcoind -signet" without gdb 00:56 < vasild> does it behave differently if you run "src/bitcoind -signet" compared to inside gdb? 00:59 < vasild> gdb --args src/bitcoind -signet; b ; run <-- this will do the same but is a bit more convenient if you use it repeatedly 01:02 < vasild> no need to exit gdb to restart from the beginning, just execute "run" again, this way the breakpoints and the arguments (-signet) will remain set 01:03 -!- ___nick___ [~quassel@host86-164-104-11.range86-164.btcentralplus.com] has joined #bitcoin-core-dev 01:04 < bitcoin-git> [bitcoin] MarcoFalke opened pull request #27682: build: Bump minimum Clang to clang-10 (master...2305-clang-10-) https://github.com/bitcoin/bitcoin/pull/27682 01:06 < josie> vasild: running with gdb --args also goes through IDB every time I start it 01:08 < kouloumos> I cannot reproduce your issue. But in general, I find attaching to the process more convenient. Because gdb allows for programmability through python, I wrote a helper that waits for the pid to start and then attaches on it. You can find it as part of this script: https://github.com/kouloumos/bitcoin/commit/0b468517f316590a0502827c4ae989ce948433cf . The script is doing more things, but for the general case you just need 01:08 < kouloumos> to do `gdb src/bitcoind; source extend_gdb.py; b ; attach_bitcoind` and then start your bitcoind process. 01:09 < josie> kouloumos: thanks, I'll give this a try 01:16 < josie> vasild: interestingly, executing "run" in gdb multiple times also causes it to go through IBD every time 01:21 < vasild> josie: yes, because it restarts the process from the beginning (like it kills/terminates any existent process and starts a new one) 01:21 < vasild> but does it do the same if you start "src/bitcoind -signet" witout gdb? 01:21 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 01:24 < kouloumos> josie: I removed the unrelated logic, you can find the simplified version here https://gist.github.com/kouloumos/e0a9c6c58b594d879644efad2d90a443 01:26 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 265 seconds] 01:26 < josie> vasild: nope, this only happens inside gdb, so I'm guessing something isn't setup correctly. I'll dig into the gdb docs more 01:38 < vasild> huh 01:39 < bitcoin-git> [bitcoin] hebasto pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/904631e0fc00...a75c77ea903c 01:39 < bitcoin-git> bitcoin/master 36e2d51 Hennadii Stepanov: qt, test: Add missed header 01:39 < bitcoin-git> bitcoin/master a75c77e Hennadii Stepanov: Merge bitcoin-core/gui#729: test: Add missed header 01:39 < bitcoin-git> [gui] hebasto merged pull request #729: test: Add missed header (master...230516-header) https://github.com/bitcoin-core/gui/pull/729 01:39 < vasild> do you have ~/.gdbinit? maybe that does some extra stuff? 01:41 < vasild> is the breakpoint hit before it goes in IBD? could it be timing related? 01:46 -!- aielima [~aielima@user/aielima] has quit [Quit: Ciao] 01:50 < vasild> if no more clues, I would find where in the code it decides to go IBD or not and add poor-man's printout "entering IBD because variable x equals 5", "not entering IBD because x equals ..." and run inside and outside gdb and see what gets printed 01:51 < josie> vasild: don't have a gdbinit , and no, the breakpoint is after IBD finishes. I don't think its an issue with bitcoin core, since it runs fine outside of gdb, so I'm guessing it has something to do with permissions or gdb not being able to read the blk files? 01:55 -!- b_101 [~robert@185.242.5.35] has quit [Ping timeout: 240 seconds] 01:56 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 01:57 -!- b_101 [~robert@185.242.5.35] has joined #bitcoin-core-dev 02:00 < josie> anywho, thanks for the help. was hoping it was a simple thing like missing a gdb parameter, but looks like something is broken on my end. will spend some more time debugging the debugger after I finish debugging the actual thing lol 02:01 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 265 seconds] 02:02 -!- Cory [~Cory@068-187-125-109.res.spectrum.com] has quit [Ping timeout: 265 seconds] 02:03 -!- Cory [~Cory@068-187-125-109.res.spectrum.com] has joined #bitcoin-core-dev 02:16 < fanquake> To github.com:bitcoin-core/bitcoin-detached-sigs.git 02:16 < fanquake> * [new tag] v23.2 -> v23.2 02:24 < fanquake> To github.com:bitcoin-core/bitcoin-detached-sigs.git 02:24 < fanquake> * [new tag] v24.1 -> v24.1 02:32 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 02:36 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 248 seconds] 02:42 < vasild> josie: no idea then :( "prog -foo" should execute prog in the same way as "gdb --args prog -foo" 02:48 < willcl_ark> Is there a reason the `guix-clean` script doesn't clean up the "guix-build-25.0rc2/output" directory? 02:52 < willcl_ark> It's set as a precious_dir, but I'm not sure why we wouldn't clean that out. It was confusing me why `guix-attest` was outputting "all.SHA256SUMS" after I had run `guix-clean` and not yet codesigned... 02:58 < bitcoin-git> [bitcoin] fanquake opened pull request #27683: ci: remove `RUN_SECURITY_TESTS` (master...remove_RUN_SECURITY_TESTS) https://github.com/bitcoin/bitcoin/pull/27683 03:05 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 03:09 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 248 seconds] 03:16 < bitcoin-git> [bitcoin] hebasto opened pull request #27684: Avoid lock order inversion in `Chainstate::ConnectTip` function (master...230516-punish) https://github.com/bitcoin/bitcoin/pull/27684 03:17 -!- AaronvanW [~AaronvanW@user/AaronvanW] has joined #bitcoin-core-dev 03:24 -!- AaronvanW [~AaronvanW@user/AaronvanW] has quit [Read error: Connection reset by peer] 03:26 -!- AaronvanW [~AaronvanW@user/AaronvanW] has joined #bitcoin-core-dev 03:32 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 03:36 -!- AaronvanW [~AaronvanW@user/AaronvanW] has quit [Read error: Connection reset by peer] 03:37 -!- AaronvanW [~AaronvanW@user/AaronvanW] has joined #bitcoin-core-dev 03:40 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 264 seconds] 03:48 -!- AaronvanW [~AaronvanW@user/AaronvanW] has quit [Read error: Connection reset by peer] 03:49 -!- AaronvanW [~AaronvanW@user/AaronvanW] has joined #bitcoin-core-dev 03:57 -!- AaronvanW [~AaronvanW@user/AaronvanW] has quit [Remote host closed the connection] 04:00 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 04:05 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 265 seconds] 04:18 < bitcoin-git> [bitcoin] MarcoFalke opened pull request #27685: doc: Rework build-unix.md (master...2305-doc-unix-) https://github.com/bitcoin/bitcoin/pull/27685 04:41 -!- flooded is now known as _flood 04:42 < fjahr> josie: did you check if it's using the right datadir? 04:44 -!- AaronvanW [~AaronvanW@user/AaronvanW] has joined #bitcoin-core-dev 04:45 -!- brunoerg [~brunoerg@187.183.43.117] has joined #bitcoin-core-dev 04:49 -!- brunoerg [~brunoerg@187.183.43.117] has quit [Ping timeout: 240 seconds] 04:54 < josie> fjahr: yeah, I think I figured it out: the issue I was troubleshooting was somehow corrupting the chainstate/blk files when triggered. I tested this by triggering the error in gdb, exiting, and then restarting the node and confirming that it went into IBD again. restarting the node with -reindex and then running in gdb worked (e.g did not do IBD again) 04:54 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 04:56 < fanquake> Why is the MSVC build still failing in new PRs 04:57 < fanquake> i.e in #27685. Which has the supposed fix from https://github.com/bitcoin-core/gui/pull/729 04:57 <@gribble> https://github.com/bitcoin/bitcoin/issues/27685 | doc: Rework build-unix.md by MarcoFalke · Pull Request #27685 · bitcoin/bitcoin · GitHub 05:06 < bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/a75c77ea903c...4c3d67a2d0d9 05:06 < bitcoin-git> bitcoin/master ddddf49 MarcoFalke: ci: Run iwyu on all src files 05:06 < bitcoin-git> bitcoin/master 4c3d67a fanquake: Merge bitcoin/bitcoin#27571: ci: Run iwyu on all src files 05:06 < bitcoin-git> [bitcoin] fanquake merged pull request #27571: ci: Run iwyu on all src files (master...2305-ci-iwyu-) https://github.com/bitcoin/bitcoin/pull/27571 05:08 < bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/4c3d67a2d0d9...594f05db19fa 05:08 < bitcoin-git> bitcoin/master a09269a fanquake: guix: document when certain guix patches can be dropped 05:08 < bitcoin-git> bitcoin/master 594f05d fanquake: Merge bitcoin/bitcoin#27668: guix: document when certain patches can be dr... 05:08 < bitcoin-git> [bitcoin] fanquake merged pull request #27668: guix: document when certain patches can be dropped (master...guix_patch_doc) https://github.com/bitcoin/bitcoin/pull/27668 05:11 < bitcoin-git> [bitcoin] fanquake opened pull request #27686: [25.x] Changes for rc3 || finalize (25.x...v25.0_finalize) https://github.com/bitcoin/bitcoin/pull/27686 05:12 < fanquake> Does anyone have backport candiates for 25.0rc3? If yes, leave a comment in #27686 05:12 <@gribble> https://github.com/bitcoin/bitcoin/issues/27686 | [25.x] Changes for rc3 || finalize by fanquake · Pull Request #27686 · bitcoin/bitcoin · GitHub 05:16 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Remote host closed the connection] 05:16 -!- brunoerg [~brunoerg@187.183.43.117] has joined #bitcoin-core-dev 05:26 -!- AaronvanW [~AaronvanW@user/AaronvanW] has quit [Remote host closed the connection] 05:32 -!- AlexWiederin [~AlexWiede@146.70.179.101] has joined #bitcoin-core-dev 05:40 < bitcoin-git> [bitcoin] hebasto opened pull request #27687: msvc: Provide `ObjectFileName` explicitly (master...230517-object) https://github.com/bitcoin/bitcoin/pull/27687 05:45 -!- bugs_ [~bugs@user/bugs/x-5128603] has joined #bitcoin-core-dev 05:47 -!- flooded [~flooded@149.102.226.226] has joined #bitcoin-core-dev 05:48 -!- vasild [~vd@user/vasild] has quit [Remote host closed the connection] 05:51 -!- _flood [flooded@gateway/vpn/protonvpn/flood/x-43489060] has quit [Ping timeout: 256 seconds] 05:57 -!- alex-wiederin [~xyz@146.70.179.101] has joined #bitcoin-core-dev 05:58 -!- vasild [~vd@user/vasild] has joined #bitcoin-core-dev 05:59 -!- AlexWiederin [~AlexWiede@146.70.179.101] has quit [Quit: Client closed] 06:02 -!- alex-wiederin is now known as AlexWiederin 06:14 -!- kallewoof [~quassel@user/kallewoof] has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.] 06:15 -!- kalle [~quassel@user/kallewoof] has joined #bitcoin-core-dev 06:19 -!- AlexWiederin [~xyz@146.70.179.101] has quit [Ping timeout: 240 seconds] 06:25 -!- kalle [~quassel@user/kallewoof] has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.] 06:26 -!- nanotube [~nanotube@user/nanotube] has joined #bitcoin-core-dev 06:27 -!- kalle [~quassel@user/kallewoof] has joined #bitcoin-core-dev 06:47 < bitcoin-git> [bitcoin] fanquake opened pull request #27688: doc: remove Security section from build-unix.md (master...build_unix_drop_security) https://github.com/bitcoin/bitcoin/pull/27688 06:52 -!- nanotube [~nanotube@user/nanotube] has quit [Ping timeout: 268 seconds] 06:57 < stickies-v> could someone please grant https://github.com/ismaelsadeeq write access to the bitcoin-dev wiki please? he's working on the v25RC (or final, if already released at that point) testing guide and will be ready to add it soon 06:59 < fanquake> stickies-v: invited 07:00 < stickies-v> ty 07:04 < bitcoin-git> [bitcoin] fanquake opened pull request #27689: doc: remove mention of glibc 2.10+ (master...remove_glibc_vesion_malloc_info) https://github.com/bitcoin/bitcoin/pull/27689 07:05 -!- nanotube [~nanotube@user/nanotube] has joined #bitcoin-core-dev 07:06 -!- bitdex_ [~bitdex@gateway/tor-sasl/bitdex] has quit [Quit: = ""] 07:20 < bitcoin-git> [bitcoin] MarcoFalke opened pull request #27690: ci: Use credits for ARM task (master...2305-ci-arm-credits-) https://github.com/bitcoin/bitcoin/pull/27690 07:29 -!- alex-wiederin [~xyz@146.70.179.101] has joined #bitcoin-core-dev 07:29 -!- alex-wiederin [~xyz@146.70.179.101] has quit [Client Quit] 07:34 -!- SpellChecker_ [~SpellChec@user/SpellChecker] has quit [Remote host closed the connection] 07:35 -!- SpellChecker [~SpellChec@user/SpellChecker] has joined #bitcoin-core-dev 07:42 < bitcoin-git> [bitcoin] hebasto closed pull request #27084: ci: A few fixes of `ccache` issues (master...230211-cccc) https://github.com/bitcoin/bitcoin/pull/27084 07:42 -!- TallTim [~talltim@184-83-250-114-static.midco.net] has quit [Ping timeout: 246 seconds] 07:46 -!- TallTim [~talltim@184-83-250-114-static.midco.net] has joined #bitcoin-core-dev 07:46 -!- Guyver2 [~Guyver@77-174-98-73.fixed.kpn.net] has joined #bitcoin-core-dev 08:00 < bitcoin-git> [bitcoin] fanquake closed pull request #27671: depends: Boost 1.82.0 (master...boost_1_82_0) https://github.com/bitcoin/bitcoin/pull/27671 08:03 < bitcoin-git> [bitcoin] fanquake closed pull request #25908: p2p: remove adjusted time (master...remove_adjusted_time) https://github.com/bitcoin/bitcoin/pull/25908 08:21 -!- puchka [~puchka@185.203.122.151] has quit [Ping timeout: 240 seconds] 08:47 -!- puchka [~puchka@185.203.122.230] has joined #bitcoin-core-dev 08:52 -!- jarthur_ is now known as jarthur 08:55 -!- puchka [~puchka@185.203.122.230] has quit [Ping timeout: 268 seconds] 08:57 -!- puchka [~puchka@185.203.122.230] has joined #bitcoin-core-dev 09:05 -!- stevenwy37 [~stevenwy3@116.206.100.4] has joined #bitcoin-core-dev 09:11 -!- alex-wiederin [~xyz@146.70.179.101] has joined #bitcoin-core-dev 09:23 -!- alex-wiederin [~xyz@146.70.179.101] has quit [Ping timeout: 240 seconds] 09:31 -!- preimage [~halosghos@user/halosghost] has joined #bitcoin-core-dev 09:39 -!- alex-wiederin [~xyz@146.70.179.101] has joined #bitcoin-core-dev 09:40 -!- alex-wiederin is now known as alex_wiederin 09:41 -!- AaronvanW [~AaronvanW@user/AaronvanW] has joined #bitcoin-core-dev 09:48 -!- AaronvanW [~AaronvanW@user/AaronvanW] has quit [Remote host closed the connection] 10:01 -!- yashraj [yashraj@gateway/vpn/protonvpn/yashraj] has joined #bitcoin-core-dev 10:04 -!- stevenwy37 [~stevenwy3@116.206.100.4] has quit [Remote host closed the connection] 10:07 -!- AbubakarIsmail[m [~abubakars@2001:470:69fc:105::3:5cb4] has joined #bitcoin-core-dev 10:16 -!- Earnestly [~earnest@user/earnestly] has joined #bitcoin-core-dev 10:20 -!- stevenwy37 [~stevenwy3@116.206.100.4] has joined #bitcoin-core-dev 10:21 -!- Talkless [~Talkless@mail.dargis.net] has joined #bitcoin-core-dev 10:22 -!- ___nick___ [~quassel@host86-164-104-11.range86-164.btcentralplus.com] has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.] 10:24 -!- ___nick___ [~quassel@host86-164-104-11.range86-164.btcentralplus.com] has joined #bitcoin-core-dev 10:25 -!- ___nick___ [~quassel@host86-164-104-11.range86-164.btcentralplus.com] has quit [Client Quit] 10:27 -!- ___nick___ [~quassel@host86-164-104-11.range86-164.btcentralplus.com] has joined #bitcoin-core-dev 10:27 < bitcoin-git> [bitcoin] ryanofsky pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/594f05db19fa...4e8a7654f623 10:27 < bitcoin-git> bitcoin/master 60bec3c Martin Zumsande: index: Use first block from locator instead of looking for fork point 10:27 < bitcoin-git> bitcoin/master 97844d9 Martin Zumsande: index: Enable reindex-chainstate with active indexes 10:28 < bitcoin-git> bitcoin/master 4e8a765 Ryan Ofsky: Merge bitcoin/bitcoin#25193: indexes: Read the locator's top block during ... 10:28 < bitcoin-git> [bitcoin] ryanofsky merged pull request #25193: indexes: Read the locator's top block during init, allow interaction with reindex-chainstate (master...202205_index_allow_reindex_chainstate) https://github.com/bitcoin/bitcoin/pull/25193 10:28 < pinheadmz> yay ryanofsky first merge ? 10:28 < ryanofsky> ya 10:29 < ryanofsky> achow101, I got "ERROR: Permission to bitcoin-core/gui.git denied to ryanofsky." 10:30 < achow101> whoops, forgot that's a different org. should be able to push there now 10:33 < ryanofsky> Thanks, that worked 10:34 -!- Guyver2 [~Guyver@77-174-98-73.fixed.kpn.net] has left #bitcoin-core-dev [Closing Window] 10:47 -!- stevenwy37 [~stevenwy3@116.206.100.4] has quit [Quit: Leaving...] 11:06 -!- alex_wiederin [~xyz@146.70.179.101] has quit [Quit: WeeChat 3.8] 11:10 -!- alex-wiederin [~xyz@146.70.179.101] has joined #bitcoin-core-dev 11:11 -!- alex-wiederin [~xyz@146.70.179.101] has quit [Client Quit] 11:17 -!- amirreza91 [~amirreza@104.168.64.220] has joined #bitcoin-core-dev 11:18 < cfields> \o/ 11:19 -!- amirreza91 [~amirreza@104.168.64.220] has quit [Client Quit] 11:45 -!- yashraj [yashraj@gateway/vpn/protonvpn/yashraj] has quit [] 11:48 -!- b_101 [~robert@185.242.5.35] has quit [Ping timeout: 240 seconds] 11:53 -!- ___nick___ [~quassel@host86-164-104-11.range86-164.btcentralplus.com] has quit [Ping timeout: 240 seconds] 12:07 -!- pinheadmz[m] [~pinheadmz@2001:470:69fc:105::fe40] has joined #bitcoin-core-dev 12:19 -!- mudsip [~mudsip@user/mudsip] has joined #bitcoin-core-dev 12:20 -!- alex-wiederin [~alex@146.70.179.101] has joined #bitcoin-core-dev 12:21 -!- alex-wiederin [~alex@146.70.179.101] has quit [Client Quit] 12:21 -!- freesprung [~freesprun@user/freesprung] has joined #bitcoin-core-dev 12:26 -!- freesprung [~freesprun@user/freesprung] has quit [Ping timeout: 256 seconds] 12:47 -!- puchka [~puchka@185.203.122.230] has quit [Ping timeout: 240 seconds] 13:04 -!- Talkless [~Talkless@mail.dargis.net] has quit [Quit: Konversation terminated!] 13:12 -!- mudsip [~mudsip@user/mudsip] has quit [] 13:36 < glozow> \o/ 13:37 < darosior> :) 13:52 -!- vysn [~vysn@user/vysn] has quit [Remote host closed the connection] 14:02 -!- evri [~vytautas@46.36.65.17] has quit [Ping timeout: 240 seconds] 14:32 -!- b_101 [~robert@185.242.5.35] has joined #bitcoin-core-dev 14:47 -!- abubakarsadiq [~abubakars@102.91.4.76] has joined #bitcoin-core-dev 14:52 -!- b_101 [~robert@185.242.5.35] has quit [Ping timeout: 240 seconds] 15:11 -!- bugs_ [~bugs@user/bugs/x-5128603] has quit [Quit: Leaving] 15:28 -!- abubakarsadiq_ [~abubakars@197.210.70.182] has joined #bitcoin-core-dev 15:28 -!- abubakarsadiq [~abubakars@102.91.4.76] has quit [Quit: Lost terminal] 15:37 -!- abubakarsadiq_ [~abubakars@197.210.70.182] has quit [Quit: Konversation terminated!] 15:54 -!- abubakarsadiq [~abubakars@197.210.71.65] has joined #bitcoin-core-dev 15:59 -!- Earnestly [~earnest@user/earnestly] has quit [Ping timeout: 265 seconds] 16:02 -!- abubakarsadiq [~abubakars@197.210.71.65] has quit [Quit: Konversation terminated!] 16:03 -!- abubakarsadiq [~abubakars@102.91.5.244] has joined #bitcoin-core-dev 16:16 -!- abubakarsadiq [~abubakars@102.91.5.244] has quit [Quit: Konversation terminated!] 16:16 -!- abubakarsadiq [~abubakars@197.210.70.182] has joined #bitcoin-core-dev 16:25 -!- vysn [~vysn@user/vysn] has joined #bitcoin-core-dev 16:58 -!- abubakarsadiq [~abubakars@197.210.70.182] has quit [Quit: Konversation terminated!] 16:59 -!- Guest40 [~Guest40@2a02:14f:1f7:928d:c847:a8b7:c870:4735] has joined #bitcoin-core-dev 17:00 -!- Guest40 [~Guest40@2a02:14f:1f7:928d:c847:a8b7:c870:4735] has quit [Client Quit] 17:10 -!- b_101 [~robert@189.236.24.221] has joined #bitcoin-core-dev 17:26 -!- jarthur [~jarthur@user/jarthur] has quit [Quit: jarthur] 17:44 -!- Guest30 [~Guest30@130.43.176.136] has joined #bitcoin-core-dev 17:44 -!- Guest30 [~Guest30@130.43.176.136] has quit [Client Quit] 17:52 -!- brunoerg [~brunoerg@187.183.43.117] has quit [Remote host closed the connection] 17:57 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 18:01 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 264 seconds] 18:24 -!- test__ [~flooded@89.45.4.3] has joined #bitcoin-core-dev 18:27 -!- flooded [~flooded@149.102.226.226] has quit [Ping timeout: 265 seconds] 18:31 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 18:42 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 264 seconds] 19:11 -!- brunoerg [~brunoerg@187.183.43.117] has joined #bitcoin-core-dev 19:13 -!- preimage [~halosghos@user/halosghost] has quit [Quit: WeeChat 3.8] 19:16 -!- brunoerg [~brunoerg@187.183.43.117] has quit [Ping timeout: 240 seconds] 19:33 -!- jarthur [~jarthur@user/jarthur] has joined #bitcoin-core-dev 19:35 -!- vyHamii [~vyHamii@113.190.246.18] has joined #bitcoin-core-dev 19:37 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev 19:39 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 19:44 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 265 seconds] 19:50 -!- brunoerg [~brunoerg@187.183.43.117] has joined #bitcoin-core-dev 19:55 -!- brunoerg [~brunoerg@187.183.43.117] has quit [Ping timeout: 264 seconds] 20:16 -!- yanmaani2 [~yanmaani@gateway/tor-sasl/yanmaani] has quit [Remote host closed the connection] 20:16 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Remote host closed the connection] 20:17 -!- yanmaani2 [~yanmaani@gateway/tor-sasl/yanmaani] has joined #bitcoin-core-dev 20:17 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev 20:25 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 20:29 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 240 seconds] 20:30 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 20:35 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 240 seconds] 20:38 -!- nulldoot2k_ [~vyHamii@113.190.246.18] has joined #bitcoin-core-dev 20:40 -!- vyHamii [~vyHamii@113.190.246.18] has quit [Ping timeout: 240 seconds] 20:52 -!- brunoerg [~brunoerg@187.183.43.117] has joined #bitcoin-core-dev 20:57 -!- brunoerg [~brunoerg@187.183.43.117] has quit [Ping timeout: 240 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:10 -!- yanmaani2 [~yanmaani@gateway/tor-sasl/yanmaani] has quit [Ping timeout: 240 seconds] 21:14 -!- brunoerg [~brunoerg@187.183.43.117] has joined #bitcoin-core-dev 21:19 -!- brunoerg [~brunoerg@187.183.43.117] has quit [Ping timeout: 256 seconds] 21:24 -!- yanmaani2 [~yanmaani@gateway/tor-sasl/yanmaani] has joined #bitcoin-core-dev 21:33 -!- flooded [~flooded@146.70.202.99] has joined #bitcoin-core-dev 21:36 -!- evri [~vytautas@46.36.65.17] has joined #bitcoin-core-dev 21:37 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 21:37 -!- test__ [~flooded@89.45.4.3] has quit [Ping timeout: 268 seconds] 21:42 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 264 seconds] 21:43 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 21:48 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 265 seconds] 21:48 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 21:53 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 264 seconds] 21:54 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 21:55 -!- PaperSword [~Thunderbi@securemail.qrsnap.io] has quit [Quit: PaperSword] 21:56 -!- PaperSword [~Thunderbi@securemail.qrsnap.io] has joined #bitcoin-core-dev 21:59 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 265 seconds] 22:11 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 22:15 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 246 seconds] 22:22 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 22:27 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 264 seconds] 22:38 -!- puchka [~puchka@185.203.122.231] has joined #bitcoin-core-dev 22:49 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has joined #bitcoin-core-dev 22:54 -!- brunoerg [~brunoerg@2804:14c:3bfb:8a:189e:23c6:5ab3:887] has quit [Ping timeout: 240 seconds] 23:26 -!- Guest41 [~Guest41@138.199.6.226] has joined #bitcoin-core-dev 23:27 -!- Guest41 [~Guest41@138.199.6.226] has quit [Client Quit] 23:31 -!- jarthur [~jarthur@user/jarthur] has quit [Ping timeout: 250 seconds] 23:32 -!- elichai2 [sid212594@id-212594.hampstead.irccloud.com] has quit [Ping timeout: 250 seconds] 23:35 -!- jarthur [~jarthur@user/jarthur] has joined #bitcoin-core-dev 23:35 -!- elichai2 [sid212594@id-212594.hampstead.irccloud.com] has joined #bitcoin-core-dev 23:40 -!- jarthur_ [~jarthur@user/jarthur] has joined #bitcoin-core-dev 23:41 -!- elichai2 [sid212594@id-212594.hampstead.irccloud.com] has quit [Ping timeout: 250 seconds] 23:41 -!- jarthur [~jarthur@user/jarthur] has quit [Ping timeout: 250 seconds] 23:42 -!- elichai2 [sid212594@id-212594.hampstead.irccloud.com] has joined #bitcoin-core-dev --- Log closed Thu May 18 00:00:04 2023