--- Log opened Thu Aug 11 00:00:47 2022 00:17 -!- laanwj [~laanwj@user/laanwj] has quit [Read error: Connection reset by peer] 00:19 -!- laanwj [~laanwj@user/laanwj] has joined #bitcoin-core-pr-reviews 00:20 -!- dhruv_ [~dhruv@165.227.49.220] has quit [Ping timeout: 268 seconds] 00:20 -!- dhruv [~dhruv@165.227.49.220] has joined #bitcoin-core-pr-reviews 00:30 -!- __gotcha [~Thunderbi@natx-145.kulnet.kuleuven.be] has joined #bitcoin-core-pr-reviews 00:36 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:59fe:9bfa:2706:c925] has quit [Ping timeout: 268 seconds] 00:37 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:59fe:9bfa:2706:c925] has joined #bitcoin-core-pr-reviews 00:42 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:59fe:9bfa:2706:c925] has quit [Ping timeout: 268 seconds] 00:42 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:59fe:9bfa:2706:c925] has joined #bitcoin-core-pr-reviews 00:44 -!- _andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has quit [Remote host closed the connection] 00:45 -!- _andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has joined #bitcoin-core-pr-reviews 00:47 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:59fe:9bfa:2706:c925] has quit [Ping timeout: 244 seconds] 00:53 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:59fe:9bfa:2706:c925] has joined #bitcoin-core-pr-reviews 01:15 -!- pablomartin [~pablomart@37.120.148.189] has joined #bitcoin-core-pr-reviews 01:17 -!- pablomartin_ [~pablomart@37.120.148.189] has joined #bitcoin-core-pr-reviews 01:18 -!- pablomartin_ [~pablomart@37.120.148.189] has quit [Remote host closed the connection] 01:19 -!- pablomartin [~pablomart@37.120.148.189] has quit [Client Quit] 01:51 -!- evanlinjin [~root@gateway/tor-sasl/evanlinjin] has quit [Ping timeout: 268 seconds] 01:52 -!- evanlinjin [~root@gateway/tor-sasl/evanlinjin] has joined #bitcoin-core-pr-reviews 01:56 -!- kcalvinalvin [~kcalvinal@ec2-3-38-183-204.ap-northeast-2.compute.amazonaws.com] has quit [Quit: ZNC 1.7.4 - https://znc.in] 01:58 -!- kcalvinalvin [~kcalvinal@ec2-3-38-183-204.ap-northeast-2.compute.amazonaws.com] has joined #bitcoin-core-pr-reviews 01:59 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:59fe:9bfa:2706:c925] has quit [Ping timeout: 255 seconds] 02:01 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:59fe:9bfa:2706:c925] has joined #bitcoin-core-pr-reviews 03:05 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:59fe:9bfa:2706:c925] has quit [Ping timeout: 268 seconds] 03:07 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:59fe:9bfa:2706:c925] has joined #bitcoin-core-pr-reviews 03:07 -!- Coloradomatt [~Coloradom@tmo-074-140.customers.d1-online.com] has joined #bitcoin-core-pr-reviews 03:08 -!- Coloradomatt [~Coloradom@tmo-074-140.customers.d1-online.com] has quit [Client Quit] 03:20 -!- andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has joined #bitcoin-core-pr-reviews 03:22 -!- _andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has quit [Remote host closed the connection] 03:35 -!- __gotcha [~Thunderbi@natx-145.kulnet.kuleuven.be] has quit [Ping timeout: 268 seconds] 03:59 < stickies-v> catching up on yesterday's logs, sorry I couldn't attend - very interesting conversation 03:59 < stickies-v> I have a question re the following two lines, which is the answer to question "Why do nodes (mostly) receive `inv` block announcements while they are doing initial headers sync, even though they indicated preference for `headers` announcements (BIP 130)?" 04:00 < stickies-v> 17:14 the reason is that a node will not announce a new block to a peer using a headers message if the peer has not previously sent a header to which the new header connects to 04:00 < stickies-v> 17:14 See: https://github.com/bitcoin/bitcoin/blob/a6fc293c0a1f27ba1e573bfa16fd76d5f58988b2/src/net_processing.cpp#L4975-L4978 04:01 < stickies-v> I thought it was because in `PeerManImpl::SendMessages()`, we check if a peer is more than 8 headers behind (`peer->m_blocks_for_headers_relay.size() > MAX_BLOCKS_TO_ANNOUNCE`), in which case we revert to `inv` instead of `headers` messages. In which case the linked path isn't even executed (because `fRevertToInv == true`). what am I missing? 04:01 < stickies-v> link: https://github.com/bitcoin/bitcoin/blob/c012875b9ded0a5183602f002738ca823d559518/src/net_processing.cpp#L4929-L4931 04:11 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:59fe:9bfa:2706:c925] has quit [Ping timeout: 268 seconds] 04:20 -!- __gotcha [~Thunderbi@natx-145.kulnet.kuleuven.be] has joined #bitcoin-core-pr-reviews 04:40 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:59fe:9bfa:2706:c925] has joined #bitcoin-core-pr-reviews 05:22 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-pr-reviews 05:53 < dergoegge> stickies-v: you are right in that there are definitely multiple things that will make us revert to announcing via an inv 05:53 < dergoegge> The specific case you mention (`peer->m_blocks_for_headers_relay.size() > MAX_BLOCKS_TO_ANNOUNCE`) just means that the node wants to announce more than 8 blocks (i think that might happen during a larger reorg) and i wouldn't interpret that as "the peer is 8 blocks behind" because the peer might actually know about all the headers or be behind even more. 05:53 < dergoegge> The common case would probably be that `peer->m_blocks_for_headers_relay.size() == 1` (i.e. the node only has one new block to announce) 06:01 < stickies-v> okay yeah that makes sense, I went a bit deeper in the code and it seems like `m_blocks_for_headers_relay` only contains unrelayed headers from newly announced blocks (`CChainState::ActivateBestChain()`) *since the peer connected*, and not the entire diff set (which would be terribly memory inefficient I suppose) 06:59 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 268 seconds] 07:13 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 07:44 < pinheadmz> jonatack looking at https://github.com/bitcoin/bitcoin/pull/20305 -- does this affect rpc estimatesmartfee ? 07:45 < pinheadmz> im running 0.21 and looks like estimatesmartfee still returns BTC/kvB 07:48 < jonatack> pinheadmz: no, the plan is https://github.com/bitcoin/bitcoin/pull/20484#issuecomment-734786305 07:49 < pinheadmz> aha thanks 07:49 < pinheadmz> why was it ever /kB? the /1000 is annoying 07:50 < pinheadmz> im used to thinking of fee rates in /B anyway 07:50 < sipa> Probably because that allowed representing feerates as an integer. 07:50 < jonatack> (it was stalled for some time due to a different issue that was unblocked a while back, and i'm picking up that original plan again) 07:51 < sipa> (With more precision than 1 sat/B increments) 07:53 < jonatack> yes the issue was a bit related to this, and resolved in "wallet: ensure sat/vB feerates are in range (mantissa of 3)" #21786 07:54 < jonatack> https://github.com/bitcoin/bitcoin/pull/21786 07:54 < jonatack> iirc 08:17 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 268 seconds] 08:29 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 08:30 -!- ___nick___ [~quassel@cpc68289-cdif17-2-0-cust317.5-1.cable.virginm.net] has joined #bitcoin-core-pr-reviews 08:33 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 255 seconds] 08:44 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 08:48 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Read error: Connection reset by peer] 08:55 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 08:57 -!- __gotcha [~Thunderbi@natx-145.kulnet.kuleuven.be] has quit [Ping timeout: 268 seconds] 09:59 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 268 seconds] 10:10 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 10:13 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Read error: Connection reset by peer] 10:26 -!- evanlinjin [~root@gateway/tor-sasl/evanlinjin] has quit [Ping timeout: 268 seconds] 10:26 -!- evanlinjin [~root@gateway/tor-sasl/evanlinjin] has joined #bitcoin-core-pr-reviews 10:26 -!- Talkless [~Talkless@mail.dargis.net] has joined #bitcoin-core-pr-reviews 10:27 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 10:55 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Remote host closed the connection] 10:56 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 11:04 -!- Pasha [~Cory@068-187-125-109.res.spectrum.com] has quit [Read error: Connection reset by peer] 11:04 -!- evanlinjin [~root@gateway/tor-sasl/evanlinjin] has quit [Remote host closed the connection] 11:05 -!- evanlinjin [~root@gateway/tor-sasl/evanlinjin] has joined #bitcoin-core-pr-reviews 11:05 -!- Cory [~Cory@068-187-125-109.res.spectrum.com] has joined #bitcoin-core-pr-reviews 11:07 -!- andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has quit [Remote host closed the connection] 11:07 -!- andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has joined #bitcoin-core-pr-reviews 11:07 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Remote host closed the connection] 11:08 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 11:13 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 268 seconds] 11:13 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 11:17 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 255 seconds] 11:18 -!- _andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has joined #bitcoin-core-pr-reviews 11:19 -!- andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has quit [Remote host closed the connection] 11:19 -!- _andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has quit [Remote host closed the connection] 11:19 -!- evanlinjin [~root@gateway/tor-sasl/evanlinjin] has quit [Remote host closed the connection] 11:20 -!- _andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has joined #bitcoin-core-pr-reviews 11:20 -!- evanlinjin [~root@gateway/tor-sasl/evanlinjin] has joined #bitcoin-core-pr-reviews 11:21 -!- _andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has quit [Remote host closed the connection] 11:22 -!- _andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has joined #bitcoin-core-pr-reviews 11:29 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 11:31 -!- ___nick___ [~quassel@cpc68289-cdif17-2-0-cust317.5-1.cable.virginm.net] has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.] 11:33 -!- ___nick___ [~quassel@cpc68289-cdif17-2-0-cust317.5-1.cable.virginm.net] has joined #bitcoin-core-pr-reviews 11:34 -!- ___nick___ [~quassel@cpc68289-cdif17-2-0-cust317.5-1.cable.virginm.net] has quit [Client Quit] 11:35 -!- ___nick___ [~quassel@cpc68289-cdif17-2-0-cust317.5-1.cable.virginm.net] has joined #bitcoin-core-pr-reviews 11:35 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 268 seconds] 11:39 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 12:07 -!- Talkless [~Talkless@mail.dargis.net] has quit [Quit: Konversation terminated!] 12:08 -!- livestradamus [~quassel@user/livestradamus] has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.] 12:09 -!- livestradamus [~quassel@user/livestradamus] has joined #bitcoin-core-pr-reviews 12:26 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Remote host closed the connection] 12:27 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 13:03 -!- ___nick___ [~quassel@cpc68289-cdif17-2-0-cust317.5-1.cable.virginm.net] has quit [Ping timeout: 252 seconds] 13:37 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Remote host closed the connection] 13:37 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 13:42 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 252 seconds] 13:47 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 13:52 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 268 seconds] 13:54 -!- evanlinjin [~root@gateway/tor-sasl/evanlinjin] has quit [Remote host closed the connection] 13:58 -!- evanlinjin [~root@gateway/tor-sasl/evanlinjin] has joined #bitcoin-core-pr-reviews 14:00 -!- Intdtti [~intdtti@146.70.123.180] has joined #bitcoin-core-pr-reviews 14:03 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 14:34 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Remote host closed the connection] 14:35 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 15:10 -!- _andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has quit [Remote host closed the connection] 15:11 -!- _andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has joined #bitcoin-core-pr-reviews 15:16 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 252 seconds] 15:18 -!- _andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has quit [Remote host closed the connection] 15:18 -!- _andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has joined #bitcoin-core-pr-reviews 15:20 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:59fe:9bfa:2706:c925] has quit [Remote host closed the connection] 15:20 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has joined #bitcoin-core-pr-reviews 15:25 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has quit [Ping timeout: 264 seconds] 15:31 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has joined #bitcoin-core-pr-reviews 15:36 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has quit [Ping timeout: 268 seconds] 15:37 -!- brunoerg [~brunoerg@187.183.43.40] has joined #bitcoin-core-pr-reviews 15:42 -!- brunoerg [~brunoerg@187.183.43.40] has quit [Ping timeout: 252 seconds] 16:01 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Remote host closed the connection] 16:02 -!- esixce [~esixce@071-083-149-037.biz.spectrum.com] has joined #bitcoin-core-pr-reviews 16:04 -!- esixce [~esixce@071-083-149-037.biz.spectrum.com] has quit [Client Quit] 16:04 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has joined #bitcoin-core-pr-reviews 16:06 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 16:09 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has quit [Ping timeout: 268 seconds] 16:10 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 255 seconds] 16:14 -!- _andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has quit [Remote host closed the connection] 16:15 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 16:15 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has joined #bitcoin-core-pr-reviews 16:16 -!- Kaizen_K_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 16:19 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 268 seconds] 16:21 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has quit [Ping timeout: 268 seconds] 16:22 -!- Kaizen_K_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Remote host closed the connection] 16:23 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 16:27 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has joined #bitcoin-core-pr-reviews 16:32 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has quit [Ping timeout: 268 seconds] 16:33 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has joined #bitcoin-core-pr-reviews 16:41 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Remote host closed the connection] 16:41 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 16:44 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Read error: Connection reset by peer] 16:47 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 16:52 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 268 seconds] 16:58 -!- evanlinjin [~root@gateway/tor-sasl/evanlinjin] has quit [Remote host closed the connection] 16:59 -!- evanlinjin [~root@gateway/tor-sasl/evanlinjin] has joined #bitcoin-core-pr-reviews 17:03 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 17:06 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Read error: Connection reset by peer] 17:18 -!- pinch_of_salt [~pinch_of_@114.23.246.137] has joined #bitcoin-core-pr-reviews 17:22 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 17:27 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 268 seconds] 17:34 -!- pinch_of_salt [~pinch_of_@114.23.246.137] has quit [Quit: Connection closed] 17:38 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 17:42 -!- Cory [~Cory@068-187-125-109.res.spectrum.com] has quit [Ping timeout: 268 seconds] 17:42 -!- Pasha [~Cory@068-187-125-109.res.spectrum.com] has joined #bitcoin-core-pr-reviews 17:43 -!- Kaizen_K_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 17:43 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 268 seconds] 17:48 -!- Kaizen_K_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 252 seconds] 17:57 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 18:03 -!- Kaizen_K_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 18:07 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 268 seconds] 18:27 -!- Kaizen_K_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Remote host closed the connection] 18:27 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 18:40 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has quit [Ping timeout: 268 seconds] 18:49 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Remote host closed the connection] 18:55 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 19:00 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 252 seconds] 19:10 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has joined #bitcoin-core-pr-reviews 19:13 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 19:15 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has quit [Ping timeout: 268 seconds] 20:00 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has joined #bitcoin-core-pr-reviews 20:17 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 252 seconds] 20:19 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 20:25 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 268 seconds] 20:33 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 21:03 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has quit [Ping timeout: 268 seconds] 21:05 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has joined #bitcoin-core-pr-reviews 21:09 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has quit [Ping timeout: 244 seconds] 21:11 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has joined #bitcoin-core-pr-reviews 21:40 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 268 seconds] 21:52 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 21:57 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 244 seconds] 22:03 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 22:07 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 268 seconds] 22:19 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has quit [Ping timeout: 268 seconds] 22:20 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 22:24 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 255 seconds] 22:25 -!- brunoerg [~brunoerg@187.183.43.40] has joined #bitcoin-core-pr-reviews 22:36 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 23:29 -!- brunoerg [~brunoerg@187.183.43.40] has quit [Ping timeout: 268 seconds] 23:41 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Ping timeout: 252 seconds] 23:53 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has joined #bitcoin-core-pr-reviews 23:55 -!- Kaizen_Kintsugi_ [Kaizen_Kin@gateway/vpn/protonvpn/kaizenkintsugi/x-74018745] has quit [Read error: Connection reset by peer] 23:58 -!- brunoerg [~brunoerg@2804:14d:5281:8ae2:7538:e5f5:7d8b:d394] has joined #bitcoin-core-pr-reviews --- Log closed Fri Aug 12 00:00:48 2022