12021-10-13T00:00:15  <sipa> which on its turn invokes the normal autogen/configure/make build scripts
  22021-10-13T00:00:34  <sipa> (which again, you can invoke yourself, if you just want to build for development, and that's also what i'd recommend)
  32021-10-13T00:00:45  <fanquake> note that depends itself is also deterministic, just that if you use it locally it's not deterministic against other builders
  42021-10-13T00:00:54  <sipa> ^
  52021-10-13T00:00:55  <davidbak> just curious - are there any discussions anywhere on why the build system is the way it is?
  62021-10-13T00:01:00  <fanquake> due to differing toolchains etc
  72021-10-13T00:01:12  *** jarthur <jarthur!~jarthur@2603-8080-1540-002d-142e-facc-6ddb-8c11.res6.spectrum.com> has joined #bitcoin-core-dev
  82021-10-13T00:01:22  <sipa> guix is _just_ replacing an older system called gitian
  92021-10-13T00:01:40  <sipa> which pretty much was the first thing to even try reproducible building anywhere
 102021-10-13T00:01:46  *** jarthur_ <jarthur_!~jarthur@2603-8080-1540-002d-ad5a-d7d8-86d4-5dd6.res6.spectrum.com> has quit IRC (Ping timeout: 260 seconds)
 112021-10-13T00:02:15  <sipa> for bitcoin core we really want reproducibility, because of the view that maintainers should be trusted the least amount possible
 122021-10-13T00:02:41  <sipa> e.g. no auto-update (because whoever has the keys to push an update could hijact the network's consensus rules, pretty much)
 132021-10-13T00:03:17  <sipa> the reproducibility helps, because it means we can commit to specific published binaries, and anyone can attest to the fact that these binaries indeed correspond to the source code available on github (and mirrors)
 142021-10-13T00:03:52  <sipa> in fact, the release process involves various contributors publishing such GPG attestations
 152021-10-13T00:04:41  <davidbak> well reproducible builds are good for many reasons, bitcoin obviously depends on that for trust (and reliability of the consensus) but over the years there _have_ been other tools developed, that have gained traction in the overall C++ community, that address that well. As a newbie I AM NOT COMING IN AND CRITICIZING or saying "Why aren't you doing thing in this obvious better way, you old fogies!?" - but as a very long
 162021-10-13T00:04:41  <davidbak> time C++ dev with lots of commercial experience yet still not UNIVERSAL development experience I'm always look to learn the pros/cons of different programming styles, software engineering techniques, build systems, etc etc.
 172021-10-13T00:05:03  *** bitdex <bitdex!~bitdex@gateway/tor-sasl/bitdex> has quit IRC (Ping timeout: 276 seconds)
 182021-10-13T00:05:09  <fanquake> reproducibility is also good because the idea that you could end up with two differently functioning monies from the same source code is just nuts
 192021-10-13T00:05:41  <sipa> davidbak: as far as i know, actual reproducible builds in C++ is pretty recent
 202021-10-13T00:06:08  *** bitdex <bitdex!~bitdex@gateway/tor-sasl/bitdex> has joined #bitcoin-core-dev
 212021-10-13T00:06:16  <sipa> until a few years ago, GCC used randomness at compile time; now it exposes a way to set a specific seed for that randomness
 222021-10-13T00:06:40  <gene> was the randomness used for name mangling?
 232021-10-13T00:07:01  <gene> s/was/is
 242021-10-13T00:07:07  <sipa> bitcoin core contributors have contributed patches to various building/system tools to make sure nothing breaks the reproducibility
 252021-10-13T00:07:15  <davidbak> oh yeah, because just to name one thing, compilers/linkers love to insert timestamps into object files and binary executables, but the _goal_ has been around since embedded systems started using C a long long time ago and people addressed it in various ways: locking down toolchains, locking down external libraries, etc. etc. all trying to reach accountability - even if bit-for-bit binary reproducibility wasn't achievable.
 262021-10-13T00:08:15  <davidbak> i do get all this - and plenty of people are working on reproducible builds, not just bitcoin - and it still isn't available out-of-the-box without work
 272021-10-13T00:08:29  <davidbak> but, _because_ there are other people working on it, there are multiple solutions.
 282021-10-13T00:08:42  <sipa> i don't really know of any off the shelf usable ones for us
 292021-10-13T00:09:15  <sipa> i mean, besides just running the build in a fixed container - which is what we used to do with gitian
 302021-10-13T00:09:32  <sipa> but then you get the question of where the container comes from etc
 312021-10-13T00:10:01  <davidbak> well as far as _build systems_ go: bazel, to name one, can give you reproducible builds given that your toolchains can give you reproducible builds.  it's functional, like Nix, and requires all dependencies to be explicit and locked down, and it really works.
 322021-10-13T00:10:13  <fanquake> There may be multiple solutions, but Bitcoin Core has had a solution to this problem for ~10 years now, and Guix is a good next step.
 332021-10-13T00:10:13  <sipa> davidbak: oh, that's not the issue
 342021-10-13T00:10:14  <davidbak> but i'm not proselytizing, i'm just curious/interested.
 352021-10-13T00:10:34  <davidbak> what's not the issue?
 362021-10-13T00:10:35  <sipa> davidbak: that won't give you reproducibility between different systems that have different compiler versions
 372021-10-13T00:10:44  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
 382021-10-13T00:11:15  <davidbak> how does the bitcoin build system give you that?
 392021-10-13T00:11:37  <davidbak> an arm build is obviously different than an x64 build, a windows build different from a ubuntu build ...
 402021-10-13T00:11:55  <sipa> davidbak: guix gives us that, because it compiles the compiler, bootstrapped from the smallest possible piece of binary that exists (to the best of my knowledge)
 412021-10-13T00:12:04  <sipa> at an exactly specified version
 422021-10-13T00:12:18  <sipa> along with all system libraries etc
 432021-10-13T00:12:30  <fanquake> and then all of our dependencies are *locked down* in our depends system
 442021-10-13T00:12:30  <gene> isn't Bazel a facebook product?
 452021-10-13T00:12:56  <sipa> i think bazel would be a reasonable alternative for our hand-rolled depends system
 462021-10-13T00:13:39  <sipa> except that it'd imply (yet) another build system to maintain, as afaik it doesn't integrate with autotools/configure/makefiles
 472021-10-13T00:13:41  <davidbak> bazel is the open-source version of a google internal product - though well supported (and most of the contributors are googlers afaik) facebook has a _different_ c++ build system, called buck.  As I said, there's a _lot_ of work in this space
 482021-10-13T00:13:59  <sipa> in any case, this isn't the hard part
 492021-10-13T00:14:00  <davidbak> no, bazel is a world of its own, doesn't like to operate with any other build system at all.  It's all or nothing, pretty much!
 502021-10-13T00:14:14  <davidbak> so, as I said, I'm not shilling for it.  Just wanted to know the tradeoffs.
 512021-10-13T00:14:22  <sipa> the hard part is an exactly reproducible build environment
 522021-10-13T00:14:54  <davidbak> And if guix builds from the compiler - or even more importantly, the libc/libc++ layer UP, that's pretty damn locked down, and i don't think that's a typical use case for bazel (possibly not even supported, don't know)
 532021-10-13T00:15:07  <davidbak> (i mean, _including_+ the libc/libc++ layer)
 542021-10-13T00:15:52  <sipa> davidbak: well, yes, i'm not lying when i say you and i, on our home desktop systems, on different linux distributions, with different versions of everything, will very realistically succeed in producing bit for bit identical bitcoin core binaries if you run the guix-based build system
 552021-10-13T00:16:08  <davidbak> i'm definitely looking forward to seeing that happen!
 562021-10-13T00:16:14  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 260 seconds)
 572021-10-13T00:16:16  <sipa> well, it's how it works today
 582021-10-13T00:16:23  <sipa> 22.0 was built and released this way
 592021-10-13T00:16:39  <davidbak> i get you that it works today!  and when I get it running here on my system, I'll have seen it happen!
 602021-10-13T00:16:47  <sipa> ah, yes, i encourage you try
 612021-10-13T00:17:28  <fanquake> apt install guix && ./contrib/guix/guix-build and you should be good to go
 622021-10-13T00:17:51  <sipa> oh, and about the different systems: everything is cross-compiled from the Linux environment guix offers (including windows binaries using mingw, and macOS binaries using apple-patched clang)
 632021-10-13T00:19:01  <davidbak> amazing! well, off I go to build a VM for it (as a first cut, not ready to try it in WSL until it's working "native") and that's interesting about the windows binaries too - BUT!!!
 642021-10-13T00:19:35  <sipa> ha, i wonder if guix would work in WSL... not unreasonable that it does, i think
 652021-10-13T00:19:42  <sipa> (but i have no clue)
 662021-10-13T00:20:13  <davidbak> but w.r.t. the windows build - there are instructions for building with Visual Studio/MSVC. Which is obviously NOT mingw.  So if you build that way (for development purposes) that's not going to be binary compatible.  So that must be for developers only, not for release?
 672021-10-13T00:20:22  <sipa> exactly
 682021-10-13T00:20:29  <davidbak> ok
 692021-10-13T00:21:17  <sipa> it's not too different from just being able to build with make, using whatever compiler you want (e.g. clang on linux, while the release binaries are built with gcc)
 702021-10-13T00:22:03  <sipa> plus, having CI test more build environments than just those used for release builds helps find certain issues w.r.t. language violations in the codebase or unintentional architecture dependencies
 712021-10-13T00:22:55  <sipa> at some point we had a CI target that involved building for, and testing in a CPU emulator, an s390x target, because it's big endian
 722021-10-13T00:23:00  <sipa> but iirc it was too slow
 732021-10-13T00:23:05  <davidbak> Yes.  Different compilers == different warnings/errors, especially as the C++ standard allows a bunch of stuff to go undiagnosed and be "implementation defined" but building with multiple compilers increases your chance that at least one of them will warn you of a problem like that.
 742021-10-13T00:23:56  <davidbak> Huh.  So the mainframe guys wanting to run bitcoin core on big iron might run into incompatibilities, eh?
 752021-10-13T00:24:19  <davidbak> Can't say that's a use case I personally would spend much time on ....
 762021-10-13T00:24:32  <sipa> no, neither am i
 772021-10-13T00:25:09  <sipa> but i am interested in knowing that our codebase doesn't unintentionally assume little-endianness anywhere, because if it does, that's a red flag for undefined/unspecified behavior
 782021-10-13T00:25:14  <davidbak> ok, i'm off  - I appreciate your time (and of course, your information)!
 792021-10-13T00:25:20  <sipa> yw
 802021-10-13T00:25:32  <davidbak> yes - but ... i'm sure there's a static analysis for that _somewhere_?
 812021-10-13T00:26:44  <sipa> yes, presumably, but afaik most of those tools are proprietary
 822021-10-13T00:27:03  <davidbak> one more comment: i especially find the endianness issue funny for bitcoin because in addition to the usual on-the-wire format vs. internal representation issues you typically get bitcoin also has - for some unknown historical reason? - the issue of people _visualizing_ addresses/hashes/etc differently than the internal representation - how the heck did _that_ happen?
 832021-10-13T00:27:05  <sipa> building/testing with sanitizers also catches most of such issues
 842021-10-13T00:27:21  <sipa> but who knows - maybe not everything
 852021-10-13T00:27:31  <sipa> davidbak: it's actually perfectly consistent if you know the history ;)
 862021-10-13T00:28:12  <sipa> bitcoin historically treated all byte arrays as little-endian numbers
 872021-10-13T00:28:37  <sipa> it also treated SHA256 as a black box - something you send bytes, and it gives 32 bytes - which are then interpreted as a little-endian number (just like anything else)
 882021-10-13T00:28:50  <davidbak> (history: looking forward to the "retrospective" papers/books being published about 10yrs from now ...)
 892021-10-13T00:29:07  <davidbak> ok, so far you're all little-endian THE WAY IT SHOULD BE! - what's next in the history?
 902021-10-13T00:29:16  <sipa> the same is true for other cryptographic constructs (e.g. ECDSA signatures contain big-endian serialized numbers, but from bitcoin's perspective, they're just byte arrays)
 912021-10-13T00:29:38  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
 922021-10-13T00:29:54  <sipa> now, in block hashes, the hash is actually interpreted as a number, in order to compare it with the target (for proof of work)
 932021-10-13T00:30:21  <sipa> so the _number_ was printed for human consumption - who typically want largest digit first
 942021-10-13T00:30:57  <sipa> if you forget that it's a number, a think it's a hexdump of a 32-byte array, that means it indeed looks swapped compared to the wire format
 952021-10-13T00:31:10  <sipa> but if you think of it as a hex number for human consumption, it's exactly right
 962021-10-13T00:31:43  <sipa> ... of course, that method of formatting hashes was then used for everything, including txids and many other things, where the numerical representation is meaningless
 972021-10-13T00:31:49  <davidbak> so the confusion is that the consumers (I guess) of hashes for the purpose of looking at "how many leading zeros" they have (already an approximation to the truth) aren't PROGRAMMERS!
 982021-10-13T00:32:00  <sipa> i like your thinking
 992021-10-13T00:32:17  <davidbak> sadly, it's the only thinking I have ...
1002021-10-13T00:32:48  <sipa> there is AFAIK one exception to "everything is little endian"... the TCP port rumoured in addr messages on the network is big endian
1012021-10-13T00:32:58  <davidbak> I've been thinking this way for 50 years, ever since my 9th grade math teacher - a laid-off rocket engineer (seriously) - got bored teaching math one day and gave us a 45 minute class in FORTRAN.
1022021-10-13T00:33:16  <sipa> because network stuff is always big endian for some reason, and i think the original code just copied the bytes
1032021-10-13T00:33:32  <davidbak> network is always bigendian for historical reasons
1042021-10-13T00:33:39  <sipa> yeah, i'm aware
1052021-10-13T00:33:48  <sipa> ntohs and friends make that clear
1062021-10-13T00:33:55  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 252 seconds)
1072021-10-13T00:34:28  <davidbak> anyway, gotta go - speak to you again after I get this set up ... or ... if I run into trouble!
1082021-10-13T00:34:34  <sipa> cya
1092021-10-13T00:34:44  <gene> ./
1102021-10-13T00:38:44  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1112021-10-13T00:38:53  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1122021-10-13T00:45:16  *** jarthur_ <jarthur_!~jarthur@2603-8080-1540-002d-04cc-b6ed-267b-4319.res6.spectrum.com> has joined #bitcoin-core-dev
1132021-10-13T00:46:27  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
1142021-10-13T00:47:40  *** jarthur <jarthur!~jarthur@2603-8080-1540-002d-142e-facc-6ddb-8c11.res6.spectrum.com> has quit IRC (Ping timeout: 252 seconds)
1152021-10-13T00:50:56  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 245 seconds)
1162021-10-13T00:51:54  *** hsmiths <hsmiths!uid95325@helmsley.irccloud.com> has quit IRC (Quit: Connection closed for inactivity)
1172021-10-13T00:55:54  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1182021-10-13T00:56:04  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1192021-10-13T01:00:04  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1202021-10-13T01:00:12  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1212021-10-13T01:04:12  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1222021-10-13T01:04:20  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1232021-10-13T01:08:20  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1242021-10-13T01:08:30  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1252021-10-13T01:15:20  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1262021-10-13T01:15:28  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1272021-10-13T01:19:34  *** earnestly <earnestly!~earnest@user/earnestly> has quit IRC (Ping timeout: 252 seconds)
1282021-10-13T01:28:47  *** ghostkeeper <ghostkeeper!~ghostkeep@47.196.70.51> has joined #bitcoin-core-dev
1292021-10-13T01:32:48  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1302021-10-13T01:32:54  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
1312021-10-13T01:32:56  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1322021-10-13T01:33:16  *** ghostkeeper <ghostkeeper!~ghostkeep@47.196.70.51> has quit IRC (Ping timeout: 252 seconds)
1332021-10-13T01:37:16  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1342021-10-13T01:37:26  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1352021-10-13T01:42:18  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1362021-10-13T01:42:27  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1372021-10-13T01:46:27  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1382021-10-13T01:46:35  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1392021-10-13T01:50:35  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1402021-10-13T01:50:44  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1412021-10-13T01:54:44  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1422021-10-13T01:54:53  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1432021-10-13T01:56:40  *** gene <gene!~gene@gateway/tor-sasl/gene> has quit IRC (Quit: gene)
1442021-10-13T02:05:43  *** grettke <grettke!~grettke@cpe-65-29-228-30.wi.res.rr.com> has quit IRC (Ping timeout: 252 seconds)
1452021-10-13T02:09:43  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1462021-10-13T02:09:52  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1472021-10-13T02:10:32  *** grettke <grettke!~grettke@cpe-65-29-228-30.wi.res.rr.com> has joined #bitcoin-core-dev
1482021-10-13T02:15:20  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1492021-10-13T02:15:29  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1502021-10-13T02:25:59  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1512021-10-13T02:26:08  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1522021-10-13T02:30:08  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1532021-10-13T02:30:17  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1542021-10-13T02:34:17  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1552021-10-13T02:34:26  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1562021-10-13T02:38:26  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1572021-10-13T02:38:36  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1582021-10-13T02:38:57  *** ghostkeeper <ghostkeeper!~ghostkeep@47.196.70.51> has joined #bitcoin-core-dev
1592021-10-13T02:47:20  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1602021-10-13T02:47:30  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1612021-10-13T02:54:28  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1622021-10-13T02:54:37  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1632021-10-13T02:57:52  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Remote host closed the connection)
1642021-10-13T02:58:27  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
1652021-10-13T03:02:27  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1662021-10-13T03:02:37  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1672021-10-13T03:02:55  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 252 seconds)
1682021-10-13T03:06:55  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1692021-10-13T03:07:04  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1702021-10-13T03:11:01  *** ghostkeeper <ghostkeeper!~ghostkeep@47.196.70.51> has quit IRC ()
1712021-10-13T03:15:01  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1722021-10-13T03:15:10  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1732021-10-13T03:19:10  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1742021-10-13T03:19:20  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1752021-10-13T03:19:58  *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has quit IRC (Quit: Leaving)
1762021-10-13T03:20:28  *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has joined #bitcoin-core-dev
1772021-10-13T03:24:28  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1782021-10-13T03:24:38  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1792021-10-13T03:32:39  *** c_arc_ <c_arc_!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1802021-10-13T03:32:39  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1812021-10-13T03:33:54  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
1822021-10-13T03:33:54  <bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/810ce36d54e4...39872f5ed43d
1832021-10-13T03:33:54  <bitcoin-git> bitcoin/master 38fd709 fanquake: build: make --enable-werror just -Werror
1842021-10-13T03:33:54  <bitcoin-git> bitcoin/master 39872f5 fanquake: Merge bitcoin/bitcoin#23149: build: make --enable-werror just -Werror
1852021-10-13T03:33:56  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
1862021-10-13T03:34:11  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
1872021-10-13T03:34:11  <bitcoin-git> [bitcoin] fanquake merged pull request #23149: build: make --enable-werror just -Werror (master...make_enable_werror_full_werror) https://github.com/bitcoin/bitcoin/pull/23149
1882021-10-13T03:34:13  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
1892021-10-13T03:38:02  *** vaginaldischarge <vaginaldischarge!b9dc66f8@67.205.143.82> has joined #bitcoin-core-dev
1902021-10-13T03:38:30  *** secura <secura!~anobota@user/anobota> has joined #bitcoin-core-dev
1912021-10-13T03:40:15  *** secura <secura!~anobota@user/anobota> has left #bitcoin-core-dev (Leaving)
1922021-10-13T03:44:02  *** vaginaldischarge <vaginaldischarge!b9dc66f8@67.205.143.82> has left #bitcoin-core-dev (The Lounge - https://thelounge.chat)
1932021-10-13T03:48:02  *** c_arc_ <c_arc_!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1942021-10-13T03:48:11  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1952021-10-13T03:52:28  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
1962021-10-13T03:52:36  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
1972021-10-13T04:00:38  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
1982021-10-13T04:01:01  *** cmirror <cmirror!~cmirror@4.53.92.114> has quit IRC (Remote host closed the connection)
1992021-10-13T04:01:11  *** cmirror <cmirror!~cmirror@4.53.92.114> has joined #bitcoin-core-dev
2002021-10-13T04:05:11  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2012021-10-13T04:05:21  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2022021-10-13T04:06:46  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 245 seconds)
2032021-10-13T04:14:26  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2042021-10-13T04:14:36  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2052021-10-13T04:19:44  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
2062021-10-13T04:23:46  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2072021-10-13T04:23:55  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2082021-10-13T04:24:22  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 252 seconds)
2092021-10-13T04:30:36  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2102021-10-13T04:30:46  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2112021-10-13T04:34:46  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2122021-10-13T04:34:54  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2132021-10-13T04:36:21  *** dr3yk <dr3yk!~dr3yk@173-28-10-222.client.mchsi.com> has joined #bitcoin-core-dev
2142021-10-13T04:36:31  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has quit IRC (Remote host closed the connection)
2152021-10-13T04:37:08  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has joined #bitcoin-core-dev
2162021-10-13T04:41:08  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2172021-10-13T04:41:18  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2182021-10-13T04:41:25  *** grettke <grettke!~grettke@cpe-65-29-228-30.wi.res.rr.com> has quit IRC (Ping timeout: 252 seconds)
2192021-10-13T04:45:25  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2202021-10-13T04:45:34  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2212021-10-13T04:45:37  *** grettke <grettke!~grettke@cpe-65-29-228-30.wi.res.rr.com> has joined #bitcoin-core-dev
2222021-10-13T04:49:37  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2232021-10-13T04:49:46  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2242021-10-13T04:53:46  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2252021-10-13T04:53:55  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2262021-10-13T04:54:01  *** grettke <grettke!~grettke@cpe-65-29-228-30.wi.res.rr.com> has quit IRC (Ping timeout: 252 seconds)
2272021-10-13T04:56:34  *** grettke <grettke!~grettke@cpe-65-29-228-30.wi.res.rr.com> has joined #bitcoin-core-dev
2282021-10-13T05:00:35  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2292021-10-13T05:00:44  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2302021-10-13T05:03:01  *** grettke <grettke!~grettke@cpe-65-29-228-30.wi.res.rr.com> has quit IRC (Ping timeout: 245 seconds)
2312021-10-13T05:03:56  *** grettke <grettke!~grettke@cpe-65-29-228-30.wi.res.rr.com> has joined #bitcoin-core-dev
2322021-10-13T05:05:12  *** AaronvanW <AaronvanW!~AaronvanW@71pc74.sshunet.nl> has quit IRC (Quit: Leaving...)
2332021-10-13T05:09:12  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2342021-10-13T05:09:21  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2352021-10-13T05:12:31  *** grettke <grettke!~grettke@cpe-65-29-228-30.wi.res.rr.com> has quit IRC (Ping timeout: 250 seconds)
2362021-10-13T05:16:31  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2372021-10-13T05:16:40  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2382021-10-13T05:20:40  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2392021-10-13T05:20:49  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2402021-10-13T05:20:52  *** grettke <grettke!~grettke@cpe-65-29-228-30.wi.res.rr.com> has joined #bitcoin-core-dev
2412021-10-13T05:20:56  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
2422021-10-13T05:20:56  <bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/39872f5ed43d...a9f642870849
2432021-10-13T05:20:56  <bitcoin-git> bitcoin/master 7e88f61 Russell Yanofsky: multiprocess: Make interfaces::Chain::isTaprootActive non-const
2442021-10-13T05:20:56  <bitcoin-git> bitcoin/master a9f6428 MarcoFalke: Merge bitcoin/bitcoin#23003: multiprocess: Make interfaces::Chain::isTapro...
2452021-10-13T05:20:58  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
2462021-10-13T05:21:13  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
2472021-10-13T05:21:13  <bitcoin-git> [bitcoin] MarcoFalke merged pull request #23003: multiprocess: Make interfaces::Chain::isTaprootActive non-const (master...pr/ipc-tapc) https://github.com/bitcoin/bitcoin/pull/23003
2482021-10-13T05:21:14  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
2492021-10-13T05:25:06  *** grettke <grettke!~grettke@cpe-65-29-228-30.wi.res.rr.com> has quit IRC (Ping timeout: 245 seconds)
2502021-10-13T05:27:47  *** grettke <grettke!~grettke@cpe-65-29-228-30.wi.res.rr.com> has joined #bitcoin-core-dev
2512021-10-13T05:31:47  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2522021-10-13T05:31:57  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2532021-10-13T05:34:42  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
2542021-10-13T05:34:42  <bitcoin-git> [bitcoin] fanquake opened pull request #23269: build: remove redundant warning flags (master...further_flag_cleanup) https://github.com/bitcoin/bitcoin/pull/23269
2552021-10-13T05:34:43  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
2562021-10-13T05:38:44  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2572021-10-13T05:38:53  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2582021-10-13T05:49:08  *** dr3yk <dr3yk!~dr3yk@173-28-10-222.client.mchsi.com> has quit IRC (Quit: Client closed)
2592021-10-13T05:53:08  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2602021-10-13T05:53:17  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2612021-10-13T05:57:17  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2622021-10-13T05:57:26  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2632021-10-13T06:02:52  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2642021-10-13T06:03:01  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2652021-10-13T06:09:47  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2662021-10-13T06:09:56  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2672021-10-13T06:16:19  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2682021-10-13T06:16:28  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2692021-10-13T06:20:26  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
2702021-10-13T06:25:21  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2712021-10-13T06:25:28  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has quit IRC (Remote host closed the connection)
2722021-10-13T06:25:30  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2732021-10-13T06:26:02  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has joined #bitcoin-core-dev
2742021-10-13T06:26:58  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 252 seconds)
2752021-10-13T06:32:57  *** goatpig <goatpig!~goat@static-193-13-33-110.cust.tele2.se> has joined #bitcoin-core-dev
2762021-10-13T06:36:57  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2772021-10-13T06:37:06  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2782021-10-13T06:43:12  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2792021-10-13T06:43:21  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2802021-10-13T06:50:23  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2812021-10-13T06:50:32  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2822021-10-13T06:50:39  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
2832021-10-13T06:54:39  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2842021-10-13T06:54:48  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2852021-10-13T06:55:01  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 252 seconds)
2862021-10-13T06:59:01  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2872021-10-13T06:59:09  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2882021-10-13T07:03:09  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
2892021-10-13T07:03:18  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
2902021-10-13T07:03:57  *** TallTim <TallTim!~talltim@184-83-239-155-dynamic.midco.net> has quit IRC (Remote host closed the connection)
2912021-10-13T07:04:11  *** TallTim <TallTim!~talltim@184-83-239-155-dynamic.midco.net> has joined #bitcoin-core-dev
2922021-10-13T07:09:55  *** prayank <prayank!~andr0irc@51.15.9.205> has joined #bitcoin-core-dev
2932021-10-13T07:11:07  <prayank> sipa: Are there any changes required in https://github.com/sipa/bitcoin-seeder/ based on https://github.com/bitcoin/bitcoin/issues/23193 ?
2942021-10-13T07:13:21  *** prayank <prayank!~andr0irc@51.15.9.205> has quit IRC (Client Quit)
2952021-10-13T07:18:36  *** freesprung <freesprung!~freesprun@136.25.131.81> has quit IRC (Quit: zzz)
2962021-10-13T07:18:50  *** freesprung <freesprung!~freesprun@136-25-131-81.cab.webpass.net> has joined #bitcoin-core-dev
2972021-10-13T07:20:16  *** Guest99100 <Guest99100!~Guest9910@2001:700:300:4105:6105:4c9:6e4a:4d> has joined #bitcoin-core-dev
2982021-10-13T07:26:20  *** lightningbot <lightningbot!~supybot@2400:8901::f03c:91ff:febb:bbc1> has joined #bitcoin-core-dev
2992021-10-13T07:26:37  *** hex17or <hex17or!~hex17or@gateway/tor-sasl/hex17or> has joined #bitcoin-core-dev
3002021-10-13T07:26:52  *** helo_ <helo_!~helo@user/helo> has joined #bitcoin-core-dev
3012021-10-13T07:27:18  *** sdfgsdfgs <sdfgsdfgs!sdfgsdfg@we.will.rock.you.bnc4you.xyz> has joined #bitcoin-core-dev
3022021-10-13T07:27:23  *** sanket1729_ <sanket1729_!~sanket172@ec2-100-24-255-95.compute-1.amazonaws.com> has joined #bitcoin-core-dev
3032021-10-13T07:31:12  *** stick <stick!sid403625@user/prusnak> has quit IRC (*.net *.split)
3042021-10-13T07:31:12  *** hirish <hirish!~hirish@ip85.ip-137-74-20.eu> has quit IRC (*.net *.split)
3052021-10-13T07:31:12  *** RubenSomsen <RubenSomsen!sid301948@user/rubensomsen> has quit IRC (*.net *.split)
3062021-10-13T07:31:12  *** davterra <davterra!~davterra@143.198.56.186> has quit IRC (*.net *.split)
3072021-10-13T07:31:12  *** xor9[m] <xor9[m]!~xor9matri@2001:470:69fc:105::d186> has quit IRC (*.net *.split)
3082021-10-13T07:31:12  *** kvaciral[m] <kvaciral[m]!~kvaciralx@2001:470:69fc:105::17b> has quit IRC (*.net *.split)
3092021-10-13T07:31:12  *** stevenro- <stevenro-!~steven@irc.roose.io> has quit IRC (*.net *.split)
3102021-10-13T07:31:13  *** sturles <sturles!~sturles@sauron.uio.no> has quit IRC (*.net *.split)
3112021-10-13T07:31:13  *** javi404 <javi404!~quassel@pool-173-63-15-246.nwrknj.fios.verizon.net> has quit IRC (*.net *.split)
3122021-10-13T07:31:13  *** adiabat_ <adiabat_!~adiabat@63.209.32.102> has quit IRC (*.net *.split)
3132021-10-13T07:31:13  *** sanket1729 <sanket1729!~sanket172@ec2-100-24-255-95.compute-1.amazonaws.com> has quit IRC (*.net *.split)
3142021-10-13T07:31:13  *** sanket_cell <sanket_cell!~sanket172@ec2-100-24-255-95.compute-1.amazonaws.com> has quit IRC (*.net *.split)
3152021-10-13T07:31:13  *** ron-slc <ron-slc!~Ron@c-98-202-48-169.hsd1.ut.comcast.net> has quit IRC (*.net *.split)
3162021-10-13T07:31:13  *** jrayhawk <jrayhawk!~jrayhawk@user/jrayhawk> has quit IRC (*.net *.split)
3172021-10-13T07:31:13  *** theStack <theStack!~honeybadg@vps1648322.vs.webtropia-customer.com> has quit IRC (*.net *.split)
3182021-10-13T07:31:13  *** S3RK <S3RK!~S3RK@user/s3rk> has quit IRC (*.net *.split)
3192021-10-13T07:31:13  *** sdfgsdfg <sdfgsdfg!sdfgsdfg@user/sdfgsdfg> has quit IRC (*.net *.split)
3202021-10-13T07:31:13  *** Flow <Flow!~none@gentoo/developer/flow> has quit IRC (*.net *.split)
3212021-10-13T07:31:25  *** sanket_cell_ <sanket_cell_!~sanket172@ec2-100-24-255-95.compute-1.amazonaws.com> has joined #bitcoin-core-dev
3222021-10-13T07:31:49  *** Guyver2 <Guyver2!Guyver@guyver2.xs4all.nl> has joined #bitcoin-core-dev
3232021-10-13T07:31:54  *** freesprung <freesprung!~freesprun@136-25-131-81.cab.webpass.net> has quit IRC (*.net *.split)
3242021-10-13T07:31:55  *** jesseposner <jesseposner!~jesse@c-24-5-105-39.hsd1.ca.comcast.net> has quit IRC (*.net *.split)
3252021-10-13T07:31:55  *** cryptolightning <cryptolightning!~cryptolig@user/cryptolightning> has quit IRC (*.net *.split)
3262021-10-13T07:31:55  *** moneyball_ <moneyball_!sid299869@helmsley.irccloud.com> has quit IRC (*.net *.split)
3272021-10-13T07:31:55  *** hugohn <hugohn!sid304114@lymington.irccloud.com> has quit IRC (*.net *.split)
3282021-10-13T07:31:55  *** uasf <uasf!~uasf@2604:a880:2:d0::1bda:1001> has quit IRC (*.net *.split)
3292021-10-13T07:31:55  *** warren <warren!~warren@fedora/wombat/warren> has quit IRC (*.net *.split)
3302021-10-13T07:31:55  *** helo <helo!~helo@user/helo> has quit IRC (*.net *.split)
3312021-10-13T07:31:55  *** sipa <sipa!~pw@user/sipa> has quit IRC (*.net *.split)
3322021-10-13T07:31:55  *** cncr04s <cncr04s!~cncr04s@afxr.net> has quit IRC (*.net *.split)
3332021-10-13T07:31:56  *** gnusha <gnusha!~gnusha@user/gnusha> has quit IRC (*.net *.split)
3342021-10-13T07:31:56  *** freesprung7 is now known as freesprung
3352021-10-13T07:31:56  *** hugohn_ is now known as hugohn
3362021-10-13T07:32:32  *** cryptolightning <cryptolightning!~cryptolig@70-131-42-184.lightspeed.rlghnc.sbcglobal.net> has joined #bitcoin-core-dev
3372021-10-13T07:34:53  *** theStack <theStack!~honeybadg@vps1648322.vs.webtropia-customer.com> has joined #bitcoin-core-dev
3382021-10-13T07:37:48  *** stick <stick!sid403625@user/prusnak> has joined #bitcoin-core-dev
3392021-10-13T07:37:48  *** RubenSomsen <RubenSomsen!sid301948@user/rubensomsen> has joined #bitcoin-core-dev
3402021-10-13T07:37:48  *** xor9[m] <xor9[m]!~xor9matri@2001:470:69fc:105::d186> has joined #bitcoin-core-dev
3412021-10-13T07:37:48  *** kvaciral[m] <kvaciral[m]!~kvaciralx@2001:470:69fc:105::17b> has joined #bitcoin-core-dev
3422021-10-13T07:37:48  *** stevenro- <stevenro-!~steven@irc.roose.io> has joined #bitcoin-core-dev
3432021-10-13T07:37:48  *** Flow <Flow!~none@gentoo/developer/flow> has joined #bitcoin-core-dev
3442021-10-13T07:38:53  *** ron-slc <ron-slc!~Ron@c-98-202-48-169.hsd1.ut.comcast.net> has joined #bitcoin-core-dev
3452021-10-13T07:39:43  *** Nebraskka <Nebraskka!~Nebraskka@user/nebraskka> has joined #bitcoin-core-dev
3462021-10-13T07:41:17  *** vincenzopalazzo <vincenzopalazzo!~vincenzop@2001:470:69fc:105::a67> has quit IRC (Ping timeout: 246 seconds)
3472021-10-13T07:42:01  *** merkle_noob[m] <merkle_noob[m]!~merklenoo@2001:470:69fc:105::bad0> has quit IRC (Ping timeout: 250 seconds)
3482021-10-13T07:43:04  *** earnestly <earnestly!~earnest@user/earnestly> has joined #bitcoin-core-dev
3492021-10-13T07:45:10  *** vincenzopalazzo <vincenzopalazzo!~vincenzop@2001:470:69fc:105::a67> has joined #bitcoin-core-dev
3502021-10-13T07:49:11  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
3512021-10-13T07:49:48  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
3522021-10-13T07:54:27  *** merkle_noob[m] <merkle_noob[m]!~merklenoo@2001:470:69fc:105::bad0> has joined #bitcoin-core-dev
3532021-10-13T08:02:07  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
3542021-10-13T08:02:17  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
3552021-10-13T08:05:08  *** Guest99100 <Guest99100!~Guest9910@2001:700:300:4105:6105:4c9:6e4a:4d> has joined #bitcoin-core-dev
3562021-10-13T08:09:09  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
3572021-10-13T08:09:45  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
3582021-10-13T08:14:13  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
3592021-10-13T08:14:22  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
3602021-10-13T08:18:45  *** hebasto <hebasto!sid449604@uxbridge.irccloud.com> has quit IRC (Read error: Connection reset by peer)
3612021-10-13T08:18:47  *** sebx2a <sebx2a!sid356034@uxbridge.irccloud.com> has quit IRC (Read error: Connection reset by peer)
3622021-10-13T08:18:54  *** hebasto <hebasto!sid449604@id-449604.uxbridge.irccloud.com> has joined #bitcoin-core-dev
3632021-10-13T08:19:09  *** jarolrod <jarolrod!sid475272@uxbridge.irccloud.com> has quit IRC (Read error: Connection reset by peer)
3642021-10-13T08:19:14  *** fjahr <fjahr!sid374480@uxbridge.irccloud.com> has quit IRC (Read error: Connection reset by peer)
3652021-10-13T08:19:15  *** bw <bw!sid2730@user/betawaffle> has quit IRC (Read error: Connection reset by peer)
3662021-10-13T08:19:42  *** fjahr <fjahr!sid374480@id-374480.uxbridge.irccloud.com> has joined #bitcoin-core-dev
3672021-10-13T08:22:16  *** ajonas <ajonas!sid385278@helmsley.irccloud.com> has quit IRC (Read error: Connection reset by peer)
3682021-10-13T08:22:18  *** FelixWeis <FelixWeis!sid154231@hampstead.irccloud.com> has quit IRC (Read error: Connection reset by peer)
3692021-10-13T08:22:24  *** ajonas <ajonas!sid385278@id-385278.helmsley.irccloud.com> has joined #bitcoin-core-dev
3702021-10-13T08:23:25  *** hirish <hirish!~hirish@ip85.ip-137-74-20.eu> has joined #bitcoin-core-dev
3712021-10-13T08:26:11  *** sipa <sipa!~pw@user/sipa> has joined #bitcoin-core-dev
3722021-10-13T08:27:00  *** stick <stick!sid403625@user/prusnak> has quit IRC (*.net *.split)
3732021-10-13T08:27:00  *** RubenSomsen <RubenSomsen!sid301948@user/rubensomsen> has quit IRC (*.net *.split)
3742021-10-13T08:27:00  *** xor9[m] <xor9[m]!~xor9matri@2001:470:69fc:105::d186> has quit IRC (*.net *.split)
3752021-10-13T08:27:00  *** kvaciral[m] <kvaciral[m]!~kvaciralx@2001:470:69fc:105::17b> has quit IRC (*.net *.split)
3762021-10-13T08:27:00  *** stevenro- <stevenro-!~steven@irc.roose.io> has quit IRC (*.net *.split)
3772021-10-13T08:27:00  *** Flow <Flow!~none@gentoo/developer/flow> has quit IRC (*.net *.split)
3782021-10-13T08:31:00  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
3792021-10-13T08:31:10  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
3802021-10-13T08:33:42  *** FelixWeis <FelixWeis!sid154231@id-154231.hampstead.irccloud.com> has joined #bitcoin-core-dev
3812021-10-13T08:33:42  *** bw__ <bw__!sid2730@2a03:5180:f:3::aaa> has joined #bitcoin-core-dev
3822021-10-13T08:33:42  *** jarolrod <jarolrod!sid475272@2a03:5180:f:5::7:4088> has joined #bitcoin-core-dev
3832021-10-13T08:33:42  *** sebx2a <sebx2a!sid356034@2a03:5180:f:5::5:6ec2> has joined #bitcoin-core-dev
3842021-10-13T08:33:42  *** stick <stick!sid403625@user/prusnak> has joined #bitcoin-core-dev
3852021-10-13T08:33:42  *** RubenSomsen <RubenSomsen!sid301948@user/rubensomsen> has joined #bitcoin-core-dev
3862021-10-13T08:33:42  *** xor9[m] <xor9[m]!~xor9matri@2001:470:69fc:105::d186> has joined #bitcoin-core-dev
3872021-10-13T08:33:42  *** kvaciral[m] <kvaciral[m]!~kvaciralx@2001:470:69fc:105::17b> has joined #bitcoin-core-dev
3882021-10-13T08:33:42  *** stevenro- <stevenro-!~steven@irc.roose.io> has joined #bitcoin-core-dev
3892021-10-13T08:33:42  *** Flow <Flow!~none@gentoo/developer/flow> has joined #bitcoin-core-dev
3902021-10-13T08:38:47  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
3912021-10-13T08:38:57  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
3922021-10-13T08:42:57  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
3932021-10-13T08:43:06  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
3942021-10-13T08:47:02  *** Henry151 <Henry151!~bishop@user/henry151> has joined #bitcoin-core-dev
3952021-10-13T08:50:28  *** cncr04s <cncr04s!~cncr04s@afxr.net> has joined #bitcoin-core-dev
3962021-10-13T08:50:30  *** moneyball_ <moneyball_!sid299869@id-299869.helmsley.irccloud.com> has joined #bitcoin-core-dev
3972021-10-13T08:51:23  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
3982021-10-13T08:53:30  *** bairen <bairen!~bairen@gateway/tor-sasl/bairen> has quit IRC (Ping timeout: 276 seconds)
3992021-10-13T08:54:33  *** bairen <bairen!~bairen@gateway/tor-sasl/bairen> has joined #bitcoin-core-dev
4002021-10-13T08:55:31  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 245 seconds)
4012021-10-13T08:59:31  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4022021-10-13T08:59:40  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4032021-10-13T09:03:41  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4042021-10-13T09:03:50  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4052021-10-13T09:06:39  *** jarthur_ <jarthur_!~jarthur@2603-8080-1540-002d-04cc-b6ed-267b-4319.res6.spectrum.com> has quit IRC (Quit: jarthur_)
4062021-10-13T09:10:39  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4072021-10-13T09:10:49  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4082021-10-13T09:19:05  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4092021-10-13T09:19:16  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4102021-10-13T09:23:16  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4112021-10-13T09:23:26  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4122021-10-13T09:28:34  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4132021-10-13T09:28:43  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4142021-10-13T09:34:50  *** bw__ <bw__!sid2730@2a03:5180:f:3::aaa> has quit IRC ()
4152021-10-13T09:35:17  *** bw__ <bw__!sid2730@id-2730.ilkley.irccloud.com> has joined #bitcoin-core-dev
4162021-10-13T09:37:08  *** bw__ is now known as bw
4172021-10-13T09:43:51  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4182021-10-13T09:44:01  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4192021-10-13T09:48:01  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4202021-10-13T09:48:10  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4212021-10-13T09:52:10  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4222021-10-13T09:52:19  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4232021-10-13T09:56:19  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4242021-10-13T09:56:28  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4252021-10-13T09:59:16  *** Murch[m] <Murch[m]!~murchmatr@2001:470:69fc:105::2aa8> has quit IRC (Quit: Bridge terminating on SIGTERM)
4262021-10-13T09:59:16  *** kvaciral[m] <kvaciral[m]!~kvaciralx@2001:470:69fc:105::17b> has quit IRC (Quit: Bridge terminating on SIGTERM)
4272021-10-13T09:59:17  *** siv2r[m] <siv2r[m]!~siv2rmatr@2001:470:69fc:105::fed3> has quit IRC (Quit: Bridge terminating on SIGTERM)
4282021-10-13T09:59:17  *** devrandom <devrandom!~devrandom@2001:470:69fc:105::d4d> has quit IRC (Quit: Bridge terminating on SIGTERM)
4292021-10-13T09:59:17  *** stick[m] <stick[m]!~stickmatr@2001:470:69fc:105::98c> has quit IRC (Quit: Bridge terminating on SIGTERM)
4302021-10-13T09:59:17  *** Enki[m] <Enki[m]!~enkimatri@2001:470:69fc:105::382c> has quit IRC (Quit: Bridge terminating on SIGTERM)
4312021-10-13T09:59:17  *** vasanth2[m] <vasanth2[m]!~vasanth2m@2001:470:69fc:105::3548> has quit IRC (Quit: Bridge terminating on SIGTERM)
4322021-10-13T09:59:17  *** kakolainen[m] <kakolainen[m]!~kakolaine@2001:470:69fc:105::34f9> has quit IRC (Quit: Bridge terminating on SIGTERM)
4332021-10-13T09:59:17  *** tutwidi[m] <tutwidi[m]!~tutwidima@2001:470:69fc:105::ead> has quit IRC (Quit: Bridge terminating on SIGTERM)
4342021-10-13T09:59:17  *** xor9[m] <xor9[m]!~xor9matri@2001:470:69fc:105::d186> has quit IRC (Quit: Bridge terminating on SIGTERM)
4352021-10-13T09:59:17  *** cdecker[m] <cdecker[m]!~cdeckerma@2001:470:69fc:105::2e8e> has quit IRC (Quit: Bridge terminating on SIGTERM)
4362021-10-13T09:59:17  *** kibizc[m] <kibizc[m]!~kibizcmat@2001:470:69fc:105::1:ada> has quit IRC (Quit: Bridge terminating on SIGTERM)
4372021-10-13T09:59:18  *** RCasatta[m] <RCasatta[m]!~rcasattam@2001:470:69fc:105::c85> has quit IRC (Quit: Bridge terminating on SIGTERM)
4382021-10-13T09:59:22  *** vincenzopalazzo <vincenzopalazzo!~vincenzop@2001:470:69fc:105::a67> has quit IRC (Quit: Bridge terminating on SIGTERM)
4392021-10-13T09:59:22  *** merkle_noob[m] <merkle_noob[m]!~merklenoo@2001:470:69fc:105::bad0> has quit IRC (Quit: Bridge terminating on SIGTERM)
4402021-10-13T10:02:12  *** kvaciral[m] <kvaciral[m]!~kvaciralx@2001:470:69fc:105::17b> has joined #bitcoin-core-dev
4412021-10-13T10:04:19  *** devrandom <devrandom!~devrandom@2001:470:69fc:105::d4d> has joined #bitcoin-core-dev
4422021-10-13T10:04:19  *** vincenzopalazzo <vincenzopalazzo!~vincenzop@2001:470:69fc:105::a67> has joined #bitcoin-core-dev
4432021-10-13T10:04:19  *** stick[m] <stick[m]!~stickmatr@2001:470:69fc:105::98c> has joined #bitcoin-core-dev
4442021-10-13T10:04:19  *** Murch[m] <Murch[m]!~murchmatr@2001:470:69fc:105::2aa8> has joined #bitcoin-core-dev
4452021-10-13T10:04:19  *** Enki[m] <Enki[m]!~enkimatri@2001:470:69fc:105::382c> has joined #bitcoin-core-dev
4462021-10-13T10:04:19  *** siv2r[m] <siv2r[m]!~siv2rmatr@2001:470:69fc:105::fed3> has joined #bitcoin-core-dev
4472021-10-13T10:04:19  *** merkle_noob[m] <merkle_noob[m]!~merklenoo@2001:470:69fc:105::bad0> has joined #bitcoin-core-dev
4482021-10-13T10:04:31  *** cdecker[m] <cdecker[m]!~cdeckerma@2001:470:69fc:105::2e8e> has joined #bitcoin-core-dev
4492021-10-13T10:04:31  *** tutwidi[m] <tutwidi[m]!~tutwidima@2001:470:69fc:105::ead> has joined #bitcoin-core-dev
4502021-10-13T10:04:31  *** vasanth2[m] <vasanth2[m]!~vasanth2m@2001:470:69fc:105::3548> has joined #bitcoin-core-dev
4512021-10-13T10:04:31  *** RCasatta[m] <RCasatta[m]!~rcasattam@2001:470:69fc:105::c85> has joined #bitcoin-core-dev
4522021-10-13T10:04:31  *** kakolainen[m] <kakolainen[m]!~kakolaine@2001:470:69fc:105::34f9> has joined #bitcoin-core-dev
4532021-10-13T10:04:31  *** xor9[m] <xor9[m]!~xor9matri@2001:470:69fc:105::d186> has joined #bitcoin-core-dev
4542021-10-13T10:04:32  *** kibizc[m] <kibizc[m]!~kibizcmat@2001:470:69fc:105::1:ada> has joined #bitcoin-core-dev
4552021-10-13T10:06:45  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
4562021-10-13T10:06:45  <bitcoin-git> [bitcoin] Empact opened pull request #23270: Bump minimum python version to 3.7 (master...2021-10-python-3.7) https://github.com/bitcoin/bitcoin/pull/23270
4572021-10-13T10:06:46  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
4582021-10-13T10:10:38  *** AaronvanW <AaronvanW!~AaronvanW@71pc74.sshunet.nl> has joined #bitcoin-core-dev
4592021-10-13T10:13:10  *** Aaronvan_ <Aaronvan_!~AaronvanW@185.169.233.85> has joined #bitcoin-core-dev
4602021-10-13T10:16:19  *** AaronvanW <AaronvanW!~AaronvanW@71pc74.sshunet.nl> has quit IRC (Ping timeout: 252 seconds)
4612021-10-13T10:17:27  *** AaronvanW <AaronvanW!~AaronvanW@71pc74.sshunet.nl> has joined #bitcoin-core-dev
4622021-10-13T10:20:43  *** Aaronvan_ <Aaronvan_!~AaronvanW@185.169.233.85> has quit IRC (Ping timeout: 252 seconds)
4632021-10-13T10:22:13  *** Guest99100 <Guest99100!~Guest9910@2001:700:300:4105:6105:4c9:6e4a:4d> has quit IRC (Ping timeout: 256 seconds)
4642021-10-13T10:27:06  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4652021-10-13T10:27:15  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4662021-10-13T10:30:38  *** morcos_ <morcos_!~morcos@gateway/tor-sasl/morcos> has joined #bitcoin-core-dev
4672021-10-13T10:30:59  *** morcos <morcos!~morcos@gateway/tor-sasl/morcos> has quit IRC (Remote host closed the connection)
4682021-10-13T10:30:59  *** morcos_ is now known as morcos
4692021-10-13T10:35:00  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4702021-10-13T10:35:08  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4712021-10-13T10:39:08  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4722021-10-13T10:39:18  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4732021-10-13T10:43:18  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4742021-10-13T10:43:27  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4752021-10-13T10:48:09  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4762021-10-13T10:48:18  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4772021-10-13T10:52:08  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
4782021-10-13T10:56:28  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 252 seconds)
4792021-10-13T11:03:10  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4802021-10-13T11:03:19  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4812021-10-13T11:05:26  *** jrayhawk_ is now known as jrayhawk
4822021-10-13T11:09:26  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4832021-10-13T11:09:35  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4842021-10-13T11:13:35  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4852021-10-13T11:13:45  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4862021-10-13T11:14:03  *** ArctVaulMarsHMPJ <ArctVaulMarsHMPJ!~pjetcetal@2.95.44.252> has joined #bitcoin-core-dev
4872021-10-13T11:19:01  *** theStack <theStack!~honeybadg@vps1648322.vs.webtropia-customer.com> has quit IRC (Ping timeout: 252 seconds)
4882021-10-13T11:19:09  *** theStack <theStack!~honeybadg@vps1648322.vs.webtropia-customer.com> has joined #bitcoin-core-dev
4892021-10-13T11:21:22  *** AaronvanW <AaronvanW!~AaronvanW@71pc74.sshunet.nl> has quit IRC (Quit: Leaving...)
4902021-10-13T11:22:36  *** tripleslash <tripleslash!~triplesla@user/tripleslash> has quit IRC (Ping timeout: 245 seconds)
4912021-10-13T11:23:38  *** tripleslash <tripleslash!~triplesla@user/tripleslash> has joined #bitcoin-core-dev
4922021-10-13T11:25:09  *** AaronvanW <AaronvanW!~AaronvanW@71pc74.sshunet.nl> has joined #bitcoin-core-dev
4932021-10-13T11:32:41  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4942021-10-13T11:32:52  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4952021-10-13T11:39:26  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4962021-10-13T11:39:36  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4972021-10-13T11:43:46  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
4982021-10-13T11:43:55  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
4992021-10-13T11:49:19  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
5002021-10-13T11:49:28  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
5012021-10-13T11:49:50  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
5022021-10-13T11:49:51  <bitcoin-git> [bitcoin] laanwj pushed 4 commits to master: https://github.com/bitcoin/bitcoin/compare/a9f642870849...28d5074343d2
5032021-10-13T11:49:51  <bitcoin-git> bitcoin/master fa53d3d MarcoFalke: test: Check that bitcoin-tx accepts whitespace around sequence id and mult...
5042021-10-13T11:49:51  <bitcoin-git> bitcoin/master fafab8e MarcoFalke: bitcoin-tx: Reject non-integral and out of range sequence ids
5052021-10-13T11:49:51  <bitcoin-git> bitcoin/master fa6f29d MarcoFalke: bitcoin-tx: Reject non-integral and out of range multisig numbers
5062021-10-13T11:49:52  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
5072021-10-13T11:50:07  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
5082021-10-13T11:50:08  <bitcoin-git> [bitcoin] laanwj merged pull request #23253:  bitcoin-tx: Reject non-integral and out of range int strings (master...2110-utilTxSeqId) https://github.com/bitcoin/bitcoin/pull/23253
5092021-10-13T11:50:09  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
5102021-10-13T11:53:49  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
5112021-10-13T11:53:49  <bitcoin-git> [bitcoin] laanwj pushed 7 commits to master: https://github.com/bitcoin/bitcoin/compare/28d5074343d2...da13c7b18afc
5122021-10-13T11:53:49  <bitcoin-git> bitcoin/master 610a8a8 Carl Dong: test-*-check: Pass in *FLAGS and compile with them
5132021-10-13T11:53:49  <bitcoin-git> bitcoin/master 309eac9 fanquake: scripts: use LIEF for ELF checks in symbol-check.py
5142021-10-13T11:53:49  <bitcoin-git> bitcoin/master 8242ae2 fanquake: scripts: only parse the binary once in symbol-check.py
5152021-10-13T11:53:50  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
5162021-10-13T11:54:06  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
5172021-10-13T11:54:06  <bitcoin-git> [bitcoin] laanwj merged pull request #22392: scripts: use LIEF for ELF security & symbol checks (master...lief_elf) https://github.com/bitcoin/bitcoin/pull/22392
5182021-10-13T11:54:07  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
5192021-10-13T11:58:49  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
5202021-10-13T11:58:59  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
5212021-10-13T12:06:26  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
5222021-10-13T12:06:35  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
5232021-10-13T12:10:35  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
5242021-10-13T12:10:44  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
5252021-10-13T12:14:15  *** Guyver2 <Guyver2!Guyver@guyver2.xs4all.nl> has quit IRC (Remote host closed the connection)
5262021-10-13T12:15:57  *** baakeydow <baakeydow!~baake@2001:bc8:65c:2601::1> has joined #bitcoin-core-dev
5272021-10-13T12:31:55  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
5282021-10-13T12:32:05  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
5292021-10-13T12:34:32  *** tralfaz is now known as davterra
5302021-10-13T12:38:32  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
5312021-10-13T12:38:41  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
5322021-10-13T12:40:23  *** bitdex <bitdex!~bitdex@gateway/tor-sasl/bitdex> has quit IRC (Quit: = "")
5332021-10-13T12:44:23  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
5342021-10-13T12:44:33  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
5352021-10-13T12:52:56  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
5362021-10-13T12:56:56  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
5372021-10-13T12:57:05  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
5382021-10-13T12:57:28  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 252 seconds)
5392021-10-13T13:01:28  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
5402021-10-13T13:01:39  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
5412021-10-13T13:02:08  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
5422021-10-13T13:02:08  <bitcoin-git> [bitcoin] laanwj pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/da13c7b18afc...71a85fbd09b5
5432021-10-13T13:02:08  <bitcoin-git> bitcoin/master b96adcb Carl Dong: guix: Fix powerpc64(le) dynamic linker name
5442021-10-13T13:02:08  <bitcoin-git> bitcoin/master 1527b7e Carl Dong: symbol-check: Check requested ELF interpreter
5452021-10-13T13:02:08  <bitcoin-git> bitcoin/master 71a85fb W. J. van der Laan: Merge bitcoin/bitcoin#23148: build: Fix guix linker-loader path and add ch...
5462021-10-13T13:02:10  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
5472021-10-13T13:02:25  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
5482021-10-13T13:02:25  <bitcoin-git> [bitcoin] laanwj merged pull request #23148: build: Fix guix linker-loader path and add check_ELF_interpreter (master...2021-09-fix-loader-quick) https://github.com/bitcoin/bitcoin/pull/23148
5492021-10-13T13:02:26  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
5502021-10-13T13:06:19  *** ArctVaulMarsHMPJ <ArctVaulMarsHMPJ!~pjetcetal@2.95.44.252> has quit IRC (Quit: EXIT)
5512021-10-13T13:10:55  *** jesseposner_ <jesseposner_!~jesse@c-24-5-105-39.hsd1.ca.comcast.net> has quit IRC (Ping timeout: 250 seconds)
5522021-10-13T13:12:04  *** jesseposner <jesseposner!~jesse@c-24-5-105-39.hsd1.ca.comcast.net> has joined #bitcoin-core-dev
5532021-10-13T13:14:49  *** jrayhawk <jrayhawk!~jrayhawk@user/jrayhawk> has quit IRC (Ping timeout: 250 seconds)
5542021-10-13T13:15:41  *** jrayhawk <jrayhawk!~jrayhawk@user/jrayhawk> has joined #bitcoin-core-dev
5552021-10-13T13:15:43  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
5562021-10-13T13:22:47  *** paulo <paulo!paulo@user/paulo/x-9032687> has quit IRC (Ping timeout: 240 seconds)
5572021-10-13T13:26:09  *** TheRec <TheRec!~toto@user/therec> has quit IRC (Ping timeout: 245 seconds)
5582021-10-13T13:27:59  *** TheRec <TheRec!~toto@user/therec> has joined #bitcoin-core-dev
5592021-10-13T13:30:23  *** paulo <paulo!paulo@user/paulo/x-9032687> has joined #bitcoin-core-dev
5602021-10-13T13:35:27  *** goatpig <goatpig!~goat@static-193-13-33-110.cust.tele2.se> has quit IRC (Remote host closed the connection)
5612021-10-13T13:36:46  *** sturles_ <sturles_!~sturles@sauron.uio.no> has quit IRC (Ping timeout: 245 seconds)
5622021-10-13T13:38:50  *** sturles <sturles!~sturles@sauron.uio.no> has joined #bitcoin-core-dev
5632021-10-13T13:42:50  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
5642021-10-13T13:42:59  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
5652021-10-13T13:46:59  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
5662021-10-13T13:47:08  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
5672021-10-13T13:48:26  *** adiabat <adiabat!~adiabat@63.209.32.102> has quit IRC (Ping timeout: 245 seconds)
5682021-10-13T13:52:26  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
5692021-10-13T13:52:35  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
5702021-10-13T13:52:47  *** adiabat <adiabat!~adiabat@63.209.32.102> has joined #bitcoin-core-dev
5712021-10-13T13:56:48  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
5722021-10-13T13:56:56  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
5732021-10-13T14:00:10  *** theStack <theStack!~honeybadg@vps1648322.vs.webtropia-customer.com> has quit IRC (Ping timeout: 252 seconds)
5742021-10-13T14:00:49  *** theStack <theStack!~honeybadg@vps1648322.vs.webtropia-customer.com> has joined #bitcoin-core-dev
5752021-10-13T14:04:49  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
5762021-10-13T14:04:58  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
5772021-10-13T14:08:44  *** ArctVaulMarsHMPJ <ArctVaulMarsHMPJ!~pjetcetal@2.95.44.252> has joined #bitcoin-core-dev
5782021-10-13T14:12:20  *** adiabat <adiabat!~adiabat@63.209.32.102> has quit IRC (Ping timeout: 265 seconds)
5792021-10-13T14:13:54  <jnewbery> sipa: did you see cfields question about a secp c++ wrapper earlier? I'm also curious!
5802021-10-13T14:13:57  <jnewbery> < cfields> sipa: what do you think about a c++ shim-wrapper (like aes.cpp for ctaes) around secp for Core, so we could build it as c++? With tighter integration, that'd save us from having to add all of the c buildsystem machinery for the single secp object.
5812021-10-13T14:15:43  <sipa> i did see it, but forgot to respond
5822021-10-13T14:15:51  <sipa> maybe a discussion to have in #secp256k1 ?
5832021-10-13T14:18:40  *** cfields <cfields!~cfields@user/cfields> has quit IRC (Remote host closed the connection)
5842021-10-13T14:18:52  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 252 seconds)
5852021-10-13T14:19:49  *** cfields <cfields!~cfields@user/cfields> has joined #bitcoin-core-dev
5862021-10-13T14:23:49  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
5872021-10-13T14:23:58  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
5882021-10-13T14:26:53  *** adiabat <adiabat!~adiabat@63.209.32.102> has joined #bitcoin-core-dev
5892021-10-13T14:34:21  *** ziggie <ziggie!uid521459@user/ziggie> has quit IRC (Quit: Connection closed for inactivity)
5902021-10-13T14:38:22  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
5912021-10-13T14:38:32  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
5922021-10-13T14:44:14  *** Keele <Keele!~keele@91-158-68-128.elisa-laajakaista.fi> has quit IRC (Ping timeout: 265 seconds)
5932021-10-13T14:52:02  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
5942021-10-13T14:52:11  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
5952021-10-13T14:55:21  <laanwj> that would be a nice buildsystem simplification
5962021-10-13T14:59:21  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
5972021-10-13T14:59:30  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
5982021-10-13T15:05:43  *** hsmiths <hsmiths!uid95325@id-95325.helmsley.irccloud.com> has joined #bitcoin-core-dev
5992021-10-13T15:06:07  *** Guyver2 <Guyver2!Guyver@guyver2.xs4all.nl> has joined #bitcoin-core-dev
6002021-10-13T15:10:28  *** davidbak <davidbak!~DavidBaki@c-174-61-163-5.hsd1.wa.comcast.net> has quit IRC (Quit: Leaving)
6012021-10-13T15:27:24  *** bairen <bairen!~bairen@gateway/tor-sasl/bairen> has quit IRC (Ping timeout: 276 seconds)
6022021-10-13T15:28:56  *** bairen <bairen!~bairen@gateway/tor-sasl/bairen> has joined #bitcoin-core-dev
6032021-10-13T15:33:39  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
6042021-10-13T15:35:20  *** Guest8 <Guest8!~Guest8@2804:d41:421f:1100:b80b:42c6:b6f9:89b7> has joined #bitcoin-core-dev
6052021-10-13T15:40:50  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6062021-10-13T15:40:59  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6072021-10-13T15:47:04  *** Guest8 <Guest8!~Guest8@2804:d41:421f:1100:b80b:42c6:b6f9:89b7> has quit IRC (Quit: Client closed)
6082021-10-13T15:58:55  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6092021-10-13T15:59:04  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6102021-10-13T16:04:10  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6112021-10-13T16:04:19  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6122021-10-13T16:04:24  *** hex17or <hex17or!~hex17or@gateway/tor-sasl/hex17or> has quit IRC (Remote host closed the connection)
6132021-10-13T16:04:51  *** hex17or <hex17or!~hex17or@gateway/tor-sasl/hex17or> has joined #bitcoin-core-dev
6142021-10-13T16:06:50  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
6152021-10-13T16:06:50  <bitcoin-git> [gui] laanwj opened pull request #454: qt: Use only Qt translation primitives in GUI code (master...2021-10-qt-use-at-translation) https://github.com/bitcoin-core/gui/pull/454
6162021-10-13T16:06:51  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
6172021-10-13T16:10:51  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6182021-10-13T16:11:01  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6192021-10-13T16:14:51  *** bairen <bairen!~bairen@gateway/tor-sasl/bairen> has quit IRC (Remote host closed the connection)
6202021-10-13T16:15:10  *** bairen <bairen!~bairen@gateway/tor-sasl/bairen> has joined #bitcoin-core-dev
6212021-10-13T16:18:22  *** ___nick___ <___nick___!~quassel@cpc68286-cdif17-2-0-cust533.5-1.cable.virginm.net> has joined #bitcoin-core-dev
6222021-10-13T16:18:26  *** theStack <theStack!~honeybadg@vps1648322.vs.webtropia-customer.com> has quit IRC (Ping timeout: 245 seconds)
6232021-10-13T16:18:32  *** theStack <theStack!~honeybadg@vps1648322.vs.webtropia-customer.com> has joined #bitcoin-core-dev
6242021-10-13T16:23:12  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6252021-10-13T16:23:21  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6262021-10-13T16:25:15  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has quit IRC (Ping timeout: 276 seconds)
6272021-10-13T16:31:35  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has joined #bitcoin-core-dev
6282021-10-13T16:35:35  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6292021-10-13T16:35:45  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6302021-10-13T16:39:45  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6312021-10-13T16:39:54  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6322021-10-13T16:52:45  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6332021-10-13T16:52:55  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6342021-10-13T17:00:00  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6352021-10-13T17:00:10  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6362021-10-13T17:04:59  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6372021-10-13T17:05:08  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6382021-10-13T17:09:08  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6392021-10-13T17:09:17  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6402021-10-13T17:11:53  *** Talkless <Talkless!~Talkless@mail.dargis.net> has joined #bitcoin-core-dev
6412021-10-13T17:18:03  *** gnaf <gnaf!~gnaf@86-91-224-60.opennet.kpn.net> has joined #bitcoin-core-dev
6422021-10-13T17:19:19  *** ___nick___ <___nick___!~quassel@cpc68286-cdif17-2-0-cust533.5-1.cable.virginm.net> has quit IRC (Quit: https://quassel-irc.org - Chat comfortably. Anywhere.)
6432021-10-13T17:20:40  *** ___nick___ <___nick___!~quassel@cpc68286-cdif17-2-0-cust533.5-1.cable.virginm.net> has joined #bitcoin-core-dev
6442021-10-13T17:20:52  *** ___nick___ <___nick___!~quassel@cpc68286-cdif17-2-0-cust533.5-1.cable.virginm.net> has quit IRC (Client Quit)
6452021-10-13T17:22:08  *** ___nick___ <___nick___!~quassel@cpc68286-cdif17-2-0-cust533.5-1.cable.virginm.net> has joined #bitcoin-core-dev
6462021-10-13T17:26:08  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6472021-10-13T17:26:18  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6482021-10-13T17:30:18  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6492021-10-13T17:30:27  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6502021-10-13T17:33:01  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
6512021-10-13T17:33:01  <bitcoin-git> [bitcoin] stratospher opened pull request #23271: crypto: Fix K1/K2 use in the comments in ChaCha20-Poly1305 AEAD (master...fix-k1-k2) https://github.com/bitcoin/bitcoin/pull/23271
6522021-10-13T17:33:02  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
6532021-10-13T17:36:10  *** ghostkeeper <ghostkeeper!~ghostkeep@47.196.70.51> has joined #bitcoin-core-dev
6542021-10-13T17:42:56  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6552021-10-13T17:43:05  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6562021-10-13T17:45:12  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has quit IRC (Ping timeout: 276 seconds)
6572021-10-13T17:49:12  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6582021-10-13T17:49:21  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6592021-10-13T17:51:58  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has joined #bitcoin-core-dev
6602021-10-13T17:56:31  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
6612021-10-13T17:56:31  <bitcoin-git> [bitcoin] khan201kp opened pull request #23272: Update COPYING (master...patch-1) https://github.com/bitcoin/bitcoin/pull/23272
6622021-10-13T17:56:32  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
6632021-10-13T17:57:56  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
6642021-10-13T17:57:56  <bitcoin-git> [bitcoin] sipa closed pull request #23272: Update COPYING (master...patch-1) https://github.com/bitcoin/bitcoin/pull/23272
6652021-10-13T17:57:57  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
6662021-10-13T18:01:58  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6672021-10-13T18:02:07  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6682021-10-13T18:05:53  *** pigeons_ is now known as pigeons
6692021-10-13T18:08:00  *** jamesob <jamesob!uid180710@id-180710.helmsley.irccloud.com> has joined #bitcoin-core-dev
6702021-10-13T18:12:00  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6712021-10-13T18:12:10  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6722021-10-13T18:13:00  <cfields> fwiw, the conclusion from #secp256k1 was that compiling as c++ would be too risky, given that it was written and will continue to be written against exactly the c89 language.
6732021-10-13T18:15:38  *** dodo__ <dodo__!~dodo@user/dodo> has joined #bitcoin-core-dev
6742021-10-13T18:16:21  *** dodo <dodo!~dodo@user/dodo> has quit IRC (Ping timeout: 245 seconds)
6752021-10-13T18:17:03  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has quit IRC (Ping timeout: 276 seconds)
6762021-10-13T18:19:52  *** promag <promag!~promag@188.250.84.129> has joined #bitcoin-core-dev
6772021-10-13T18:19:52  *** promag__ <promag__!~promag@188.250.84.129> has quit IRC (Read error: Connection reset by peer)
6782021-10-13T18:23:52  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6792021-10-13T18:24:02  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6802021-10-13T18:25:11  *** gnaf <gnaf!~gnaf@86-91-224-60.opennet.kpn.net> has quit IRC (Quit: Konversation terminated!)
6812021-10-13T18:25:33  *** Keele <Keele!~keele@91-158-68-128.elisa-laajakaista.fi> has joined #bitcoin-core-dev
6822021-10-13T18:29:33  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6832021-10-13T18:29:43  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6842021-10-13T18:29:48  *** gnaf <gnaf!~gnaf@86-91-224-60.opennet.kpn.net> has joined #bitcoin-core-dev
6852021-10-13T18:33:48  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6862021-10-13T18:33:59  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6872021-10-13T18:37:59  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6882021-10-13T18:38:08  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6892021-10-13T18:42:08  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6902021-10-13T18:42:17  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6912021-10-13T18:47:18  *** AaronvanW <AaronvanW!~AaronvanW@71pc74.sshunet.nl> has quit IRC (Quit: Leaving...)
6922021-10-13T18:51:19  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6932021-10-13T18:51:28  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6942021-10-13T18:55:28  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6952021-10-13T18:55:37  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6962021-10-13T18:59:37  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6972021-10-13T18:59:47  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
6982021-10-13T19:03:47  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
6992021-10-13T19:03:57  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7002021-10-13T19:07:57  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7012021-10-13T19:08:12  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7022021-10-13T19:08:23  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Remote host closed the connection)
7032021-10-13T19:09:03  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
7042021-10-13T19:09:35  *** meshcollider <meshcollider!meshcollid@user/meshcollider> has quit IRC (Remote host closed the connection)
7052021-10-13T19:09:35  *** paulo <paulo!paulo@user/paulo/x-9032687> has quit IRC (Remote host closed the connection)
7062021-10-13T19:13:26  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 245 seconds)
7072021-10-13T19:15:37  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
7082021-10-13T19:18:55  *** Talkless <Talkless!~Talkless@mail.dargis.net> has quit IRC (Quit: Konversation terminated!)
7092021-10-13T19:20:16  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 252 seconds)
7102021-10-13T19:24:16  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7112021-10-13T19:24:25  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7122021-10-13T19:27:36  *** meshcollider <meshcollider!meshcollid@meshcollider.jujube.ircnow.org> has joined #bitcoin-core-dev
7132021-10-13T19:28:24  *** paulo <paulo!paulo@user/paulo/x-9032687> has joined #bitcoin-core-dev
7142021-10-13T19:29:06  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
7152021-10-13T19:33:06  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7162021-10-13T19:33:15  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7172021-10-13T19:37:15  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7182021-10-13T19:37:24  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7192021-10-13T19:40:27  *** dodo__ is now known as dodo
7202021-10-13T19:43:55  *** ___nick___ <___nick___!~quassel@cpc68286-cdif17-2-0-cust533.5-1.cable.virginm.net> has quit IRC (Ping timeout: 252 seconds)
7212021-10-13T19:47:55  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7222021-10-13T19:48:05  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7232021-10-13T19:54:39  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7242021-10-13T19:54:48  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7252021-10-13T19:58:48  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7262021-10-13T19:58:58  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7272021-10-13T20:02:58  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7282021-10-13T20:03:07  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7292021-10-13T20:03:26  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has joined #bitcoin-core-dev
7302021-10-13T20:07:27  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7312021-10-13T20:07:36  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7322021-10-13T20:11:36  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7332021-10-13T20:11:46  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7342021-10-13T20:15:18  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
7352021-10-13T20:15:18  <bitcoin-git> [bitcoin] hebasto closed pull request #22764: build: Include qt sources for parsing with extract_strings.py (master...210821-translation) https://github.com/bitcoin/bitcoin/pull/22764
7362021-10-13T20:15:19  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
7372021-10-13T20:21:44  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Remote host closed the connection)
7382021-10-13T20:22:19  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
7392021-10-13T20:26:19  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7402021-10-13T20:26:28  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7412021-10-13T20:26:52  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 252 seconds)
7422021-10-13T20:31:41  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7432021-10-13T20:31:51  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7442021-10-13T20:34:11  *** jarthur <jarthur!~jarthur@2603-8080-1540-002d-686c-cb4c-6345-04a1.res6.spectrum.com> has joined #bitcoin-core-dev
7452021-10-13T20:36:06  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
7462021-10-13T20:43:18  <shiza> What's the risk in feeding C89 to C++ compilers?
7472021-10-13T20:43:59  <sipa> the languages are different
7482021-10-13T20:44:51  <sipa> valid C89 Cc   may exhibit ubdefined or implementation defined behavior in C++
7492021-10-13T20:45:00  <sipa> that was garbled
7502021-10-13T20:45:10  <shiza> There must be two or three things in C89 that not every C++ compiler is capable of translating.
7512021-10-13T20:45:28  <sipa> being able to translate is not the issue
7522021-10-13T20:45:33  <shiza> Can't have CI warning them?
7532021-10-13T20:45:55  <sipa> not if we don't know about them
7542021-10-13T20:46:33  *** Guyver2 <Guyver2!Guyver@guyver2.xs4all.nl> has quit IRC (Quit: Going offline, see ya! (www.adiirc.com))
7552021-10-13T20:47:06  <shiza> Do you mean future C++ standards?
7562021-10-13T20:48:15  <shiza> Can C++ drop C89 elements while keeping FFI essences?
7572021-10-13T20:51:12  <sipa> the issue isn't language features, but rules
7582021-10-13T20:51:25  <sipa> C++ for example is stricter about aliasing and alignment than C is
7592021-10-13T20:52:04  <sipa> valid C89 code may be simultaneously compilable by actual C++ compilers but still have undefined behavior
7602021-10-13T20:52:49  <sipa> and i'm sure an expert in both languages could give an exhaustive list of such differences, and we could go over the source code to make sure it isn't the case
7612021-10-13T20:53:30  <sipa> but even then, it places a burden on future libsecp contributors to be simultaneously satisfying all C++'s rules; and those comtributors are mostly C programmers
7622021-10-13T20:54:27  * shiza nods in a mix of ignorance and agreement
7632021-10-13T20:59:30  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7642021-10-13T20:59:39  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7652021-10-13T21:03:23  <shiza> Ugh now I hit the large #secp conversation about it.
7662021-10-13T21:06:41  *** AaronvanW <AaronvanW!~AaronvanW@71pc74.sshunet.nl> has joined #bitcoin-core-dev
7672021-10-13T21:07:01  *** ghostkeeper <ghostkeeper!~ghostkeep@47.196.70.51> has quit IRC ()
7682021-10-13T21:12:44  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7692021-10-13T21:12:53  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7702021-10-13T21:20:11  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7712021-10-13T21:20:21  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7722021-10-13T21:28:23  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7732021-10-13T21:28:32  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7742021-10-13T21:38:47  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7752021-10-13T21:38:57  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7762021-10-13T21:41:07  <theStack> TIL that it is currently not possible to send a serialized message (CSerializedNetMsg instance) to multiple peers
7772021-10-13T21:41:39  <theStack> CConnman::PushMessage uses move semantics... so after one call it's like "aaaaand it's gone" ;)
7782021-10-13T21:42:44  <theStack> not a big deal, but that seems to be the reason the TODO in PeerManagerImpl::NewPoWValidBlock is still there "TODO: Avoid the repeated-serialization here"
7792021-10-13T21:46:12  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Remote host closed the connection)
7802021-10-13T21:46:47  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
7812021-10-13T21:50:17  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Remote host closed the connection)
7822021-10-13T21:50:50  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
7832021-10-13T21:54:50  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7842021-10-13T21:55:00  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7852021-10-13T21:55:25  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 252 seconds)
7862021-10-13T21:58:50  *** ArctVaulMarsHMPJ <ArctVaulMarsHMPJ!~pjetcetal@2.95.44.252> has quit IRC (Quit: EXIT)
7872021-10-13T22:09:54  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
7882021-10-13T22:10:04  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
7892021-10-13T22:14:19  *** rex4539 <rex4539!~rex4539@gateway/tor-sasl/rex4539> has joined #bitcoin-core-dev
7902021-10-13T22:17:42  *** morcos_ <morcos_!~morcos@gateway/tor-sasl/morcos> has joined #bitcoin-core-dev
7912021-10-13T22:19:30  *** morcos <morcos!~morcos@gateway/tor-sasl/morcos> has quit IRC (Ping timeout: 276 seconds)
7922021-10-13T22:19:31  *** morcos_ is now known as morcos
7932021-10-13T22:20:25  *** rex4539 <rex4539!~rex4539@gateway/tor-sasl/rex4539> has quit IRC ()
7942021-10-13T22:21:38  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
7952021-10-13T22:26:10  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 252 seconds)
7962021-10-13T22:27:33  *** bitdex <bitdex!~bitdex@gateway/tor-sasl/bitdex> has joined #bitcoin-core-dev
7972021-10-13T22:32:42  *** gleb7 <gleb7!~gleb@178.150.137.228> has quit IRC (Quit: Ping timeout (120 seconds))
7982021-10-13T22:33:05  *** gleb7 <gleb7!~gleb@178.150.137.228> has joined #bitcoin-core-dev
7992021-10-13T22:33:22  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
8002021-10-13T22:33:24  *** ArctVaulMarsHMPJ <ArctVaulMarsHMPJ!~pjetcetal@2.95.44.252> has joined #bitcoin-core-dev
8012021-10-13T22:37:25  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
8022021-10-13T22:37:33  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
8032021-10-13T22:37:43  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 252 seconds)
8042021-10-13T22:44:09  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
8052021-10-13T22:44:18  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
8062021-10-13T22:48:19  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
8072021-10-13T22:48:28  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
8082021-10-13T22:50:51  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
8092021-10-13T22:54:51  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
8102021-10-13T22:55:02  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
8112021-10-13T22:55:19  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 252 seconds)
8122021-10-13T22:59:19  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
8132021-10-13T22:59:29  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
8142021-10-13T23:07:53  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
8152021-10-13T23:08:02  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
8162021-10-13T23:13:03  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
8172021-10-13T23:13:11  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
8182021-10-13T23:14:03  *** roconnor <roconnor!~roconnor@host-45-58-217-8.dyn.295.ca> has joined #bitcoin-core-dev
8192021-10-13T23:18:03  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
8202021-10-13T23:18:11  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
8212021-10-13T23:22:11  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
8222021-10-13T23:22:16  *** belcher <belcher!~belcher@user/belcher> has quit IRC (Ping timeout: 252 seconds)
8232021-10-13T23:22:20  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
8242021-10-13T23:26:20  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
8252021-10-13T23:26:29  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
8262021-10-13T23:30:30  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
8272021-10-13T23:30:40  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
8282021-10-13T23:34:13  *** belcher <belcher!~belcher@user/belcher> has joined #bitcoin-core-dev
8292021-10-13T23:34:23  *** gleb7 <gleb7!~gleb@178.150.137.228> has quit IRC (Read error: Connection reset by peer)
8302021-10-13T23:34:33  *** gleb7 <gleb7!~gleb@178.150.137.228> has joined #bitcoin-core-dev
8312021-10-13T23:36:55  *** grettke <grettke!~grettke@cpe-65-29-228-30.wi.res.rr.com> has quit IRC (Quit: Textual IRC Client: www.textualapp.com)
8322021-10-13T23:39:41  *** roconnor <roconnor!~roconnor@host-45-58-217-8.dyn.295.ca> has quit IRC (Ping timeout: 245 seconds)
8332021-10-13T23:39:53  *** grettke <grettke!~grettke@cpe-65-29-228-30.wi.res.rr.com> has joined #bitcoin-core-dev
8342021-10-13T23:43:52  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has joined #bitcoin-core-dev
8352021-10-13T23:47:52  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
8362021-10-13T23:48:01  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
8372021-10-13T23:48:10  *** Kaizen_Kintsugi <Kaizen_Kintsugi!Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-99714370> has quit IRC (Ping timeout: 252 seconds)
8382021-10-13T23:52:10  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
8392021-10-13T23:52:19  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev
8402021-10-13T23:57:25  *** c_arc <c_arc!~c_arc@4.53.92.114> has quit IRC (Remote host closed the connection)
8412021-10-13T23:57:34  *** c_arc <c_arc!~c_arc@4.53.92.114> has joined #bitcoin-core-dev