12024-01-24T00:01:22  *** vasild <vasild!~vd@user/vasild> has quit IRC (Remote host closed the connection)
  22024-01-24T00:01:39  *** vasild <vasild!~vd@user/vasild> has joined #bitcoin-core-dev
  32024-01-24T00:05:06  *** PaperSword <PaperSword!~Thunderbi@securemail.qrsnap.io> has quit IRC (Quit: PaperSword)
  42024-01-24T00:05:50  <bitcoin-git> [bitcoin] furszy opened pull request #29301: init: settings, do not load auto-generated warning msg (master...2024_settings_dont_load_warning_msg) https://github.com/bitcoin/bitcoin/pull/29301
  52024-01-24T00:28:08  <sdaftuar> glozow: i spent some time trying to rework the testmempoolaccept() behavior, so that we would first cluster the transactions into connected components, and then iteratively invoke either AcceptMultipleTransactions or AcceptPackage on each cluster.
  62024-01-24T00:28:44  <sdaftuar> I discovered that this is thornier than I thought!  The code to do the clustering is simple, but after looking at tests that fail I realize that the behavior we're looking for is possibly not what I initially thought
  72024-01-24T00:30:59  *** AaronvanW <AaronvanW!~AaronvanW@user/AaronvanW> has joined #bitcoin-core-dev
  82024-01-24T00:31:14  <sdaftuar> it seems to me that the use case we're trying to meet with testmempoolaccept(tx1,..., txN) is to answer the question of whether the mempool would accept all of those transactions if we submitted them (one by one?)
  92024-01-24T00:31:51  <sdaftuar> and by grouping them into separate clusters for processing, we answer a different question, of whether each connected component of (tx1, ..., txN) would be accepted
 102024-01-24T00:32:00  <sdaftuar> and those are really answering different questions...
 112024-01-24T00:32:54  <sdaftuar> interestingly, i think this question may get easier to answer in a cluster mempool world (it's very similar to what we have to do when evaluating an RBF, I think), so now I'm reluctant to suggest "breaking" the behavior we have now (even though i think it would make the rest of the v3 implementation simpler)
 122024-01-24T00:36:35  *** AaronvanW <AaronvanW!~AaronvanW@user/AaronvanW> has quit IRC (Ping timeout: 264 seconds)
 132024-01-24T00:39:30  *** Guest84 <Guest84!~Guest84@2607:fb91:1924:a9d:452b:670d:4ce6:4e3f> has joined #bitcoin-core-dev
 142024-01-24T00:41:00  <bitcoin-git> [bitcoin] marcofleon opened pull request #29302: wallet: clarify replaced_by_txid and replaces_txid in help output (master...2024/01/clarify-documentation) https://github.com/bitcoin/bitcoin/pull/29302
 152024-01-24T01:03:09  *** Guest84 <Guest84!~Guest84@2607:fb91:1924:a9d:452b:670d:4ce6:4e3f> has quit IRC (Quit: Client closed)
 162024-01-24T01:53:05  *** bitdex <bitdex!~bitdex@gateway/tor-sasl/bitdex> has joined #bitcoin-core-dev
 172024-01-24T02:04:19  *** bitdex <bitdex!~bitdex@gateway/tor-sasl/bitdex> has quit IRC (Quit: = "")
 182024-01-24T02:18:38  *** metta <metta!~Advanced@2a01:4f8:1c0c:49df::1> has quit IRC ()
 192024-01-24T02:18:49  *** upekkha <upekkha!~Advanced@2a01:4f8:1c0c:49df::1> has joined #bitcoin-core-dev
 202024-01-24T02:53:12  *** pablomartin4btc <pablomartin4btc!~pablomart@193.160.245.52> has quit IRC (Remote host closed the connection)
 212024-01-24T03:38:31  *** AaronvanW <AaronvanW!~AaronvanW@user/AaronvanW> has joined #bitcoin-core-dev
 222024-01-24T04:08:13  *** AaronvanW <AaronvanW!~AaronvanW@user/AaronvanW> has quit IRC (Ping timeout: 264 seconds)
 232024-01-24T05:01:01  *** cmirror <cmirror!~cmirror@4.53.92.114> has quit IRC (Remote host closed the connection)
 242024-01-24T05:01:33  *** cmirror <cmirror!~cmirror@4.53.92.114> has joined #bitcoin-core-dev
 252024-01-24T05:17:05  *** jarthur <jarthur!~jarthur@user/jarthur> has quit IRC (Quit: jarthur)
 262024-01-24T05:17:29  *** zato <zato!~zato@user/zato> has joined #bitcoin-core-dev
 272024-01-24T05:40:08  *** AaronvanW <AaronvanW!~AaronvanW@user/AaronvanW> has joined #bitcoin-core-dev
 282024-01-24T05:51:12  *** Calabrese <Calabrese!~Calabrese@189.178.105.218> has quit IRC (Quit: Client closed)
 292024-01-24T06:07:45  *** vysn <vysn!~vysn@user/vysn> has joined #bitcoin-core-dev
 302024-01-24T06:12:46  *** AaronvanW <AaronvanW!~AaronvanW@user/AaronvanW> has quit IRC (Ping timeout: 276 seconds)
 312024-01-24T07:27:23  *** stmbln <stmbln!~stmbln@178.19.213.182> has joined #bitcoin-core-dev
 322024-01-24T08:10:09  *** AaronvanW <AaronvanW!~AaronvanW@user/AaronvanW> has joined #bitcoin-core-dev
 332024-01-24T08:14:31  *** stmbln <stmbln!~stmbln@178.19.213.182> has left #bitcoin-core-dev
 342024-01-24T08:58:15  *** Guyver2 <Guyver2!~Guyver@77-174-98-73.fixed.kpn.net> has joined #bitcoin-core-dev
 352024-01-24T10:02:14  <glozow> sdaftuar: ah makes sense. I imagine the best way to group the transactions should involve a linearization (e.g. submitting all of them would bust a package limit so put the higher feerate ones first)?
 362024-01-24T10:04:47  <glozow> re: v3 complexity, I don't know how much we'd be able to chop off if we didn't have to deal with multiple connected components. A lot of it is contained within `PackageV3Checks`. We'd still need to be able to see an in-package ancestor's mempool ancestor, so we need to cache it (that's the ugliest part imo).
 372024-01-24T10:57:15  <bitcoin-git> [bitcoin] dergoegge opened pull request #29304: fuzz: Exit and log stdout for parse_test_list errors (master...2024-01-fuzz-list-errs) https://github.com/bitcoin/bitcoin/pull/29304
 382024-01-24T11:13:38  *** szkl <szkl!uid110435@id-110435.uxbridge.irccloud.com> has joined #bitcoin-core-dev
 392024-01-24T11:30:41  <bitcoin-git> [qa-assets] dergoegge merged pull request #165: Add fuzz inputs (main...2024-01-inputs) https://github.com/bitcoin-core/qa-assets/pull/165
 402024-01-24T11:30:47  <bitcoin-git> [qa-assets] dergoegge pushed 2 commits to main: https://github.com/bitcoin-core/qa-assets/compare/0745c8615dff...f468c477b88c
 412024-01-24T11:30:48  <bitcoin-git> qa-assets/main 79be7ff dergoegge: Add fuzz inputs
 422024-01-24T11:30:48  <bitcoin-git> qa-assets/main f468c47 Niklas Gögge: Merge pull request #165 from dergoegge/2024-01-inputs
 432024-01-24T12:20:35  *** jon_atack <jon_atack!~jonatack@user/jonatack> has joined #bitcoin-core-dev
 442024-01-24T12:22:01  *** jonatack <jonatack!~jonatack@user/jonatack> has quit IRC (Ping timeout: 264 seconds)
 452024-01-24T12:23:02  <instagibbs> Murch[m] this is the real mystery for me: https://github.com/bitcoin/bitcoin/pull/29264#discussion_r1463935963 adding the error string causes other coin selection routines to fail in rpc_psbt.py. something about how coin selection handles errors with and without error strings
 462024-01-24T12:23:22  <instagibbs> would appreciate a coin selection sleuth to tell me what to do
 472024-01-24T12:26:55  *** qxs <qxs!~qxs@gateway/tor-sasl/qxs> has quit IRC (Ping timeout: 240 seconds)
 482024-01-24T12:28:07  *** qxs <qxs!~qxs@gateway/tor-sasl/qxs> has joined #bitcoin-core-dev
 492024-01-24T12:29:32  *** puchka <puchka!~puchka@185.203.122.133> has quit IRC (Ping timeout: 256 seconds)
 502024-01-24T13:31:32  *** szkl <szkl!uid110435@id-110435.uxbridge.irccloud.com> has quit IRC (Quit: Connection closed for inactivity)
 512024-01-24T13:43:56  *** jonatack <jonatack!~jonatack@user/jonatack> has joined #bitcoin-core-dev
 522024-01-24T13:44:31  *** SpellChecker <SpellChecker!~SpellChec@user/SpellChecker> has quit IRC (Ping timeout: 240 seconds)
 532024-01-24T13:44:52  *** jon_atack <jon_atack!~jonatack@user/jonatack> has quit IRC (Ping timeout: 255 seconds)
 542024-01-24T13:56:07  *** ghost43_ <ghost43_!~ghost43@gateway/tor-sasl/ghost43> has joined #bitcoin-core-dev
 552024-01-24T13:56:25  *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has quit IRC (Quit: Leaving)
 562024-01-24T14:02:35  *** ghost43_ <ghost43_!~ghost43@gateway/tor-sasl/ghost43> has quit IRC (Remote host closed the connection)
 572024-01-24T14:03:00  *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has joined #bitcoin-core-dev
 582024-01-24T14:04:47  *** puchka <puchka!~puchka@185.203.122.136> has joined #bitcoin-core-dev
 592024-01-24T14:15:39  *** PaperSword <PaperSword!~Thunderbi@securemail.qrsnap.io> has joined #bitcoin-core-dev
 602024-01-24T14:18:46  <bitcoin-git> [bitcoin] dergoegge opened pull request #29305: fuzz: Use FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION for pow checks (master...2024-01-fuzz-unsafe-pow) https://github.com/bitcoin/bitcoin/pull/29305
 612024-01-24T14:25:11  *** SpellChecker <SpellChecker!~SpellChec@user/SpellChecker> has joined #bitcoin-core-dev
 622024-01-24T14:30:23  <bitcoin-git> [bitcoin] glozow opened pull request #29306: policy: enable sibling eviction for v3 transactions (master...2024-01-sibling-eviction) https://github.com/bitcoin/bitcoin/pull/29306
 632024-01-24T14:32:54  *** qxs <qxs!~qxs@gateway/tor-sasl/qxs> has quit IRC (Remote host closed the connection)
 642024-01-24T14:33:31  *** qxs <qxs!~qxs@gateway/tor-sasl/qxs> has joined #bitcoin-core-dev
 652024-01-24T14:35:39  <bitcoin-git> [bitcoin] vasild opened pull request #29307: util: check for errors after close and read in AutoFile (master...AutoFile_error_check) https://github.com/bitcoin/bitcoin/pull/29307
 662024-01-24T14:38:46  *** zato <zato!~zato@user/zato> has quit IRC (Ping timeout: 256 seconds)
 672024-01-24T14:42:27  *** zato <zato!~zato@user/zato> has joined #bitcoin-core-dev
 682024-01-24T14:46:13  *** jonatack <jonatack!~jonatack@user/jonatack> has quit IRC (Ping timeout: 256 seconds)
 692024-01-24T14:58:02  <sdaftuar> glozow: PackageV3Checks was the thing that I found to be pretty complex :)  Reviewing it now though with a better understanding of what the use case is for testmempoolaccept
 702024-01-24T14:59:00  <sdaftuar> one question occurs to me as I read the code: if A is a v3 transaction, with 2 child v3 transactions (B, C), and A is in the mempool, and we call testmempoolaccept(B, C), it should fail right?  I'm struggling to see what check would catch that.
 712024-01-24T15:00:37  <instagibbs> each individually would work.... hard to say heh
 722024-01-24T15:00:56  <instagibbs> testmempoolaccept stuff is a bit of a philosophical rabbit hole imo
 732024-01-24T15:01:38  <sdaftuar> right now i'm feeling pretty far into the anti-testmempoolaccept camp :)
 742024-01-24T15:01:49  <instagibbs> :)
 752024-01-24T15:03:28  <instagibbs> I had an alternative idea that I think I linked to many pages of comments back, glozow in case you recall?
 762024-01-24T15:13:22  <instagibbs> as much as I enjoy 100 pages of LN spec discussion...
 772024-01-24T15:14:30  <bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/e69796c79c0a...ea4ddd8652d9
 782024-01-24T15:14:31  <bitcoin-git> bitcoin/master 9d09c87 dergoegge: fuzz: Exit and log stderr for parse_test_list errors
 792024-01-24T15:14:31  <bitcoin-git> bitcoin/master ea4ddd8 fanquake: Merge bitcoin/bitcoin#29304: fuzz: Exit and log stderr for parse_test_list...
 802024-01-24T15:14:37  <bitcoin-git> [bitcoin] fanquake merged pull request #29304: fuzz: Exit and log stderr for parse_test_list errors (master...2024-01-fuzz-list-errs) https://github.com/bitcoin/bitcoin/pull/29304
 812024-01-24T15:20:44  <sdaftuar> glozow: instagibbs: ah, i guess this is indeed a "bug" if we think that testmempoolaccept should return failure in that case (https://paste.ec/paste/YdtPxQbC#ta7ZisfkoZI4fiTZen5r5Cp1Qn8-gUxflUvf7grC6bQ)
 822024-01-24T15:21:17  <instagibbs> does that test pass or fail currently :)
 832024-01-24T15:22:09  <sdaftuar> if you run the test, it will say all tests pass, but the test is broken -- i assert that the 2 v3 children get accepted.
 842024-01-24T15:22:22  *** Guyver2 <Guyver2!~Guyver@77-174-98-73.fixed.kpn.net> has left #bitcoin-core-dev (Closing Window)
 852024-01-24T15:23:33  <sdaftuar> overall it seems to me like testmempoolaccept is trying to do something that is currently way too hard, so i don't think i mind that this is broken, but probably worth documenting its limitations?
 862024-01-24T15:28:45  <instagibbs> there's a lot of caveats to what it does vs say test package evaluation, would be nice to be documented either way
 872024-01-24T15:31:27  *** abubakarsadiq <abubakarsadiq!uid602234@id-602234.hampstead.irccloud.com> has joined #bitcoin-core-dev
 882024-01-24T15:34:06  *** AaronvanW <AaronvanW!~AaronvanW@user/AaronvanW> has quit IRC (Remote host closed the connection)
 892024-01-24T15:34:18  <bitcoin-git> [bitcoin] ismaelsadeeq opened pull request #29308: doc: clarify that `BroadcastTransaction` comment (master...01-2024-clarify-BroadcastTransaction-comment) https://github.com/bitcoin/bitcoin/pull/29308
 902024-01-24T15:37:38  *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has quit IRC (Remote host closed the connection)
 912024-01-24T15:37:54  *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has joined #bitcoin-core-dev
 922024-01-24T15:57:16  <bitcoin-git> [bitcoin] dergoegge closed pull request #29305: fuzz: Use FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION for pow checks (master...2024-01-fuzz-unsafe-pow) https://github.com/bitcoin/bitcoin/pull/29305
 932024-01-24T16:05:10  *** AaronvanW <AaronvanW!~AaronvanW@user/AaronvanW> has joined #bitcoin-core-dev
 942024-01-24T16:09:31  *** AaronvanW <AaronvanW!~AaronvanW@user/AaronvanW> has quit IRC (Ping timeout: 246 seconds)
 952024-01-24T16:27:40  *** puchka <puchka!~puchka@185.203.122.136> has quit IRC (Ping timeout: 276 seconds)
 962024-01-24T16:29:19  *** qxs <qxs!~qxs@gateway/tor-sasl/qxs> has quit IRC (Ping timeout: 240 seconds)
 972024-01-24T16:29:19  *** vasild <vasild!~vd@user/vasild> has quit IRC (Ping timeout: 240 seconds)
 982024-01-24T16:31:31  *** vasild <vasild!~vd@user/vasild> has joined #bitcoin-core-dev
 992024-01-24T16:32:03  *** qxs <qxs!~qxs@gateway/tor-sasl/qxs> has joined #bitcoin-core-dev
