--- Log opened Mon Jul 27 00:00:31 2020 00:00 -!- arowser_ [~arowser1@67.230.166.11] has quit [Ping timeout: 256 seconds] 00:02 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 00:12 -!- infernix [nix@unaffiliated/infernix] has quit [Ping timeout: 244 seconds] 00:23 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 244 seconds] 00:28 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 00:29 -!- jarthur [~jarthur@2605:6000:1019:48d9:a420:85c7:cdde:309d] has quit [Ping timeout: 260 seconds] 00:31 -!- jarthur [~jarthur@2605:6000:1019:48d9:5831:2328:a4e6:4e6c] has joined #bitcoin-core-dev 00:34 < vasild> sipa: I need varint in order to be able to create and parse addrv2 messages: https://github.com/bitcoin/bips/blob/master/bip-0155.mediawiki "time" and "services" use VARINT 00:36 -!- jonatack [~jon@213.152.162.69] has quit [Ping timeout: 256 seconds] 00:37 < sipa> vasild: heh, that's quite underspecified 00:37 < sipa> bitcoin core's internal varint type isn't used in the p2p protocol anywhere 00:37 < vasild> I implemented (de)ser_varint: https://bpa.st/HTBA, it will end up in some of the addrv2 PRs (still I am only playing with it locally) 00:38 < sipa> vasild: could it just mean compactsize ? 00:38 < sipa> that's the varint type that's used elsewhere in the p2p protocol 00:38 < vasild> Isn't used _yet_ ;-) 00:39 < vasild> I agree it is underspecified other than "see bitcoin core source code" 00:39 < sipa> i don't even see that? 00:39 < vasild> no idea if it is supposed to mean compactsize, wumpus ? 00:41 < vasild> "i don't even see that?" -- yes, not even "see bitcoin core source code", but I think that would be undesirable because the code may change 00:42 < vasild> why are there two encodings, compactsize and varint? 00:43 < sipa> compactsize is the one the original source code and protocol from satoshi's time used 00:43 < sipa> which was called varint everywhere, but compactsize inside the source code (as it was only used to serialize the length of things) 00:44 < sipa> the varint one was inspired by BER's length encoding, with a slight (and in retrospect not worthwhile) efficiency improvement i came up with 00:45 < sipa> it was part of the database redesign in 0.8 that introduced the utxo set chainstate database 00:45 < sipa> where i think it performed better than the compactsize we had 00:46 < vasild> I see 00:47 < vasild> is compactsize specified anywhere (other than "look at the code")? 00:47 < sipa> and maybe part of the confusion here is because the compactsize encoding is often jusy referred to as varint 00:48 < sipa> vasild: not in any BIPs afaik; things that existed in the protocol before the BIPs process existed as generally just taken as gospel 00:48 < vasild> maybe the new type should have been named something else than varint 00:50 < vasild> Ok, so neither one of varint or compactsize is defined in BIPs, but compact size is already used in other places in the p2p protocol whereas varint is not. 00:50 < vasild> BIP155 says: 00:50 < vasild> - Jonas Schnelli: change services field to VARINT, to make the message more compact in the likely case instead of always using 8 bytes. 00:50 < vasild> - Luke-Jr: change time field to VARINT, for post-2038 compatibility. 00:51 < vasild> jonasschnelli: luke-jr: ^^^ Did you mean compactsize instead of varint? Should we change that to compactsize now? 00:52 < sipa> for BIP152 there was initially an intention to use varint, but it was changed to compactsize to simplify specification 00:52 < jonasschnelli> what is the difference between compact size and varint? 00:52 < sipa> vasild: ^ that's what i mean :p 00:52 < vasild> Or, well, if in other specs the word "VARINT" is used to mean "compactsize", then should the BIP155 C++ source code use compactsize? 00:53 < sipa> when people say varint in the context of the protocol, it usually refers to what is known as compactsize in the source code 00:53 < sipa> jonasschnelli: scroll up a few lines, i gave the history :) 00:53 < jonasschnelli> just read back... :) 00:54 -!- arowser_ [~arowser1@67.230.166.11] has quit [Ping timeout: 256 seconds] 00:59 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 01:02 < vasild> git grep -il varint ./bip-0* # 8 occurrences 01:02 < vasild> s/8 occurrences/mentioned in 8 BIPs/ 01:03 < vasild> and "compactsize" is mentioned in 6 BIPs 01:03 < sipa> which ones? 01:03 < vasild> varint: 01:03 < vasild> bip-0010.mediawiki 01:03 < vasild> bip-0023.mediawiki 01:03 < vasild> bip-0037.mediawiki 01:03 < vasild> bip-0098.mediawiki 01:03 < vasild> bip-0154.mediawiki 01:03 < vasild> bip-0155.mediawiki 01:03 < vasild> bip-0180.mediawiki 01:03 < vasild> bip-0322.mediawiki 01:03 < vasild> compactsize: 01:04 < vasild> bip-0152.mediawiki 01:04 < vasild> bip-0157.mediawiki 01:04 < vasild> bip-0158.mediawiki 01:04 < vasild> bip-0330.mediawiki 01:04 < vasild> bip-0341.mediawiki 01:04 < vasild> bip-0342.mediawiki 01:07 < vasild> Anyway, given that compact size is used in p2p and not varint, I suggest that we change the spec to say "compactsize" instead of "varint" with some clarification like "For the purposes of this section, CompactSize refers to the variable-length integer encoding used acros..." (from bip152) and also change the code to use compactsize instead of varint (the code is in 01:07 < vasild> https://github.com/bitcoin/bitcoin/pull/19031) 01:09 < vasild> jonasschnelli: luke-jr: sipa: wumpus: what do you think, (s/VARINT/CompactSize/ in BIP155)? 01:09 -!- promag [~promag@Bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 01:10 -!- promag [~promag@Bl19-22-20.dsl.telepac.pt] has quit [Remote host closed the connection] 01:10 -!- promag [~promag@bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 01:17 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has joined #bitcoin-core-dev 01:19 -!- jonatack [~jon@2a01:e0a:53c:a200:bb54:3be5:c3d0:9ce5] has joined #bitcoin-core-dev 01:23 -!- Pavlenex [~Thunderbi@141.98.103.251] has joined #bitcoin-core-dev 01:29 -!- promag_ [~promag@bl23-82-251.dsl.telepac.pt] has joined #bitcoin-core-dev 01:30 -!- infernix [nix@unaffiliated/infernix] has joined #bitcoin-core-dev 01:31 -!- arowser_ [~arowser1@67.230.166.11] has quit [Ping timeout: 240 seconds] 01:32 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 01:34 -!- promag_ [~promag@bl23-82-251.dsl.telepac.pt] has quit [Ping timeout: 256 seconds] 01:36 -!- Xorlev [~Xorlev@178.239.168.171] has quit [Remote host closed the connection] 01:47 -!- promag_ [~promag@bl23-82-251.dsl.telepac.pt] has joined #bitcoin-core-dev 01:50 < luke-jr> vasild: https://en.bitcoin.it/wiki/Protocol_documentation#Variable_length_integer 01:51 -!- promag_ [~promag@bl23-82-251.dsl.telepac.pt] has quit [Remote host closed the connection] 01:52 -!- promag_ [~promag@bl23-82-251.dsl.telepac.pt] has joined #bitcoin-core-dev 01:52 < luke-jr> I'm not sure it makes sense to use the old varint for time/services.. benefits more from the new varint 02:02 -!- promag_ [~promag@bl23-82-251.dsl.telepac.pt] has quit [Remote host closed the connection] 02:22 -!- kierank1 [~kierank@178.162.209.171] has joined #bitcoin-core-dev 02:34 -!- promag_ [~promag@bl23-82-251.dsl.telepac.pt] has joined #bitcoin-core-dev 02:42 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 02:56 -!- promag_ [~promag@bl23-82-251.dsl.telepac.pt] has quit [Remote host closed the connection] 02:58 -!- promag_ [~promag@bl23-82-251.dsl.telepac.pt] has joined #bitcoin-core-dev 03:03 -!- Marcelino9Daniel [~Marcelino@static.57.1.216.95.clients.your-server.de] has joined #bitcoin-core-dev 03:03 -!- promag_ [~promag@bl23-82-251.dsl.telepac.pt] has quit [Ping timeout: 256 seconds] 03:04 -!- arowser_ [~arowser1@67.230.166.11] has quit [Ping timeout: 240 seconds] 03:06 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 03:20 -!- Marcelino9Daniel [~Marcelino@static.57.1.216.95.clients.your-server.de] has quit [Ping timeout: 265 seconds] 03:21 -!- mutatrum [~quassel@2001:984:6da9:1:6971:f1b1:98d:c5cf] has joined #bitcoin-core-dev 03:47 -!- arowser_ [~arowser1@67.230.166.11] has quit [Ping timeout: 246 seconds] 03:47 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 03:50 -!- infernix [nix@unaffiliated/infernix] has quit [Quit: ZNC - http://znc.sourceforge.net] 03:53 -!- arowser_ [~arowser1@67.230.166.11] has quit [Remote host closed the connection] 03:53 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 03:53 -!- belcher_ [~belcher@unaffiliated/belcher] has joined #bitcoin-core-dev 03:57 -!- belcher [~belcher@unaffiliated/belcher] has quit [Ping timeout: 256 seconds] 03:59 -!- promag_ [~promag@bl23-82-251.dsl.telepac.pt] has joined #bitcoin-core-dev 04:00 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 04:04 -!- promag_ [~promag@bl23-82-251.dsl.telepac.pt] has quit [Ping timeout: 256 seconds] 04:09 < vasild> luke-jr: actually 4 bytes unsigned integer supports time up to year 2106. Only signed 4 bytes will brick after 2038 04:12 < vasild> CAddress::nTime is uint32_t - it will work as is in master until 2106. I think there is no need to change it to varint or compact size in order to make it post-2038 proof. varint or compactsize would need 5 bytes today. 04:19 -!- arowser_ [~arowser1@67.230.166.11] has quit [Ping timeout: 240 seconds] 04:21 < vasild> For services - both varint and compact size will use 1 byte if NODE_NETWORK_LIMITED is not involved. 04:22 < vasild> And if NODE_NETWORK_LIMITED is set, then compactsize will use 3 bytes whereas varint will use 2 bytes. 04:23 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 04:23 < bitcoin-git> [bitcoin] theStack opened pull request #19597: test: test decodepsbt fee calculation (count input value only once per UTXO) (master...20200726-test-check-deceodepsbt-fee-calculation) https://github.com/bitcoin/bitcoin/pull/19597 04:23 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 04:23 < vasild> Is saving 1 byte worth introducing a new encoding? 04:23 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Ping timeout: 265 seconds] 04:27 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 04:32 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 04:32 -!- Pavlenex [~Thunderbi@141.98.103.251] has quit [Quit: Pavlenex] 04:39 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 04:41 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has quit [Ping timeout: 246 seconds] 04:42 -!- Mercury_Vapor [~Mercury_V@174-082-166-092.res.spectrum.com] has joined #bitcoin-core-dev 04:42 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has joined #bitcoin-core-dev 04:43 -!- Pavlenex [~Thunderbi@141.98.103.251] has joined #bitcoin-core-dev 04:44 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 264 seconds] 04:46 -!- arowser_ [~arowser1@67.230.166.11] has quit [Ping timeout: 240 seconds] 04:46 < wumpus> vasild: does it introduce a new encoding? 04:47 < wumpus> saving a byte per address sounds good actually 04:48 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 04:48 < vasild> wumpus: as it turns out VARINT is not used anywhere in P2P, CompactSize is used instead. 04:49 < wumpus> ok 04:49 < vasild> So from P2P point of view VARINT is a new encoding. 04:49 < wumpus> so VARINT is only used in on-disk files? 04:49 < wumpus> agree that it'd be preferable not to introduce it into P2P then 04:50 < wumpus> though it's not a complex encoding 04:50 < vasild> btw, I did not check that myself, but I trust sipa on it 04:50 < vasild> both varint and compactsize are mentioned in some BIPs 04:51 < vasild> but I gather "varint" in BIPs may be used to denote what the source code calls compactsize 04:51 < wumpus> I'm definitely going with sipa's judgement on this :) 04:51 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 04:52 < vasild> yes, it is not complex - I did the python implementation in order to do some more testing of it, python ser/deser: https://bpa.st/HTBA 04:52 -!- vincenzopalazzo [~vincent@host-87-20-89-251.retail.telecomitalia.it] has joined #bitcoin-core-dev 04:54 < vasild> btw, there is one more concern wrt VARINT - it supports unlimited size and the deserializer would throw an exception for a code like: uint64_t x; stream >> VARINT(x); given a specially crafted sequence of bytes 04:55 < vasild> e.g. 9 bytes that all have the first bit set would overflow uint64_t 04:57 -!- promag_ [~promag@bl23-82-251.dsl.telepac.pt] has joined #bitcoin-core-dev 04:57 < vasild> So, any code that reads varint from the network has to do: try { stream >> VARINT(x); } catch (...) { aha! } 04:58 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 04:58 < bitcoin-git> [bitcoin] laanwj pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/31d2b4098a9e...b62fbf9e1c19 04:58 < bitcoin-git> bitcoin/master 7b3851e Hennadii Stepanov: refactor: Drop unused CBufferedFile::Seek() 04:58 < bitcoin-git> bitcoin/master b62fbf9 Wladimir J. van der Laan: Merge #19593: refactor: Drop unused CBufferedFile::Seek() 04:58 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 04:58 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 04:58 < bitcoin-git> [bitcoin] laanwj merged pull request #19593: refactor: Drop unused CBufferedFile::Seek() (master...200726-seek) https://github.com/bitcoin/bitcoin/pull/19593 04:58 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 05:00 -!- kierank1 [~kierank@178.162.209.171] has quit [] 05:01 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 05:01 < bitcoin-git> [bitcoin] troygiorshev opened pull request #19599: Clean message_count and last_message (master...2020-07-clean-message_count) https://github.com/bitcoin/bitcoin/pull/19599 05:01 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 05:01 -!- promag_ [~promag@bl23-82-251.dsl.telepac.pt] has quit [Ping timeout: 256 seconds] 05:10 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 05:10 < bitcoin-git> [bitcoin] troygiorshev closed pull request #19580: test: Remove message_count (master...2020-07-remove-message_count) https://github.com/bitcoin/bitcoin/pull/19580 05:10 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 05:10 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Remote host closed the connection] 05:10 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 05:11 -!- mably [uid99779@gateway/web/irccloud.com/x-yyyzojlfqjcpbokm] has joined #bitcoin-core-dev 05:16 -!- promag_ [~promag@bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 05:18 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Ping timeout: 256 seconds] 05:20 -!- promag_ [~promag@bl19-22-20.dsl.telepac.pt] has quit [Ping timeout: 240 seconds] 05:21 -!- amcrae1 [~amcrae@178.162.209.171] has joined #bitcoin-core-dev 05:24 -!- Pavlenex [~Thunderbi@141.98.103.251] has quit [Ping timeout: 240 seconds] 05:25 -!- Pavlenex [~Thunderbi@141.98.103.251] has joined #bitcoin-core-dev 05:31 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 05:34 -!- Pavlenex [~Thunderbi@141.98.103.251] has quit [Quit: Pavlenex] 05:41 -!- Davterra [~Davterra@193.32.127.227] has quit [Read error: Connection reset by peer] 05:41 -!- Davterra [~Davterra@193.32.127.227] has joined #bitcoin-core-dev 05:44 -!- Guyver2 [Guyver@guyver2.xs4all.nl] has joined #bitcoin-core-dev 05:46 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has quit [Ping timeout: 256 seconds] 05:49 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has joined #bitcoin-core-dev 05:56 -!- arowser_ [~arowser1@67.230.166.11] has quit [Ping timeout: 256 seconds] 05:56 -!- Deacyde [~Deacyde@unaffiliated/deacyde] has joined #bitcoin-core-dev 05:58 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 06:01 -!- Deacyde [~Deacyde@unaffiliated/deacyde] has quit [Client Quit] 06:07 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Remote host closed the connection] 06:07 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 06:08 -!- arowser_ [~arowser1@67.230.166.11] has quit [Remote host closed the connection] 06:08 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 06:09 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Remote host closed the connection] 06:09 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 06:10 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Remote host closed the connection] 06:10 -!- vasild_ [~vd@gateway/tor-sasl/vasild] has joined #bitcoin-core-dev 06:10 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 06:12 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Remote host closed the connection] 06:12 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 06:12 -!- vasild [~vd@gateway/tor-sasl/vasild] has quit [Ping timeout: 240 seconds] 06:12 -!- vasild_ is now known as vasild 06:15 -!- infernix [~nix@unaffiliated/infernix] has joined #bitcoin-core-dev 06:23 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Ping timeout: 264 seconds] 06:23 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Ping timeout: 256 seconds] 06:29 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 06:30 -!- harrigan [~harrigan@ptr-93-89-242-235.ip.airwire.ie] has quit [Quit: ZNC 1.7.5 - https://znc.in] 06:30 -!- harrigan [~harrigan@ptr-93-89-242-235.ip.airwire.ie] has joined #bitcoin-core-dev 06:30 -!- proofofkeags [~proofofke@174-29-8-246.hlrn.qwest.net] has joined #bitcoin-core-dev 06:32 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 06:40 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Ping timeout: 240 seconds] 06:42 -!- infernix [~nix@unaffiliated/infernix] has quit [Quit: ZNC - http://znc.sourceforge.net] 06:45 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 06:45 -!- mdunnio [~mdunnio@208.59.170.5] has joined #bitcoin-core-dev 06:45 -!- Earnest16Gottlie [~Earnest16@static.57.1.216.95.clients.your-server.de] has joined #bitcoin-core-dev 06:50 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Quit: = ""] 06:51 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Remote host closed the connection] 06:51 -!- Earnest16Gottlie [~Earnest16@static.57.1.216.95.clients.your-server.de] has quit [Ping timeout: 264 seconds] 06:51 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 06:57 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Ping timeout: 256 seconds] 07:01 -!- infernix [~nix@unaffiliated/infernix] has joined #bitcoin-core-dev 07:02 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 07:09 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Ping timeout: 240 seconds] 07:11 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 07:13 -!- mdunnio [~mdunnio@208.59.170.5] has quit [Remote host closed the connection] 07:13 -!- arowser_ [~arowser1@67.230.166.11] has quit [Remote host closed the connection] 07:13 -!- mdunnio [~mdunnio@208.59.170.5] has joined #bitcoin-core-dev 07:13 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 07:18 -!- proofofkeags [~proofofke@174-29-8-246.hlrn.qwest.net] has quit [Ping timeout: 240 seconds] 07:29 -!- mably [uid99779@gateway/web/irccloud.com/x-yyyzojlfqjcpbokm] has quit [Quit: Connection closed for inactivity] 07:30 -!- jb55 [~jb55@gateway/tor-sasl/jb55] has quit [Quit: jb55] 07:31 -!- jb55 [~jb55@gateway/tor-sasl/jb55] has joined #bitcoin-core-dev 07:32 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Ping timeout: 256 seconds] 07:32 -!- Davterra [~Davterra@193.32.127.227] has quit [Read error: Connection reset by peer] 07:40 -!- Davterra [~Davterra@193.32.127.227] has joined #bitcoin-core-dev 07:44 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 07:57 -!- Davterra [~Davterra@193.32.127.227] has quit [Quit: Leaving] 07:59 -!- Davterra [~Davterra@104.200.129.213] has joined #bitcoin-core-dev 08:00 -!- amcrae1 [~amcrae@178.162.209.171] has quit [] 08:01 -!- hack_you_now [~hack305@78.191.142.199] has joined #bitcoin-core-dev 08:03 -!- Deacyde [~Deacyde@unaffiliated/deacyde] has joined #bitcoin-core-dev 08:07 -!- infernix [~nix@unaffiliated/infernix] has quit [Quit: ZNC - http://znc.sourceforge.net] 08:11 -!- Guyver2 [Guyver@guyver2.xs4all.nl] has quit [Ping timeout: 256 seconds] 08:14 -!- Guyver2 [Guyver@guyver2.xs4all.nl] has joined #bitcoin-core-dev 08:17 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Ping timeout: 240 seconds] 08:20 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Ping timeout: 240 seconds] 08:21 -!- gnomus [~gnomus@185.204.1.185] has joined #bitcoin-core-dev 08:25 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 08:29 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 08:31 -!- vasild_ [~vd@gateway/tor-sasl/vasild] has joined #bitcoin-core-dev 08:35 -!- vasild [~vd@gateway/tor-sasl/vasild] has quit [Ping timeout: 240 seconds] 08:35 -!- vasild_ is now known as vasild 08:35 -!- roconnor [~roconnor@host-45-58-195-140.dyn.295.ca] has quit [Ping timeout: 260 seconds] 08:35 -!- roconnor [~roconnor@host-184-164-2-204.dyn.295.ca] has joined #bitcoin-core-dev 08:37 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has quit [Ping timeout: 265 seconds] 08:41 -!- gnomus [~gnomus@185.204.1.185] has quit [Ping timeout: 256 seconds] 08:56 -!- wgolden [~wgolden@194.35.233.43] has joined #bitcoin-core-dev 08:56 -!- infernix [nix@unaffiliated/infernix] has joined #bitcoin-core-dev 08:57 -!- arowser_ [~arowser1@67.230.166.11] has quit [Ping timeout: 240 seconds] 08:58 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 08:59 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Ping timeout: 265 seconds] 09:04 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 09:07 -!- proofofkeags [~proofofke@2601:280:c280:e500:e11b:702e:a460:58b9] has joined #bitcoin-core-dev 09:11 -!- infernix [nix@unaffiliated/infernix] has quit [Quit: ZNC - http://znc.sourceforge.net] 09:28 -!- jarthur_ [~jarthur@2605:6000:1019:48d9:454d:a9bc:828:d5c] has joined #bitcoin-core-dev 09:28 -!- Talkless [~Talkless@hst-227-49.splius.lt] has joined #bitcoin-core-dev 09:30 -!- jarthur [~jarthur@2605:6000:1019:48d9:5831:2328:a4e6:4e6c] has quit [Ping timeout: 244 seconds] 09:39 < alko89> hi, I have a question about segwit (I know late...) 09:39 < alko89> so if the segwit data is separated and not part of the blockchain 09:39 < alko89> what is the incentive to store that data? 09:40 < sipa> it is part of the blockchain, and committed to by blocks 09:40 < sipa> just not by the txid that are used by other transactions that refer back to it 09:40 < alko89> but the block is 1MB and the withess data is 4MB right? 09:40 < alko89> ahhh 09:41 < alko89> so when the utxo is spent, the data gets removed? 09:41 < sipa> no 09:41 < sipa> it's part of the blockchain just as much as everything else 09:41 < sipa> it's just separate 09:41 < sipa> but it is data that never enters the utxo set, so it has less impact on nodes' operations 09:41 < alko89> hmmmm...but that means the block size did increase with segwit update :P 09:41 < sipa> yes, of course 09:42 < alko89> awwwwwwww!!!! 09:42 < alko89> thanks! 09:42 < sipa> https://bitcoin.stackexchange.com/questions/52196/is-segwit-a-blocksize-increase-or-more-efficient-use-of-blockspace 09:47 < alko89> another question: If I'm not mistaken segwit transactions are visible by the old nodes as being spendable by all? 09:47 -!- infernix [~nix@unaffiliated/infernix] has joined #bitcoin-core-dev 09:48 < sipa> bitcoin.stackexchange.com is probably a better place to ask 09:48 < sipa> there are plenty of questions on that topic already 09:53 -!- Pavlenex [~Thunderbi@141.98.103.251] has joined #bitcoin-core-dev 10:00 -!- proofofkeags [~proofofke@2601:280:c280:e500:e11b:702e:a460:58b9] has quit [Remote host closed the connection] 10:05 -!- rh0nj [~rh0nj@88.99.167.175] has quit [Remote host closed the connection] 10:05 -!- asoltys [~root@s207-81-214-2.bc.hsia.telus.net] has joined #bitcoin-core-dev 10:05 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has quit [Quit: leaving] 10:05 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has joined #bitcoin-core-dev 10:06 -!- rh0nj [~rh0nj@88.99.167.175] has joined #bitcoin-core-dev 10:06 -!- promag_ [~promag@Bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 10:10 -!- promag_ [~promag@Bl19-22-20.dsl.telepac.pt] has quit [Ping timeout: 240 seconds] 10:11 -!- esotericnonsense [~esotericn@unaffiliated/esotericnonsense] has quit [Ping timeout: 240 seconds] 10:15 -!- Pavlenex [~Thunderbi@141.98.103.251] has quit [Quit: Pavlenex] 10:16 -!- Pavlenex [~Thunderbi@141.98.103.251] has joined #bitcoin-core-dev 10:16 -!- Pavlenex [~Thunderbi@141.98.103.251] has quit [Client Quit] 10:19 -!- pinheadmz [~pinheadmz@pool-100-33-69-78.nycmny.fios.verizon.net] has quit [Ping timeout: 260 seconds] 10:19 -!- mutatrum [~quassel@2001:984:6da9:1:6971:f1b1:98d:c5cf] has quit [Ping timeout: 244 seconds] 10:20 -!- Pavlenex [~Thunderbi@141.98.103.251] has joined #bitcoin-core-dev 10:21 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Ping timeout: 264 seconds] 10:22 -!- jarthur_ is now known as jarthur 10:24 -!- esotericnonsense [~esotericn@unaffiliated/esotericnonsense] has joined #bitcoin-core-dev 10:26 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 10:34 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Ping timeout: 240 seconds] 10:35 -!- someone235 [uid419897@gateway/web/irccloud.com/x-ddezuxjzkvsewcxq] has quit [Quit: Connection closed for inactivity] 10:39 -!- proofofkeags [~proofofke@2601:280:c280:e500:e11b:702e:a460:58b9] has joined #bitcoin-core-dev 10:41 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 10:44 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 10:44 < bitcoin-git> [bitcoin] hebasto opened pull request #19600: doc: Fix log message for -reindex (master...200727-load-log) https://github.com/bitcoin/bitcoin/pull/19600 10:44 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 10:48 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Ping timeout: 240 seconds] 10:52 -!- earlz [~earlz@earlz.net] has joined #bitcoin-core-dev 10:56 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 10:57 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has quit [Ping timeout: 256 seconds] 10:58 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has joined #bitcoin-core-dev 11:00 -!- wgolden [~wgolden@194.35.233.43] has quit [] 11:00 -!- proofofkeags [~proofofke@2601:280:c280:e500:e11b:702e:a460:58b9] has quit [Remote host closed the connection] 11:03 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Ping timeout: 240 seconds] 11:04 -!- Pavlenex [~Thunderbi@141.98.103.251] has quit [Quit: Pavlenex] 11:06 -!- mutatrum [~quassel@2001:984:6da9:1:6971:f1b1:98d:c5cf] has joined #bitcoin-core-dev 11:10 * midnight prods sipa re: graphs..? 11:10 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 11:16 -!- hack_you_now [~hack305@78.191.142.199] has quit [Quit: Leaving] 11:18 -!- thunderbiscuit [8e78f779@142.120.247.121] has joined #bitcoin-core-dev 11:21 -!- dscho [~dscho@194.35.233.43] has joined #bitcoin-core-dev 11:27 < sipa> midnight: oops, on it 11:28 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 240 seconds] 11:31 < midnight> <3 11:32 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 11:34 -!- thunderbiscuit1 [~Thunderbi@142.120.247.121] has joined #bitcoin-core-dev 11:37 -!- mutatrum [~quassel@2001:984:6da9:1:6971:f1b1:98d:c5cf] has quit [Ping timeout: 244 seconds] 11:55 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has quit [Ping timeout: 240 seconds] 11:57 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has joined #bitcoin-core-dev 11:57 -!- vasild [~vd@gateway/tor-sasl/vasild] has quit [Ping timeout: 240 seconds] 12:00 -!- Talkless [~Talkless@hst-227-49.splius.lt] has quit [Quit: Konversation terminated!] 12:01 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Ping timeout: 256 seconds] 12:01 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 12:02 -!- proofofkeags [~proofofke@2601:280:c280:e500:e1e2:2f57:67a3:e127] has joined #bitcoin-core-dev 12:06 -!- proofofkeags [~proofofke@2601:280:c280:e500:e1e2:2f57:67a3:e127] has quit [Ping timeout: 244 seconds] 12:12 -!- arowser_ [~arowser1@67.230.166.11] has quit [Remote host closed the connection] 12:12 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 12:12 < sipa> midnight: better? 12:15 -!- isis is now known as isis_ 12:23 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Ping timeout: 256 seconds] 12:26 < midnight> sipa: beautiful! 12:28 < ahmed_> https://gist.github.com/ahmedbodi/c19eae5afddb72348a53d7b71b185bae <- does anyone have any ideas what im doing wrong here? i get a CDataStream error while trying to connect to the P2P port of bitcoind 12:29 < sipa> ahmed_: most likely that means you sent a message that's shorter than expected 12:30 < ahmed_> @sipa thats why im confused, ive pulled CAddress code from @petertodd's bitcoin-python and the Version message code is tidied up version of the msg_version code in his repo 12:30 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 12:32 -!- vasild [~vd@gateway/tor-sasl/vasild] has joined #bitcoin-core-dev 12:35 -!- mutatrum [~quassel@2001:984:6da9:1:6971:f1b1:98d:c5cf] has joined #bitcoin-core-dev 12:40 -!- proofofkeags [~proofofke@2601:280:c280:e500:e1e2:2f57:67a3:e127] has joined #bitcoin-core-dev 12:45 -!- proofofkeags [~proofofke@2601:280:c280:e500:e1e2:2f57:67a3:e127] has quit [Ping timeout: 260 seconds] 12:46 -!- mutatrum [~quassel@2001:984:6da9:1:6971:f1b1:98d:c5cf] has quit [Ping timeout: 244 seconds] 13:01 -!- proofofkeags [~proofofke@2601:280:c280:e500:e1e2:2f57:67a3:e127] has joined #bitcoin-core-dev 13:02 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 13:02 < bitcoin-git> [bitcoin] JeremyRubin opened pull request #19601: Refactoring CHashWriter & Get{Prevouts,Sequence,Outputs}Hash to SHA256 (Alternative to #18071) (master...refactoring-hashers-2) https://github.com/bitcoin/bitcoin/pull/19601 13:02 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 13:04 -!- filchef [~filchef@212.104.97.177] has joined #bitcoin-core-dev 13:05 -!- filchef [~filchef@212.104.97.177] has quit [Client Quit] 13:11 -!- ossifrage [~ossifrage@unaffiliated/ossifrage] has quit [Quit: Leaving] 13:18 -!- dscho [~dscho@194.35.233.43] has quit [Remote host closed the connection] 13:22 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 13:22 < bitcoin-git> [bitcoin] achow101 opened pull request #19602: wallet: Migrate legacy wallets to descriptor wallets (master...descriptor-wallet-migration) https://github.com/bitcoin/bitcoin/pull/19602 13:22 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 13:25 -!- mutatrum [~quassel@2001:984:6da9:1:6971:f1b1:98d:c5cf] has joined #bitcoin-core-dev 13:34 -!- alpounet [~alpounet@185.204.1.185] has joined #bitcoin-core-dev 13:55 -!- owowo [~ovovo@s91904423.blix.com] has joined #bitcoin-core-dev 13:55 -!- owowo [~ovovo@s91904423.blix.com] has quit [Changing host] 13:55 -!- owowo [~ovovo@unaffiliated/ovovo] has joined #bitcoin-core-dev 14:00 -!- alpounet [~alpounet@185.204.1.185] has quit [] 14:14 -!- isis_ is now known as isis 14:14 -!- isis is now known as isis_ 14:17 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Ping timeout: 240 seconds] 14:21 -!- ogelbukh [~ogelbukh@217.146.82.202] has joined #bitcoin-core-dev 14:26 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 14:32 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Ping timeout: 246 seconds] 14:45 -!- pinheadmz [~pinheadmz@pool-100-33-69-78.nycmny.fios.verizon.net] has joined #bitcoin-core-dev 14:46 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Ping timeout: 240 seconds] 14:52 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 14:52 -!- Guyver2 [Guyver@guyver2.xs4all.nl] has quit [Quit: Going offline, see ya! (www.adiirc.com)] 14:53 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 15:00 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Ping timeout: 264 seconds] 15:33 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Remote host closed the connection] 15:34 -!- marcoagner [~user@2001:8a0:6a45:1900:2fd7:e0f0:d356:dd70] has quit [Ping timeout: 260 seconds] 15:37 -!- ossifrage [~ossifrage@unaffiliated/ossifrage] has joined #bitcoin-core-dev 15:44 -!- owowo [~ovovo@unaffiliated/ovovo] has quit [Ping timeout: 256 seconds] 15:55 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has joined #bitcoin-core-dev 16:01 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Remote host closed the connection] 16:02 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 16:19 -!- Evel-Knievel [~Evel-Knie@d5152f744.static.telenet.be] has quit [Ping timeout: 240 seconds] 16:19 -!- Evel-Knievel [~Evel-Knie@d5152f744.static.telenet.be] has joined #bitcoin-core-dev 16:21 -!- mdunnio [~mdunnio@208.59.170.5] has quit [Remote host closed the connection] 16:41 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has quit [Ping timeout: 240 seconds] 16:46 -!- vincenzopalazzo [~vincent@host-87-20-89-251.retail.telecomitalia.it] has quit [Remote host closed the connection] 16:48 -!- proofofkeags [~proofofke@2601:280:c280:e500:e1e2:2f57:67a3:e127] has quit [Remote host closed the connection] 16:49 -!- nckx is now known as ^ 16:50 -!- ^ is now known as nckx 16:54 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has quit [Ping timeout: 240 seconds] 17:00 -!- ogelbukh [~ogelbukh@217.146.82.202] has quit [] 17:01 -!- mdunnio [~mdunnio@208.59.170.5] has joined #bitcoin-core-dev 17:04 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 17:06 -!- mdunnio [~mdunnio@208.59.170.5] has quit [Ping timeout: 264 seconds] 17:17 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 17:22 -!- ByronT [~ByronT@77.243.177.38] has joined #bitcoin-core-dev 17:31 -!- proofofkeags [~proofofke@174-29-8-246.hlrn.qwest.net] has joined #bitcoin-core-dev 17:35 -!- arowser_ [~arowser1@67.230.166.11] has quit [Remote host closed the connection] 17:35 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 17:35 -!- proofofkeags [~proofofke@174-29-8-246.hlrn.qwest.net] has quit [Ping timeout: 256 seconds] 17:43 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 17:48 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 246 seconds] 17:48 -!- promag_ [~promag@bl19-22-20.dsl.telepac.pt] has joined #bitcoin-core-dev 17:51 -!- CodeShark___ [sid126576@gateway/web/irccloud.com/x-hxpufhmckcjwcspc] has quit [Ping timeout: 240 seconds] 17:51 -!- CodeShark___ [sid126576@gateway/web/irccloud.com/x-sbibwyjkowqluexo] has joined #bitcoin-core-dev 17:52 -!- stackingcore21_ [~stackingc@2604:a880:2:d0::1bda:1001] has joined #bitcoin-core-dev 17:52 -!- peltre [sid268329@gateway/web/irccloud.com/x-mcgnksoyzsyeokqf] has quit [Ping timeout: 240 seconds] 17:52 -!- valwal_ [sid334773@gateway/web/irccloud.com/x-skdjatjtpmrtqhqb] has quit [Ping timeout: 240 seconds] 17:52 -!- stackingcore21 [~stackingc@2604:a880:2:d0::1bda:1001] has quit [Ping timeout: 240 seconds] 17:54 -!- valwal_ [sid334773@gateway/web/irccloud.com/x-klnweyxemextthwx] has joined #bitcoin-core-dev 17:55 -!- peltre [sid268329@gateway/web/irccloud.com/x-bmxykdtbdyxncaja] has joined #bitcoin-core-dev 18:00 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Ping timeout: 240 seconds] 18:04 -!- promag_ [~promag@bl19-22-20.dsl.telepac.pt] has quit [Remote host closed the connection] 18:05 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Ping timeout: 265 seconds] 18:05 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 18:07 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 18:17 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Remote host closed the connection] 18:17 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 18:19 -!- troygiorshev [~troygiors@CPEdcef09a0ed55-CM0c473d74be00.cpe.net.cable.rogers.com] has joined #bitcoin-core-dev 18:22 -!- mdunnio [~mdunnio@208.59.170.5] has joined #bitcoin-core-dev 18:26 -!- thunderbiscuit [8e78f779@142.120.247.121] has quit [Remote host closed the connection] 18:55 -!- thunderbiscuit [~br@142.120.247.121] has joined #bitcoin-core-dev 19:04 -!- thunderbiscuit1 [~Thunderbi@142.120.247.121] has left #bitcoin-core-dev [] 19:04 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 260 seconds] 19:07 -!- arowser_ [~arowser1@67.230.166.11] has quit [Remote host closed the connection] 19:15 -!- davec [~davec@cpe-24-243-240-159.hot.res.rr.com] has quit [Ping timeout: 246 seconds] 19:16 -!- davec [~davec@cpe-24-243-240-159.hot.res.rr.com] has joined #bitcoin-core-dev 19:19 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 19:27 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev 19:32 -!- thunderbiscuit[m [thunderbis@gateway/shell/matrix.org/x-zngstxzjencbsmvd] has joined #bitcoin-core-dev 19:35 -!- thunderbiscuit [~br@142.120.247.121] has left #bitcoin-core-dev [] 19:45 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 19:51 -!- Madars [~null@unaffiliated/madars] has quit [Ping timeout: 264 seconds] 19:52 -!- arowser_ [~arowser1@67.230.166.11] has quit [Ping timeout: 264 seconds] 19:53 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 19:57 -!- arowser_ [~arowser1@67.230.166.11] has quit [Remote host closed the connection] 19:57 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 19:58 -!- proofofkeags [~proofofke@174-29-8-246.hlrn.qwest.net] has joined #bitcoin-core-dev 20:00 -!- ByronT [~ByronT@77.243.177.38] has quit [] 20:02 -!- notmandatory[m] [notmandato@gateway/shell/matrix.org/x-rxjucpxtdewksqkj] has joined #bitcoin-core-dev 20:14 -!- Madars [~null@unaffiliated/madars] has joined #bitcoin-core-dev 20:17 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 20:17 -!- mdunnio [~mdunnio@208.59.170.5] has quit [Remote host closed the connection] 20:17 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 20:21 -!- JesusFreke [~JesusFrek@89.47.234.28] has joined #bitcoin-core-dev 20:24 -!- arowser_ [~arowser1@67.230.166.11] has quit [Remote host closed the connection] 20:24 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 20:26 -!- arowser_ [~arowser1@67.230.166.11] has quit [Remote host closed the connection] 20:26 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 20:31 -!- vasild_ [~vd@gateway/tor-sasl/vasild] has joined #bitcoin-core-dev 20:34 -!- vasild [~vd@gateway/tor-sasl/vasild] has quit [Ping timeout: 240 seconds] 20:34 -!- vasild_ is now known as vasild 20:36 < fanquake> wumpus: I think I've tracked down the issue with your test for the ELF header LOAD commands 🚀 20:37 < fanquake> Just looks like some alignment issuses in the readelf output. 20:37 -!- Madars [~null@unaffiliated/madars] has quit [Ping timeout: 240 seconds] 20:38 < fanquake> Still need to investigate your queries about potential alignment issues in the actual binary 20:44 < fanquake> The problem only shows up in readelf when the binary itself is large, and the addr/size columns push into the Flg column. So you ended up with '9 R' rather than 'R E' etc 20:48 -!- mdunnio [~mdunnio@208.59.170.5] has joined #bitcoin-core-dev 20:56 -!- mdunnio [~mdunnio@208.59.170.5] has quit [Ping timeout: 246 seconds] 20:59 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Ping timeout: 265 seconds] 20:59 -!- jarthur_ [~jarthur@2605:6000:1019:48d9:98a:d0d5:89f9:81a9] has joined #bitcoin-core-dev 20:59 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 21:01 -!- jarthur [~jarthur@2605:6000:1019:48d9:454d:a9bc:828:d5c] has quit [Disconnected by services] 21:01 -!- jarthur_ is now known as jarthur 21:08 -!- Madars [~null@unaffiliated/madars] has joined #bitcoin-core-dev 21:10 -!- proofofkeags [~proofofke@174-29-8-246.hlrn.qwest.net] has quit [Remote host closed the connection] 21:27 -!- Madars [~null@unaffiliated/madars] has quit [Ping timeout: 265 seconds] 21:49 -!- Madars [~null@unaffiliated/madars] has joined #bitcoin-core-dev 22:07 -!- rh0nj [~rh0nj@88.99.167.175] has quit [Remote host closed the connection] 22:10 -!- Madars [~null@unaffiliated/madars] has quit [Ping timeout: 265 seconds] 22:15 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 22:19 -!- arowser_ [~arowser1@67.230.166.11] has quit [Ping timeout: 256 seconds] 22:20 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 22:26 -!- proofofkeags [~proofofke@174-29-8-246.hlrn.qwest.net] has joined #bitcoin-core-dev 22:31 -!- proofofkeags [~proofofke@174-29-8-246.hlrn.qwest.net] has quit [Ping timeout: 256 seconds] 22:34 -!- Madars [~null@unaffiliated/madars] has joined #bitcoin-core-dev 22:49 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Remote host closed the connection] 22:49 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 264 seconds] 22:49 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 22:52 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 22:52 < bitcoin-git> [bitcoin] MarcoFalke opened pull request #19604: Pass mempool pointer to UnloadBlockIndex/GetCoinsCacheSizeState (master...2007-memPointer) https://github.com/bitcoin/bitcoin/pull/19604 22:52 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 22:52 -!- Madars [~null@unaffiliated/madars] has quit [Ping timeout: 256 seconds] 22:58 -!- jarthur [~jarthur@2605:6000:1019:48d9:98a:d0d5:89f9:81a9] has quit [Remote host closed the connection] 23:00 -!- JesusFreke [~JesusFrek@89.47.234.28] has quit [] 23:05 -!- proofofkeags [~proofofke@174-29-8-246.hlrn.qwest.net] has joined #bitcoin-core-dev 23:06 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Remote host closed the connection] 23:06 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 23:09 -!- proofofkeags [~proofofke@174-29-8-246.hlrn.qwest.net] has quit [Ping timeout: 246 seconds] 23:09 -!- Madars [~null@unaffiliated/madars] has joined #bitcoin-core-dev 23:13 -!- arowser_ [~arowser1@67.230.166.11] has quit [Remote host closed the connection] 23:20 -!- jarthur [~jarthur@2605:6000:1019:48d9:98a:d0d5:89f9:81a9] has joined #bitcoin-core-dev 23:21 -!- ircmaxell1 [~ircmaxell@185.204.1.185] has joined #bitcoin-core-dev 23:21 -!- proofofkeags [~proofofke@174-29-8-246.hlrn.qwest.net] has joined #bitcoin-core-dev 23:25 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has joined #bitcoin-core-dev 23:25 -!- jarthur [~jarthur@2605:6000:1019:48d9:98a:d0d5:89f9:81a9] has quit [Ping timeout: 246 seconds] 23:25 -!- proofofkeags [~proofofke@174-29-8-246.hlrn.qwest.net] has quit [Ping timeout: 240 seconds] 23:31 -!- Madars [~null@unaffiliated/madars] has quit [Ping timeout: 240 seconds] 23:39 -!- dviola [~diego@unaffiliated/dviola] has quit [Quit: WeeChat 2.9] 23:43 -!- jarthur [~jarthur@2605:6000:1019:48d9:f2:9c68:edf6:d91a] has joined #bitcoin-core-dev 23:44 -!- arowser_ [~arowser1@67.230.166.11.16clouds.com] has quit [Remote host closed the connection] 23:44 -!- arowser_ [~arowser1@67.230.166.11] has joined #bitcoin-core-dev 23:53 -!- Madars [~null@unaffiliated/madars] has joined #bitcoin-core-dev 23:54 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 23:54 < bitcoin-git> [bitcoin] fanquake pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/b62fbf9e1c19...a1da180b1b27 23:54 < bitcoin-git> bitcoin/master fa1f7f2 MarcoFalke: rpc: Style fixups in gettxoutproof 23:54 < bitcoin-git> bitcoin/master fa5979d MarcoFalke: rpc: Avoid useless mempool query in gettxoutproof 23:54 < bitcoin-git> bitcoin/master a1da180 fanquake: Merge #19589: rpc: Avoid useless mempool query in gettxoutproof 23:54 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 23:54 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 23:54 < bitcoin-git> [bitcoin] fanquake merged pull request #19589: rpc: Avoid useless mempool query in gettxoutproof (master...2007-rpcMempool) https://github.com/bitcoin/bitcoin/pull/19589 23:54 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 23:59 -!- marcoagner [~user@2001:8a0:6a45:1900:2fd7:e0f0:d356:dd70] has joined #bitcoin-core-dev --- Log closed Tue Jul 28 00:00:32 2020