--- Log opened Fri Mar 18 00:00:29 2022 00:01 < luke-jr> in the meantime, a direct link for bdb 4.8 is http://download.oracle.com/berkeley-db/db-4.8.30.tar.gz 00:02 < luke-jr> IIRC our 'depends' system will also do the download+build for you; and if you prefer, I have a Ubuntu PPA with it here: https://launchpad.net/~luke-jr/+archive/ubuntu/db48 00:06 -!- vysn [~vysn@user/vysn] has joined #bitcoin-core-dev 00:09 -!- AaronvanW [~AaronvanW@user/AaronvanW] has joined #bitcoin-core-dev 00:14 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has quit [Read error: Connection reset by peer] 00:14 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has joined #bitcoin-core-dev 00:17 -!- sudoforge [~sudoforge@wireguard/tunneler/sudoforge] has quit [Ping timeout: 256 seconds] 00:21 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 00:22 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 00:24 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has quit [Read error: Connection reset by peer] 00:24 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has joined #bitcoin-core-dev 00:27 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has joined #bitcoin-core-dev 00:34 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has quit [Read error: Connection reset by peer] 00:35 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has joined #bitcoin-core-dev 00:35 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Ping timeout: 250 seconds] 00:42 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has joined #bitcoin-core-dev 00:42 -!- AaronvanW [~AaronvanW@user/AaronvanW] has quit [Ping timeout: 250 seconds] 00:46 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Ping timeout: 256 seconds] 00:48 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has joined #bitcoin-core-dev 00:56 < vasild> stickies-v: wrt to testing the default-port-preference removal: a coarse way would be to get a ratio of default/non-default ports in all known peers and then get the default/non-default ratio for currently connected peers (outbound) 00:56 < vasild> both ratios should be about the same, meaning we neither prefer nor avoid non-default ports 00:57 < vasild> commands to do that: 00:57 < vasild> (get all known peers): bitcoin-cli getnodeaddresses 0 > /tmp/getnodeaddresses0 00:58 < vasild> (count peers with default port): cat /tmp/getnodeaddresses0 |jq 'map(select(.port == 8333)) |length' 00:58 < vasild> (count peers with non-default port): cat /tmp/getnodeaddresses0 |jq 'map(select(.port != 8333)) |length' 01:01 < vasild> (count connected, outbound peers with default port): bitcoin-cli getpeerinfo |jq 'map(select(.inbound == false)) |map(select(.addr |endswith(":8333"))) |length' 01:02 < vasild> (count connected, outbound peers with non-default port): bitcoin-cli getpeerinfo |jq 'map(select(.inbound == false)) |map(select(.addr |endswith(":8333") |not)) |length' 01:04 < _aj_> vasild: that assumes there's equal reliability for default and non-default ports; checking debug.log for attempted outbound connections whether they succeed or not seems better? 01:04 < vasild> hmm, but given that non-default/default ratio is so low in all known peers and that usually we have ~10 outbound connected peers, it means that connected to non-default is going to be zero anyway... 01:05 < vasild> _aj_: yeah, this is why I said "coarse", there are other variables that influence this, like reliability - maybe 8333 peers are more reliable... 01:06 < vasild> in my case non-default/default in addrman is 0.07 01:08 < vasild> so, if there are 15 outbound peers with port 8333, there should be 1 with !=8333 port 01:10 < vasild> stickies-v, _aj_: maybe a successful test would be to get just one auto outbound connection to a !=8333 peer 01:14 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 01:15 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 01:15 < _aj_> vasild: hmm, looking at my "New outbound .* block-relay-only" log lines (successful connections only), I see 1/434 on a non-default port. I get the same 7% from addrdb 01:21 < _aj_> vasild: with net debug logging on (on a different node), if i look at the "trying connection" lines, i do get 7% 01:21 < _aj_> vasild: (172 out of 2234) 01:21 < vasild> aha! 01:22 < vasild> yeah, "trying connection" from the log is better than querying the currently connected peers, gives a bigger sample 01:23 < _aj_> vasild: same log lines, i get 1 of 271 "New outbound" connections being non-default port 01:23 < vasild> so !=8333 are less "reliable" 01:23 < _aj_> vasild: (1 of 233 as block-relay-only) 01:25 -!- vysn [~vysn@user/vysn] has quit [Ping timeout: 250 seconds] 01:27 -!- mode/#bitcoin-core-dev [+o laanwj] by ChanServ 01:29 -!- mode/#bitcoin-core-dev [+b Guest*!*@*] by laanwj 01:29 -!- mode/#bitcoin-core-dev [-o laanwj] by ChanServ 01:30 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 01:30 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has quit [Ping timeout: 240 seconds] 01:31 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 01:38 < laanwj> please have the minimum decency to set a name when you comment here (you don't necessarily need to register with NickServ, at the moment), it's easier to keep track of the channel that way 01:41 < _aj_> vasild: 15% of lines matching 'connect().*failed after wait' have non-default ports; seems to be most of the discrepency 01:48 -!- sipsorcery [~sipsorcer@2a02:8084:6180:500::12b] has joined #bitcoin-core-dev 01:53 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Ping timeout: 252 seconds] 01:53 < vasild> _aj_: this explains 01:55 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has joined #bitcoin-core-dev 01:59 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Ping timeout: 252 seconds] 02:00 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has joined #bitcoin-core-dev 02:01 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has joined #bitcoin-core-dev 02:06 -!- AaronvanW [~AaronvanW@user/AaronvanW] has joined #bitcoin-core-dev 02:06 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has quit [Ping timeout: 252 seconds] 02:20 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has joined #bitcoin-core-dev 02:23 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has quit [Read error: Connection reset by peer] 02:24 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has joined #bitcoin-core-dev 02:24 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 02:25 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 02:26 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 02:27 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 02:39 -!- AaronvanW [~AaronvanW@user/AaronvanW] has quit [Ping timeout: 256 seconds] 02:47 -!- cold [~cold@user/cold] has quit [Ping timeout: 256 seconds] 02:48 < KillerWasp> mmmm, ok, i finally download the source codes of berkeley db and boost-libs, compiling it and use it for bitcoin-core in the configure step. 02:49 < KillerWasp> but late in 'make' give error again with berkeley, why? i already configure it. I need send the library directory in the 'make' command? how? 02:49 < sipa> please, not here; ask in #bitcoin or look on https://bitcoin.stackexchange.com 02:50 -!- cold [~cold@user/cold] has joined #bitcoin-core-dev 02:51 < KillerWasp> sipa: ok... 02:54 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 02:54 < bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/e09cf64c4828...a17df4e876f9 02:54 < bitcoin-git> bitcoin/master 979271a fanquake: macdeploy: remove unused detached-sig-apply 02:54 < bitcoin-git> bitcoin/master a17df4e fanquake: Merge bitcoin/bitcoin#24603: macdeploy: remove unused detached-sig-apply.s... 02:54 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 02:54 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 02:54 < bitcoin-git> [bitcoin] fanquake merged pull request #24603: macdeploy: remove unused detached-sig-apply.sh (master...unused_detached_sig_apply) https://github.com/bitcoin/bitcoin/pull/24603 02:54 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 02:57 -!- mikehu44 [~quassel@gateway/vpn/pia/mikehu44-jc] has joined #bitcoin-core-dev 03:00 -!- sipsorcery [~sipsorcer@2a02:8084:6180:500::12b] has quit [Ping timeout: 245 seconds] 03:00 -!- sipsorcery [~sipsorcer@2a02:8084:6180:500::12b] has joined #bitcoin-core-dev 03:02 -!- AaronvanW [~AaronvanW@user/AaronvanW] has joined #bitcoin-core-dev 03:06 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Ping timeout: 252 seconds] 03:13 -!- greypw254 [~greypw254@grey.pw] has quit [Quit: I'll be back!] 03:13 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has joined #bitcoin-core-dev 03:13 -!- greypw254 [~greypw254@grey.pw] has joined #bitcoin-core-dev 03:15 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 03:15 < bitcoin-git> [bitcoin] josibake closed pull request #24570: test, refactor: fund tx deterministically in `feature_coinstatindex` (master...josibake-make-coinstatindex-test-deterministic) https://github.com/bitcoin/bitcoin/pull/24570 03:15 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 03:16 -!- bfsfhkacjzgcytf9 [~bfsfhkacj@user/bfsfhkacjzgcytf] has quit [Quit: The Lounge - https://thelounge.chat] 03:16 -!- bfsfhkacjzgcytf9 [~bfsfhkacj@user/bfsfhkacjzgcytf] has joined #bitcoin-core-dev 03:19 < jonatack> laanwj: ty, +1 on people setting a name when commenting on this channel 03:19 < MarcoFalke> KillerWasp: You can use (1) The pre-built release binaries from the website (2) a system bdb, but this is on you to figure out how to (3) our ./depends system 03:19 < MarcoFalke> KillerWasp: There is also no need for bdb, if you don't have a pre-existing wallet.dat. You can create a new sqlite wallet, without bdb. 03:21 < MarcoFalke> This should be documented in the ./doc/build-*.md files (make sure to use the docs of the release you are using) 03:21 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 03:21 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 03:22 < KillerWasp> MarcoFalke: i'm reading the documentation. Say that i need berkeley db for use wallet commands. 03:23 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has quit [Ping timeout: 256 seconds] 03:24 < KillerWasp> also already read the Makefile, BDB_LIBS have the correct directory. 03:25 < KillerWasp> MarcoFalke: https://0x0.st/oNPK.txt 03:27 -!- vysn [~vysn@user/vysn] has joined #bitcoin-core-dev 03:28 < KillerWasp> pffff time to use install_db4.sh ... 03:29 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 03:29 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 03:31 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 03:31 < bitcoin-git> [bitcoin] fanquake opened pull request #24608: doc: clarify that BDB is only required for the legacy wallet in build-unix.md (master...build_unix_correct_bdb_note) https://github.com/bitcoin/bitcoin/pull/24608 03:31 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 03:36 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has joined #bitcoin-core-dev 03:40 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has quit [Ping timeout: 252 seconds] 03:46 -!- yanmaani [~yanmaani@gateway/tor-sasl/yanmaani] has quit [Ping timeout: 240 seconds] 03:46 -!- yanmaani [~yanmaani@gateway/tor-sasl/yanmaani] has joined #bitcoin-core-dev 04:00 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Remote host closed the connection] 04:05 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has joined #bitcoin-core-dev 04:06 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@d137-186-173-166.abhsia.telus.net] has joined #bitcoin-core-dev 04:10 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Ping timeout: 240 seconds] 04:10 -!- ghost43_ [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 04:10 -!- ghost43_ [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 04:10 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 04:11 -!- ghost43_ [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 04:12 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@d137-186-173-166.abhsia.telus.net] has quit [Ping timeout: 240 seconds] 04:16 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has joined #bitcoin-core-dev 04:23 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has joined #bitcoin-core-dev 04:37 -!- jonatack13 [jonatack@user/jonatack] has joined #bitcoin-core-dev 04:41 -!- jonatack [jonatack@user/jonatack] has quit [Ping timeout: 240 seconds] 04:41 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 04:41 < bitcoin-git> [bitcoin] jonatack opened pull request #24609: Clarify -maxtimeadjustment that only outbound peers influence timedata (master...maxtimeadjustment-outbound-peers-only) https://github.com/bitcoin/bitcoin/pull/24609 04:41 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 04:54 < jonatack13> Question, do people using some platforms (macOS?) need to wrap bitcoin-cli string arguments in quotes? i.e. getnodeaddresses 0 "onion" ... or is it fine without quotes for everyone 04:56 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Quit: = ""] 05:10 -!- ghost43_ [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 05:10 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 05:11 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 05:12 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 05:12 < stick> jonatack13: not seeing a reason why you would need to quote these 05:13 < stick> macos uses standard shell (zsh or bash 3.x) 05:17 < jonatack13> stick: thanks. i received review feedback on a doc change some time ago that the quotes were needed for macOS. i'll leave off the quotes and see if anyone complains. 05:18 -!- bomb-on [~bomb-on@user/bomb-on] has joined #bitcoin-core-dev 05:19 < stick> it would be interesting to see a particular example that does not behave like it should 05:19 < jonatack13> yes, maybe they were using an older or different shell 05:19 < stick> maybe there is some difference in quoting between zsh and bash, but I can't think of any 05:20 < stick> also fish is quite popular among macos users 05:21 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Ping timeout: 252 seconds] 05:22 -!- brunoerg [~brunoerg@187.183.43.40] has joined #bitcoin-core-dev 05:24 -!- mikehu44 [~quassel@gateway/vpn/pia/mikehu44-jc] has quit [Ping timeout: 256 seconds] 05:25 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has quit [Ping timeout: 256 seconds] 05:26 -!- mikehu44 [~quassel@gateway/vpn/pia/mikehu44-jc] has joined #bitcoin-core-dev 05:27 -!- brunoerg [~brunoerg@187.183.43.40] has quit [Ping timeout: 250 seconds] 05:28 < jonatack13> CI currently seems to have an issue with this task: [previous releases, uses qt5 dev package and some depends packages, DEBUG] [unsigned char] [buster] 05:28 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has joined #bitcoin-core-dev 05:28 < jonatack13> "Error creating command-line script: failed to create temp file" 05:38 -!- yanmaani [~yanmaani@gateway/tor-sasl/yanmaani] has quit [Remote host closed the connection] 05:42 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has quit [Read error: Connection reset by peer] 05:42 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has joined #bitcoin-core-dev 05:45 -!- yanmaani [~yanmaani@gateway/tor-sasl/yanmaani] has joined #bitcoin-core-dev 05:49 < willcl_ark> On the subject of fish shell, would there be any interest in adding fish autocompletions alongside the bash ones? I have made them for myself already, but didn't know if the project would want them or not. They are dynamically generated from the help pages (like the bash ones) so should be just as low maintenence in theory. 05:53 < laanwj> willcl_ark: sure, why not, as long as someone is willing to maintain them 05:54 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has joined #bitcoin-core-dev 05:54 -!- jespada [~jespada@cpc121022-nmal24-2-0-cust171.19-2.cable.virginm.net] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 05:55 < laanwj> jonatack13: i think that comment was mistaken (though i don't know the entire context), no POSIX compliant shell requires quotes around arguments without special characters in them 05:55 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 05:55 < bitcoin-git> [bitcoin] brunoerg opened pull request #24610: test, lint: check bash version before executing codespell (master...2022-03-bash-lint-spelling) https://github.com/bitcoin/bitcoin/pull/24610 05:55 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 05:55 -!- emzy [~quassel@user/emzy] has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.] 05:56 < laanwj> (it's different if you want to pass, say, a space, a glob character like "*" "?", etc) 05:59 < laanwj> i tried to use fish for a while it's quite neat as a shell it feels really modern though i couldn't really get used to it after so many years of bash 05:59 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has quit [Ping timeout: 260 seconds] 06:02 -!- _flood [flooded@gateway/vpn/protonvpn/flood/x-43489060] has quit [Ping timeout: 260 seconds] 06:03 -!- flooded [flooded@gateway/vpn/protonvpn/flood/x-43489060] has joined #bitcoin-core-dev 06:05 < jonatack13> laanwj: thanks! 06:09 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Remote host closed the connection] 06:09 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 06:09 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has joined #bitcoin-core-dev 06:10 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 06:12 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 06:13 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 06:13 < bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/a17df4e876f9...a7b3123feadb 06:13 < bitcoin-git> bitcoin/master 1bba72d Jon Atack: Clarify in -maxtimeadjustment that only outbound peers influence time data 06:13 < bitcoin-git> bitcoin/master a7b3123 MarcoFalke: Merge bitcoin/bitcoin#24609: Clarify -maxtimeadjustment that only outbound... 06:13 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 06:13 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 06:13 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 06:13 < bitcoin-git> [bitcoin] MarcoFalke merged pull request #24609: Clarify -maxtimeadjustment that only outbound peers influence timedata (master...maxtimeadjustment-outbound-peers-only) https://github.com/bitcoin/bitcoin/pull/24609 06:13 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 06:14 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Ping timeout: 240 seconds] 06:17 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 06:17 < bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/a7b3123feadb...66e2d21ef203 06:17 < bitcoin-git> bitcoin/master d6b24e1 DrahtBot: test: Fix intermittent failure in feature_segwit 06:17 < bitcoin-git> bitcoin/master 66e2d21 MarcoFalke: Merge bitcoin/bitcoin#24578: test: Fix intermittent failure in feature_seg... 06:17 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 06:17 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 06:17 < bitcoin-git> [bitcoin] MarcoFalke merged pull request #24578: test: Fix intermittent failure in feature_segwit (master...2203-testInt-💮) https://github.com/bitcoin/bitcoin/pull/24578 06:17 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 06:20 -!- dougefish [~dougefish@2a00:a040:19e:67b8:8ed1:c610:9029:1239] has quit [Remote host closed the connection] 06:20 -!- dougefish [~dougefish@2a00:a040:19e:67b8:8ed1:c610:9029:1239] has joined #bitcoin-core-dev 06:25 -!- dougefish [~dougefish@2a00:a040:19e:67b8:8ed1:c610:9029:1239] has quit [Ping timeout: 252 seconds] 06:29 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has joined #bitcoin-core-dev 06:30 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has joined #bitcoin-core-dev 06:34 -!- Guyver2 [~Guyver@guyver2.xs4all.nl] has joined #bitcoin-core-dev 06:34 -!- szkl [uid110435@id-110435.uxbridge.irccloud.com] has quit [Quit: Connection closed for inactivity] 06:38 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 06:38 < bitcoin-git> [bitcoin] willcl-ark opened pull request #24611: Add fish completions (master...fish_completions) https://github.com/bitcoin/bitcoin/pull/24611 06:38 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 06:43 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Remote host closed the connection] 06:48 -!- jonatack [jonatack@user/jonatack] has joined #bitcoin-core-dev 06:48 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has joined #bitcoin-core-dev 06:49 -!- jonatack13 [jonatack@user/jonatack] has quit [Ping timeout: 256 seconds] 06:49 -!- real_or_random [~real_or_r@user/real-or-random/x-4440763] has quit [Quit: ZNC 1.8.2 - https://znc.in] 06:50 -!- mikehu44_ [~quassel@gateway/vpn/pia/mikehu44-jc] has joined #bitcoin-core-dev 06:53 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Ping timeout: 250 seconds] 06:53 -!- real_or_random [~real_or_r@user/real-or-random/x-4440763] has joined #bitcoin-core-dev 06:54 -!- mikehu44 [~quassel@gateway/vpn/pia/mikehu44-jc] has quit [Ping timeout: 240 seconds] 06:59 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has joined #bitcoin-core-dev 06:59 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has quit [Read error: Connection reset by peer] 07:00 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has joined #bitcoin-core-dev 07:04 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 07:05 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 07:05 -!- jespada [~jespada@cpc121022-nmal24-2-0-cust171.19-2.cable.virginm.net] has joined #bitcoin-core-dev 07:08 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Remote host closed the connection] 07:13 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has joined #bitcoin-core-dev 07:17 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Ping timeout: 256 seconds] 07:24 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has joined #bitcoin-core-dev 07:25 -!- sugarpuff_ [sid92283@id-92283.lymington.irccloud.com] has quit [Read error: Connection reset by peer] 07:25 -!- larryruane [sid473749@2a03:5180:f:5::7:3a95] has quit [Read error: Connection reset by peer] 07:25 -!- larryruane [sid473749@id-473749.uxbridge.irccloud.com] has joined #bitcoin-core-dev 07:25 -!- sugarpuff_ [sid92283@id-92283.lymington.irccloud.com] has joined #bitcoin-core-dev 07:25 -!- arik [sid402902@id-402902.lymington.irccloud.com] has quit [Ping timeout: 250 seconds] 07:28 -!- mikehu44 [~quassel@gateway/vpn/pia/mikehu44-jc] has joined #bitcoin-core-dev 07:28 -!- arik [sid402902@id-402902.lymington.irccloud.com] has joined #bitcoin-core-dev 07:29 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Ping timeout: 252 seconds] 07:31 -!- mikehu44_ [~quassel@gateway/vpn/pia/mikehu44-jc] has quit [Ping timeout: 250 seconds] 07:32 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has quit [Ping timeout: 240 seconds] 07:41 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 07:41 < bitcoin-git> [bitcoin] fanquake opened pull request #24613: build: remove unused QMAKE_* VARs (master...qt_unused_install_name_tool) https://github.com/bitcoin/bitcoin/pull/24613 07:41 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 07:47 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has joined #bitcoin-core-dev 07:48 -!- sudoforge [~sudoforge@wireguard/tunneler/sudoforge] has joined #bitcoin-core-dev 07:59 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has joined #bitcoin-core-dev 08:00 -!- davterra [~davterra@143.198.56.186] has quit [Quit: Leaving] 08:17 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has quit [Read error: Connection reset by peer] 08:17 -!- flooded [flooded@gateway/vpn/protonvpn/flood/x-43489060] has quit [Ping timeout: 250 seconds] 08:17 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has joined #bitcoin-core-dev 08:25 -!- flooded [flooded@gateway/vpn/protonvpn/flood/x-43489060] has joined #bitcoin-core-dev 08:25 -!- flooded is now known as _flood 08:26 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has quit [Read error: Connection reset by peer] 08:27 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has joined #bitcoin-core-dev 08:28 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 08:28 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 08:33 -!- sipsorcery [~sipsorcer@2a02:8084:6180:500::12b] has quit [Ping timeout: 245 seconds] 08:46 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has quit [Ping timeout: 252 seconds] 08:52 -!- emzy [~quassel@user/emzy] has joined #bitcoin-core-dev 09:00 -!- emzy [~quassel@user/emzy] has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.] 09:00 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has joined #bitcoin-core-dev 09:01 -!- emzy [~quassel@user/emzy] has joined #bitcoin-core-dev 09:02 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 09:02 < bitcoin-git> [bitcoin] atuta opened pull request #24614: Readme update (master...master) https://github.com/bitcoin/bitcoin/pull/24614 09:02 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 09:03 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 09:03 < bitcoin-git> [bitcoin] fanquake closed pull request #24614: Readme update (master...master) https://github.com/bitcoin/bitcoin/pull/24614 09:03 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 09:05 -!- vysn [~vysn@user/vysn] has quit [Ping timeout: 252 seconds] 09:06 -!- emzy [~quassel@user/emzy] has quit [Client Quit] 09:06 -!- emzy [~quassel@user/emzy] has joined #bitcoin-core-dev 09:06 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Ping timeout: 252 seconds] 09:10 -!- mikehu44 [~quassel@gateway/vpn/pia/mikehu44-jc] has quit [Ping timeout: 252 seconds] 09:13 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 09:14 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 09:20 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has joined #bitcoin-core-dev 09:26 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 09:26 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 09:42 < luke-jr> hebasto: https://github.com/bitcoin-core/gui/pull/555 should just be github-merge.py'd into the 23.x branch 10:05 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has quit [Ping timeout: 240 seconds] 10:05 -!- davterra [~davterra@143.198.56.186] has joined #bitcoin-core-dev 10:07 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has joined #bitcoin-core-dev 10:15 -!- NorrinRadd [~username@102.67.16.112] has joined #bitcoin-core-dev 10:25 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Ping timeout: 250 seconds] 10:27 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has joined #bitcoin-core-dev 10:34 -!- AaronvanW [~AaronvanW@user/AaronvanW] has quit [Quit: Leaving...] 10:37 -!- NorrinRadd [~username@102.67.16.112] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 11:01 -!- ifeanyi [~ifeanyi@154.72.167.108] has joined #bitcoin-core-dev 11:04 -!- tralfaz [~davterra@143.198.56.186] has joined #bitcoin-core-dev 11:06 -!- davterra [~davterra@143.198.56.186] has quit [Ping timeout: 240 seconds] 11:08 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 11:08 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has quit [Read error: Connection reset by peer] 11:08 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 11:09 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has joined #bitcoin-core-dev 11:12 -!- Guyver2 [~Guyver@guyver2.xs4all.nl] has left #bitcoin-core-dev [Closing Window] 11:14 -!- bfsfhkacjzgcytf9 [~bfsfhkacj@user/bfsfhkacjzgcytf] has quit [Quit: The Lounge - https://thelounge.chat] 11:19 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 11:19 < bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/66e2d21ef203...2320d31aaacd 11:19 < bitcoin-git> bitcoin/master 307215b fanquake: doc: clarify that BDB is only required for the legacy wallet 11:19 < bitcoin-git> bitcoin/master 2320d31 fanquake: Merge bitcoin/bitcoin#24608: doc: clarify that BDB is only required for th... 11:19 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 11:19 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 11:19 < bitcoin-git> [bitcoin] fanquake merged pull request #24608: doc: clarify that BDB is only required for the legacy wallet in build-unix.md (master...build_unix_correct_bdb_note) https://github.com/bitcoin/bitcoin/pull/24608 11:19 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 11:21 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 11:22 -!- ifeanyi [~ifeanyi@154.72.167.108] has quit [Ping timeout: 256 seconds] 11:22 -!- Willtech [~Willtech@user/Willtech] has joined #bitcoin-core-dev 11:22 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 11:30 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Ping timeout: 252 seconds] 11:32 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has quit [Ping timeout: 250 seconds] 11:32 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has joined #bitcoin-core-dev 11:33 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has joined #bitcoin-core-dev 11:36 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:f97b:bd76:25aa:a0d3] has quit [Ping timeout: 240 seconds] 11:37 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has quit [Ping timeout: 240 seconds] 11:42 -!- ifeanyi [~ifeanyi@154.72.167.108] has joined #bitcoin-core-dev 11:44 -!- brunoerg [~brunoerg@187.183.43.40] has joined #bitcoin-core-dev 11:48 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has joined #bitcoin-core-dev 11:56 -!- sipsorcery [~sipsorcer@2a02:8084:6180:500::12b] has joined #bitcoin-core-dev 11:58 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has quit [Remote host closed the connection] 11:58 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has joined #bitcoin-core-dev 11:59 -!- Kaizen_Kintsugi_ [~Kaizen_Ki@node-1w7jr9yi65te3r2qcrdmyaiye.ipv6.telus.net] has quit [Remote host closed the connection] 11:59 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-dev 12:12 -!- ifeanyi [~ifeanyi@154.72.167.108] has quit [Quit: Konversation terminated!] 12:18 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 12:18 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 12:25 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 12:26 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has quit [Read error: Connection reset by peer] 12:26 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has joined #bitcoin-core-dev 12:28 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 12:40 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has quit [Read error: Connection reset by peer] 12:41 -!- bomb-on [~bomb-on@user/bomb-on] has quit [Read error: Connection reset by peer] 12:41 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has joined #bitcoin-core-dev 12:43 -!- brunoerg [~brunoerg@187.183.43.40] has quit [Remote host closed the connection] 12:43 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 12:43 < bitcoin-git> [bitcoin] achow101 opened pull request #24615: guix: Map guix store prefixes to /usr for cross-architecture reproducibility (master...guix-cross-arch-repro) https://github.com/bitcoin/bitcoin/pull/24615 12:43 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 12:44 -!- jarthur [~jarthur@cpe-70-114-198-37.austin.res.rr.com] has joined #bitcoin-core-dev 12:44 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has joined #bitcoin-core-dev 12:48 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has quit [Ping timeout: 252 seconds] 12:57 -!- bomb-on [~bomb-on@user/bomb-on] has joined #bitcoin-core-dev 13:12 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 13:13 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 13:17 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has joined #bitcoin-core-dev 13:17 -!- NorrinRadd [~username@102.67.16.112] has joined #bitcoin-core-dev 13:20 < cornfeedhobo> does anyone know where the mempool.space folks hang out? 13:23 < stick> cornfeedhobo: twitter? 13:24 < cornfeedhobo> ooof. looks like you are correct. thanks. 13:27 -!- NorrinRadd [~username@102.67.16.112] has quit [Read error: Connection reset by peer] 13:29 -!- NorrinRadd [~username@102.67.16.112] has joined #bitcoin-core-dev 13:32 -!- NorrinRadd [~username@102.67.16.112] has quit [Read error: Connection reset by peer] 13:33 -!- NorrinRadd [~username@102.67.16.112] has joined #bitcoin-core-dev 13:33 < cornfeedhobo> it's interesting that fulcrum electrum server chose to use Qt for it's networking classes 13:35 -!- NorrinRadd [~username@102.67.16.112] has quit [Client Quit] 13:44 < laanwj> qt has a decent cross-platform networking library, that said, choosing it for a non GUI related project is somewhat curious 13:44 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 13:45 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 13:45 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has quit [Remote host closed the connection] 13:47 < laanwj> especially nowadays now that threading, filesystem, and such is part of C++, there was of course a time when it was not and even std::string was crappy, and frameworks such as qt provding half a OS and standard library was very useful 13:50 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has joined #bitcoin-core-dev 13:53 < laanwj> it also provides http, json handling and such in one place, without having to specifially pick out libraries for everything, i guess once you're used to qt's way of doing things it's easy to stick with it 13:55 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has quit [Ping timeout: 240 seconds] 14:01 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has joined #bitcoin-core-dev 14:04 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 14:05 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 14:18 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 14:19 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 14:19 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has quit [Read error: Connection reset by peer] 14:20 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has joined #bitcoin-core-dev 14:21 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has quit [Ping timeout: 250 seconds] 14:22 < cornfeedhobo> indeed 14:23 -!- brunoerg [~brunoerg@187.183.43.40] has joined #bitcoin-core-dev 14:24 -!- sipsorcery [~sipsorcer@2a02:8084:6180:500::12b] has quit [Ping timeout: 268 seconds] 14:38 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Remote host closed the connection] 14:39 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-dev 14:41 -!- Kaizen_K_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-dev 14:41 -!- Talkless [~Talkless@mail.dargis.net] has joined #bitcoin-core-dev 14:43 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 250 seconds] 15:14 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 15:15 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 15:24 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev 15:27 -!- brunoerg [~brunoerg@187.183.43.40] has quit [Ping timeout: 256 seconds] 15:29 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has joined #bitcoin-core-dev 15:34 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has quit [Ping timeout: 252 seconds] 15:35 -!- brunoerg [~brunoerg@187.183.43.40] has joined #bitcoin-core-dev 15:50 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 15:51 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 16:04 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Ping timeout: 240 seconds] 16:08 < KillerWasp> hello, anyone here know where i must go to modify for make a new altcoin? please. 16:09 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 16:10 < sipa> @KillerWasp: not here 16:10 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 16:10 < KillerWasp> sipa: then where? :( 16:11 < sipa> No idea. 16:14 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev 16:23 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 16:24 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 16:31 -!- bomb-on [~bomb-on@user/bomb-on] has quit [Quit: aллилѹіа!] 16:33 -!- Talkless [~Talkless@mail.dargis.net] has quit [Quit: Konversation terminated!] 16:36 -!- hashfunc569 [~user@2601:5c0:c280:7090:78e9:5f82:1899:8c96] has joined #bitcoin-core-dev 16:46 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Ping timeout: 240 seconds] 16:47 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev 17:05 -!- sipsorcery [~sipsorcer@2a02:8084:6180:500::12b] has joined #bitcoin-core-dev 17:07 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 17:08 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 17:14 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Ping timeout: 240 seconds] 17:16 -!- brunoerg [~brunoerg@187.183.43.40] has quit [Remote host closed the connection] 17:17 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev 17:18 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has quit [Read error: Connection reset by peer] 17:19 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has joined #bitcoin-core-dev 17:21 -!- tralfaz [~davterra@143.198.56.186] has quit [Quit: Leaving] 17:22 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has joined #bitcoin-core-dev 17:26 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has quit [Ping timeout: 240 seconds] 17:28 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has joined #bitcoin-core-dev 17:31 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 17:32 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 17:32 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has quit [Ping timeout: 252 seconds] 17:55 -!- arowser [~quassel@111.192.100.250] has joined #bitcoin-core-dev 17:55 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has joined #bitcoin-core-dev 18:02 -!- arowser [~quassel@111.192.100.250] has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.] 18:05 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Ping timeout: 240 seconds] 18:07 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev 18:09 -!- sipsorcery [~sipsorcer@2a02:8084:6180:500::12b] has quit [Ping timeout: 240 seconds] 18:26 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Ping timeout: 240 seconds] 18:28 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev 18:36 -!- grettke [~grettke@cpe-65-29-228-30.wi.res.rr.com] has joined #bitcoin-core-dev 18:37 -!- grettke [~grettke@cpe-65-29-228-30.wi.res.rr.com] has quit [Client Quit] 18:40 -!- helo [~helo@user/helo] has quit [Remote host closed the connection] 18:45 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Ping timeout: 240 seconds] 18:45 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev 18:59 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has quit [Ping timeout: 252 seconds] 19:05 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-dev 19:05 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 19:06 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 19:07 < hebasto> luke-jr: my merge permissions are limited to the main branch and the gui repo pulls, so leaving https://github.com/bitcoin-core/gui/pull/555 merging/backporting to 23.x up to other fellow maintainers 19:08 -!- Kaizen_K_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 252 seconds] 19:16 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Ping timeout: 240 seconds] 19:18 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev 19:18 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 19:18 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 19:30 -!- brunoerg [~brunoerg@187.183.43.40] has joined #bitcoin-core-dev 19:34 -!- brunoerg [~brunoerg@187.183.43.40] has quit [Ping timeout: 250 seconds] 19:37 -!- vysn [~vysn@user/vysn] has joined #bitcoin-core-dev 20:03 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has joined #bitcoin-core-dev 20:04 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 20:05 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 20:06 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 20:06 < bitcoin-git> [bitcoin] RandyMcMillan closed pull request #24143: WIP: net/p2p:rename command*/Command/* to message*/Message* (master...1643068742-rename-COMMAND_SIZE-to-MESSAGE_SIZE) https://github.com/bitcoin/bitcoin/pull/24143 20:06 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 20:06 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 20:06 < bitcoin-git> [bitcoin] RandyMcMillan closed pull request #24090: net/p2p: change nScore and nBestScore data types to int64_t (master...1642450390-issue-24049) https://github.com/bitcoin/bitcoin/pull/24090 20:06 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 20:21 -!- ghost43_ [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 20:23 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 21:01 -!- cmirror [~cmirror@4.53.92.114] has quit [Remote host closed the connection] 21:01 -!- cmirror [~cmirror@4.53.92.114] has joined #bitcoin-core-dev 21:03 -!- TallTim [~talltim@184-83-250-114-dynamic.midco.net] has quit [Remote host closed the connection] 21:04 -!- TallTim [~talltim@184-83-250-114-dynamic.midco.net] has joined #bitcoin-core-dev 21:08 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has quit [Ping timeout: 240 seconds] 21:10 -!- brunoerg [~brunoerg@187.183.43.40] has joined #bitcoin-core-dev 21:25 -!- ghost43_ [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 21:26 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 21:26 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 21:26 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 21:41 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has quit [Read error: Connection reset by peer] 21:41 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has joined #bitcoin-core-dev 22:06 -!- Willtech [~Willtech@user/Willtech] has quit [Read error: Connection reset by peer] 22:06 -!- Willtech_ [~Willtech@user/Willtech] has joined #bitcoin-core-dev 22:07 -!- Willtech_ is now known as Willtech 22:07 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 22:08 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 22:09 -!- arythmetic [~arythmeti@201.192.159.130] has quit [Remote host closed the connection] 22:09 -!- arythmetic [~arythmeti@201.192.159.130] has joined #bitcoin-core-dev 22:14 -!- arythmetic [~arythmeti@201.192.159.130] has quit [Ping timeout: 256 seconds] 22:15 -!- brunoerg [~brunoerg@187.183.43.40] has quit [Ping timeout: 252 seconds] 22:16 -!- mikehu44 [~quassel@gateway/vpn/pia/mikehu44-jc] has joined #bitcoin-core-dev 22:16 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has joined #bitcoin-core-dev 22:27 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 22:28 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 22:29 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has quit [Read error: Connection reset by peer] 22:29 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has joined #bitcoin-core-dev 22:37 -!- sudoforge [~sudoforge@wireguard/tunneler/sudoforge] has quit [Ping timeout: 256 seconds] 22:43 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has quit [Read error: Connection reset by peer] 22:44 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has joined #bitcoin-core-dev 23:03 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 23:04 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 23:08 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has quit [Read error: Connection reset by peer] 23:09 -!- lucasdcf [~lucasdcf@2804:431:c7d8:f893:e8fc:29f0:7723:741e] has joined #bitcoin-core-dev 23:10 -!- Kaizen_K_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-dev 23:13 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 250 seconds] 23:17 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 23:18 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 23:20 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has quit [Ping timeout: 252 seconds] 23:21 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has joined #bitcoin-core-dev 23:26 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has quit [Ping timeout: 240 seconds] 23:27 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:5594:b545:6081:a40b] has joined #bitcoin-core-dev 23:55 -!- Willtech [~Willtech@user/Willtech] has quit [Quit: Willtech] 23:56 -!- Willtech [~Willtech@user/Willtech] has joined #bitcoin-core-dev --- Log closed Sat Mar 19 00:00:30 2022