1002024-01-24T16:52:36  *** preimage <preimage!~halosghos@user/halosghost> has joined #bitcoin-core-dev
1012024-01-24T17:00:37  *** vasild <vasild!~vd@user/vasild> has quit IRC (Remote host closed the connection)
1022024-01-24T17:00:37  *** qxs <qxs!~qxs@gateway/tor-sasl/qxs> has quit IRC (Remote host closed the connection)
1032024-01-24T17:00:53  *** vasild <vasild!~vd@user/vasild> has joined #bitcoin-core-dev
1042024-01-24T17:01:10  *** qxs <qxs!~qxs@gateway/tor-sasl/qxs> has joined #bitcoin-core-dev
1052024-01-24T17:02:56  *** vasild <vasild!~vd@user/vasild> has quit IRC (Remote host closed the connection)
1062024-01-24T17:05:56  *** vasild <vasild!~vd@user/vasild> has joined #bitcoin-core-dev
1072024-01-24T17:05:56  *** vasild <vasild!~vd@user/vasild> has quit IRC (Client Quit)
1082024-01-24T17:06:13  *** vasild <vasild!~vd@user/vasild> has joined #bitcoin-core-dev
1092024-01-24T17:09:41  <glozow> sdaftuar: ooh good catch!
1102024-01-24T17:09:55  *** jonatack <jonatack!~jonatack@user/jonatack> has joined #bitcoin-core-dev
1112024-01-24T17:13:53  *** bugs_ <bugs_!~bugs@user/bugs/x-5128603> has joined #bitcoin-core-dev
1122024-01-24T17:15:55  <glozow> Maybe requiring testmempoolaccept be 1 connected component (but still simulating a 1 by 1 submission) solve this? Though that might be more trouble than it's worth as well. testmempoolaccept has some other documented shortcomings like sometimes overestimating ancestor/descendant limits and not doing cpfp carve out. So maybe it's fine.
1132024-01-24T17:41:15  *** AaronvanW <AaronvanW!~AaronvanW@user/AaronvanW> has joined #bitcoin-core-dev
1142024-01-24T17:47:14  *** ___nick___ <___nick___!~quassel@host86-130-0-114.range86-130.btcentralplus.com> has joined #bitcoin-core-dev
1152024-01-24T17:48:30  *** jespada <jespada!~jespada@cpc121308-nmal25-2-0-cust15.19-2.cable.virginm.net> has quit IRC (Quit: Textual IRC Client: www.textualapp.com)
1162024-01-24T17:51:14  *** Peter59 <Peter59!~Peter@p200300c2a73cbe0055ef90dbd6fca9f0.dip0.t-ipconnect.de> has joined #bitcoin-core-dev
1172024-01-24T17:54:36  *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has quit IRC (Remote host closed the connection)
1182024-01-24T17:54:36  *** vasild <vasild!~vd@user/vasild> has quit IRC (Remote host closed the connection)
1192024-01-24T17:54:52  *** vasild <vasild!~vd@user/vasild> has joined #bitcoin-core-dev
1202024-01-24T17:55:01  *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has joined #bitcoin-core-dev
1212024-01-24T17:58:07  *** Peter59 <Peter59!~Peter@p200300c2a73cbe0055ef90dbd6fca9f0.dip0.t-ipconnect.de> has quit IRC (Quit: Client closed)
1222024-01-24T18:03:32  *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has quit IRC (Remote host closed the connection)
1232024-01-24T18:04:42  *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has joined #bitcoin-core-dev
1242024-01-24T18:04:58  <bitcoin-git> [bitcoin] achow101 pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/ea4ddd8652d9...207220ce8b76
1252024-01-24T18:04:58  <bitcoin-git> bitcoin/master ff54314 marco: wallet: clarify replaced_by_txid and replaces_txid in help output
1262024-01-24T18:04:59  <bitcoin-git> bitcoin/master 207220c Ava Chow: Merge bitcoin/bitcoin#29302: wallet: clarify replaced_by_txid and replaces...
1272024-01-24T18:05:05  <bitcoin-git> [bitcoin] achow101 merged pull request #29302: wallet: clarify replaced_by_txid and replaces_txid in help output (master...2024/01/clarify-documentation) https://github.com/bitcoin/bitcoin/pull/29302
1282024-01-24T18:14:11  *** AaronvanW <AaronvanW!~AaronvanW@user/AaronvanW> has quit IRC (Ping timeout: 256 seconds)
1292024-01-24T18:14:55  *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has quit IRC (Ping timeout: 240 seconds)
1302024-01-24T18:23:43  *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has joined #bitcoin-core-dev
1312024-01-24T18:25:13  *** Talkless <Talkless!~Talkless@mail.dargis.net> has joined #bitcoin-core-dev
1322024-01-24T18:26:22  *** gracilis <gracilis!gracilis@gateway/vpn/protonvpn/gracilis> has joined #bitcoin-core-dev
1332024-01-24T18:28:48  *** gracilis <gracilis!gracilis@gateway/vpn/protonvpn/gracilis> has quit IRC (Remote host closed the connection)
1342024-01-24T18:30:43  *** qxs <qxs!~qxs@gateway/tor-sasl/qxs> has quit IRC (Remote host closed the connection)
1352024-01-24T18:31:15  *** qxs <qxs!~qxs@gateway/tor-sasl/qxs> has joined #bitcoin-core-dev
1362024-01-24T18:40:45  *** abubakarsadiq <abubakarsadiq!uid602234@id-602234.hampstead.irccloud.com> has quit IRC (Quit: Connection closed for inactivity)
1372024-01-24T18:41:49  *** puchka <puchka!~puchka@185.203.122.131> has joined #bitcoin-core-dev
1382024-01-24T18:48:08  <sdaftuar> glozow: i'm reluctant to propose any changes right now... i think ultimately, it will make sense to push these topology checks / global limit evaluation into the mempool itself. but we can wait until we have a better design in place for the mempool that will make that easier.
1392024-01-24T18:49:15  *** jon_atack <jon_atack!~jonatack@user/jonatack> has joined #bitcoin-core-dev
1402024-01-24T18:51:30  *** jonatack <jonatack!~jonatack@user/jonatack> has quit IRC (Ping timeout: 256 seconds)
1412024-01-24T18:55:07  *** gracilis <gracilis!gracilis@gateway/vpn/protonvpn/gracilis> has joined #bitcoin-core-dev
1422024-01-24T18:55:19  *** gracilis <gracilis!gracilis@gateway/vpn/protonvpn/gracilis> has quit IRC (Remote host closed the connection)
1432024-01-24T19:06:16  *** mudsip <mudsip!~mudsip@user/mudsip> has joined #bitcoin-core-dev
1442024-01-24T19:06:54  *** mudsip <mudsip!~mudsip@user/mudsip> has quit IRC (Client Quit)
1452024-01-24T19:18:27  *** Talkless <Talkless!~Talkless@mail.dargis.net> has quit IRC (Ping timeout: 260 seconds)
1462024-01-24T19:27:19  *** justache <justache!~justache@user/justache> has quit IRC (Read error: Connection reset by peer)
1472024-01-24T19:28:42  *** justache <justache!~justache@user/justache> has joined #bitcoin-core-dev
1482024-01-24T19:41:57  *** zato is now known as ao
1492024-01-24T19:42:08  *** justache <justache!~justache@user/justache> has quit IRC (Read error: Connection reset by peer)
1502024-01-24T19:42:29  *** ao is now known as samurai_
1512024-01-24T19:42:59  *** samurai_ is now known as ichi
1522024-01-24T19:47:40  *** ichi is now known as fufu
1532024-01-24T19:48:11  *** fufu is now known as lo
1542024-01-24T19:49:28  *** justache <justache!~justache@user/justache> has joined #bitcoin-core-dev
1552024-01-24T19:52:37  *** jon_atack <jon_atack!~jonatack@user/jonatack> has quit IRC (Ping timeout: 264 seconds)
1562024-01-24T19:52:41  *** lo is now known as tata
1572024-01-24T19:53:01  *** tata is now known as tat
1582024-01-24T19:54:03  *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has quit IRC (Remote host closed the connection)
1592024-01-24T19:54:09  *** tat is now known as love
1602024-01-24T19:54:22  *** love is now known as water_
1612024-01-24T19:55:47  *** water_ is now known as wind
1622024-01-24T19:56:19  *** wind is now known as earth
1632024-01-24T19:57:30  *** earth is now known as da
1642024-01-24T20:04:06  *** ghost43_ <ghost43_!~ghost43@gateway/tor-sasl/ghost43> has joined #bitcoin-core-dev
1652024-01-24T20:04:22  *** da is now known as zato
1662024-01-24T20:04:31  *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has quit IRC (Ping timeout: 240 seconds)
1672024-01-24T20:11:26  *** AaronvanW <AaronvanW!~AaronvanW@user/AaronvanW> has joined #bitcoin-core-dev
1682024-01-24T20:19:43  *** pablomartin <pablomartin!~pablomart@185.61.158.28> has joined #bitcoin-core-dev
1692024-01-24T20:19:43  *** pablomartin is now known as pablomartin4btc
1702024-01-24T20:26:04  *** zato <zato!~zato@user/zato> has quit IRC (Quit: Om mani padme hum)
1712024-01-24T20:36:31  *** ___nick___ <___nick___!~quassel@host86-130-0-114.range86-130.btcentralplus.com> has quit IRC (Quit: https://quassel-irc.org - Chat comfortably. Anywhere.)
1722024-01-24T20:38:41  *** ___nick___ <___nick___!~quassel@host86-130-0-114.range86-130.btcentralplus.com> has joined #bitcoin-core-dev
1732024-01-24T20:38:48  *** ___nick___ <___nick___!~quassel@host86-130-0-114.range86-130.btcentralplus.com> has quit IRC (Client Quit)
1742024-01-24T20:41:03  *** ___nick___ <___nick___!~quassel@host86-130-0-114.range86-130.btcentralplus.com> has joined #bitcoin-core-dev
1752024-01-24T20:44:13  *** AaronvanW <AaronvanW!~AaronvanW@user/AaronvanW> has quit IRC (Ping timeout: 264 seconds)
1762024-01-24T20:56:56  *** SpellChecker <SpellChecker!~SpellChec@user/SpellChecker> has quit IRC (Remote host closed the connection)
1772024-01-24T20:57:17  *** SpellChecker <SpellChecker!~SpellChec@user/SpellChecker> has joined #bitcoin-core-dev
1782024-01-24T21:04:34  *** ___nick___ <___nick___!~quassel@host86-130-0-114.range86-130.btcentralplus.com> has quit IRC (Ping timeout: 260 seconds)
1792024-01-24T21:12:06  <glozow> sdaftuar: 👍
1802024-01-24T21:25:35  *** Zenton <Zenton!~user@user/zenton> has quit IRC (Ping timeout: 256 seconds)
1812024-01-24T21:31:01  *** vysn <vysn!~vysn@user/vysn> has quit IRC (Remote host closed the connection)
1822024-01-24T21:35:07  *** SpellChecker <SpellChecker!~SpellChec@user/SpellChecker> has quit IRC (Remote host closed the connection)
1832024-01-24T21:35:36  *** SpellChecker <SpellChecker!~SpellChec@user/SpellChecker> has joined #bitcoin-core-dev
1842024-01-24T21:42:55  *** vasild <vasild!~vd@user/vasild> has quit IRC (Ping timeout: 240 seconds)
1852024-01-24T21:43:51  *** SpellChecker <SpellChecker!~SpellChec@user/SpellChecker> has quit IRC (Remote host closed the connection)
1862024-01-24T21:44:15  *** SpellChecker <SpellChecker!~SpellChec@user/SpellChecker> has joined #bitcoin-core-dev
1872024-01-24T21:45:03  *** vasild <vasild!~vd@user/vasild> has joined #bitcoin-core-dev
1882024-01-24T21:52:20  *** vasild <vasild!~vd@user/vasild> has quit IRC (Remote host closed the connection)
1892024-01-24T21:52:44  *** vasild <vasild!~vd@user/vasild> has joined #bitcoin-core-dev
1902024-01-24T22:04:19  *** abubakarsadiq <abubakarsadiq!uid602234@id-602234.hampstead.irccloud.com> has joined #bitcoin-core-dev
1912024-01-24T22:16:15  *** preimage <preimage!~halosghos@user/halosghost> has quit IRC (Ping timeout: 260 seconds)
1922024-01-24T22:32:21  *** jonatack <jonatack!~jonatack@user/jonatack> has joined #bitcoin-core-dev
1932024-01-24T22:39:04  *** jarthur <jarthur!~jarthur@user/jarthur> has joined #bitcoin-core-dev
1942024-01-24T22:41:52  *** AaronvanW <AaronvanW!~AaronvanW@user/AaronvanW> has joined #bitcoin-core-dev
1952024-01-24T23:03:08  *** bugs_ <bugs_!~bugs@user/bugs/x-5128603> has quit IRC (Quit: Leaving)
1962024-01-24T23:14:49  *** AaronvanW <AaronvanW!~AaronvanW@user/AaronvanW> has quit IRC (Ping timeout: 264 seconds)
1972024-01-24T23:51:06  *** brunoerg <brunoerg!~brunoerg@2804:1b3:a000:9f37:39e0:85aa:1f40:ef97> has joined #bitcoin-core-dev
1982024-01-24T23:52:39  *** brunoerg <brunoerg!~brunoerg@2804:1b3:a000:9f37:39e0:85aa:1f40:ef97> has quit IRC (Remote host closed the connection)