--- Log opened Sat Mar 09 00:00:11 2019 00:00 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has quit [Ping timeout: 246 seconds] 00:10 -!- jonatack_ [58aba822@gateway/web/freenode/ip.88.171.168.34] has quit [] 00:20 -!- rex4539 [~rex4539@ppp-2-84-160-62.home.otenet.gr] has joined #bitcoin-core-dev 00:21 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 00:21 < bitcoin-git> [bitcoin] fanquake opened pull request #15565: doc: remove release note fragments (master...remove-pre-18-release-notes) https://github.com/bitcoin/bitcoin/pull/15565 00:21 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 00:36 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Read error: Connection reset by peer] 00:37 -!- tryphe [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 00:39 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 00:39 < bitcoin-git> [bitcoin] fanquake opened pull request #15566: cli: replace testnet with chain and return network name as per BIP70. (master...cli-testnet-to-network) https://github.com/bitcoin/bitcoin/pull/15566 00:39 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 00:52 -!- jungly [~quassel@host97-200-static.8-79-b.business.telecomitalia.it] has joined #bitcoin-core-dev 00:54 -!- promag_ [~promag@bl23-83-33.dsl.telepac.pt] has joined #bitcoin-core-dev 00:55 -!- promag_ [~promag@bl23-83-33.dsl.telepac.pt] has quit [Remote host closed the connection] 00:57 < wumpus> btw is "analyzepsbt" really returning a formatted string for the feerate? that's awful 00:58 < wumpus> ah i see: result.pushKV("estimated_feerate", feerate.ToString()); 01:00 < gwillen> wumpus: the new AnalyzePSBT after my refactor in #15508 will return it as a CFeeRate, although it will still be flattened to a string in the same way before being returned from the RPC 01:00 < gribble> https://github.com/bitcoin/bitcoin/issues/15508 | Refactor analyzepsbt for use outside RPC code by gwillen · Pull Request #15508 · bitcoin/bitcoin · GitHub 01:00 < gwillen> if the RPC behavior should change I can probably sneak that in 01:01 < wumpus> gwillen: IMO it should simply be a value, the unit should be in the documentation not part of the value 01:01 < gmaxwell> elsewhere we return amounts as json numbers for maximal json library torture potential. :) 01:01 < wumpus> gmaxwell: this actually originates from a float though, so there's no decimal encoding issue 01:01 < gmaxwell> oh, though an interesting point about feerates, is that sensible feerates have more precision than bitcoin. 01:01 < fanquake> wumpus, yea currently "0.00021598 BTC/kB" 01:02 < fanquake> I agree a number makes much more sense 01:02 < wumpus> there's 0 reason to not simply return this as floating point value 01:02 < gmaxwell> PSBT serializes a float? how does it handle endianness? 01:02 < wumpus> huh, no, I don't know if PSBT doesthat 01:02 < wumpus> CFeeRate has a double IIRC 01:03 < gmaxwell> feerate should be a rational number inside PSBT itself, I hope I hope. 01:03 < wumpus> oh I'm wrong apparently? 01:03 < wumpus> return strprintf("%d.%08d %s/kB", nSatoshisPerK / COIN, nSatoshisPerK % COIN, CURRENCY_UNIT); 01:03 < sipa> PSBT doesn't store any feerate 01:03 < gmaxwell> I think estimated_feerate sounds like it's a cosmetic field, like difficulty. 01:04 < sipa> the feerate is computed as fee divided by expected serialized vsize 01:04 < gwillen> this is in analyzepsbt, which returns information for examining the status of a PSBT 01:04 < wumpus> in any case the current representation on RPC is useless, you don't want clients to be parsing units from strings 01:04 < gmaxwell> for human inspection not programmatic manipulation, so it would be okay to print it as unicode domino characters. 01:04 < wumpus> units and the semantics of values belong in the help, not in the value 01:05 < gwillen> yeah, although I think it would be reasonable to return it in satoshis per K or something, and let the RPC client decide how to fancy display it 01:05 < sipa> yeah 01:05 < wumpus> right 01:05 < sipa> how are feerates put in JSON elsewhere? 01:05 < gmaxwell> are they, anywhere else? 01:05 < fanquake> In mining I think 01:05 < gwillen> I hate and fear floating point numbers and JSON decimals 01:06 < sipa> at least in estimatefeerate i gope! 01:06 < sipa> *hope 01:06 < luke-jr> ^ 01:06 < gmaxwell> hah 01:06 < fanquake> https://github.com/bitcoin/bitcoin/blob/6b2ee268be459fbc104c054204e2992d4e241915/src/rpc/mining.cpp#L829 01:06 < wumpus> heck, even *if* you'd want to return it as a string, because you hate JSON decimals or whatever reason, don't add the unit to it 01:06 < gmaxwell> gwillen: fortunately the purpose of this value is display purposes, woe be it to anyone trying to do anything programatic with it. (because exactly rounding matters, and...) 01:07 * luke-jr wonders why estimatesmartfee is in mining 01:07 < gmaxwell> luke-jr: because chaos 01:07 < wumpus> but it makes sense to be consistent with other JSON/RPC calls 01:07 < gmaxwell> all hail chaos 01:07 < wumpus> that's a good point 01:08 < gwillen> gmaxwell: well the nice thing about giving it in integer sat/k is that that's the internal representation so there's no rounding question at all 01:08 < gmaxwell> also what is "nSatoshisPerK"? hopefully K is in units of thousands of vsize or something? 01:08 < gwillen> heh, yeah that's presumably the case, I didn't think about that 01:08 < gmaxwell> gwillen: the internal representation is a double, I believe. 01:09 < gmaxwell> (feerates and guistuff and time are the things in bitcoin that use floats) 01:09 < gwillen> negative, CFeeRate contains CAmount nSatoshisPerK, CAmount is an int64_t 01:09 < gwillen> I only know this because I just looked 01:09 < gmaxwell> ah okay, well its float in some places. :P good that it isn't in cfeerate. 01:09 < gwillen> like I said, I hate and fear floating point 01:10 < gmaxwell> Integer über alles. 01:10 < wumpus> floating point for monetary value is always a bad idea 01:10 < gwillen> yeah 01:11 -!- mmgen [~mmgen@gateway/tor-sasl/mmgen] has joined #bitcoin-core-dev 01:11 < gmaxwell> so one thing to keep in mind is that unfortuantely a bunch of websites adopted integer satoshi per byte as a fee unit, resulting in a lot of the ecosystem thinking the integer satoshi per byte is the fundimental primitive feerate unit. 01:11 < gwillen> it's interesting that it's per k not per byte, that gives more resolution than any display of fee rate I've ever seen 01:11 < gwillen> right 01:11 < gmaxwell> (and also this results in some dumb behaviors) 01:11 < luke-jr> gmaxwell: it probably should be? 01:11 < gmaxwell> luke-jr: not at all... I mean you can have a fee of 1 satoshi for a 1000 vbyte transaction... 01:12 < gmaxwell> feerate is naturally a rational number, there isn't any inherent obvious denominator but if you have to pick one, one the size of a reasonable transaction (like 1000) isn't so bad. 01:12 < luke-jr> sure, but you could also have 1 sat for a 10k tx 01:12 < luke-jr> hypothetically 01:12 < gmaxwell> luke-jr: indeed. 01:13 < gmaxwell> but there are no 1 byte transactions, so putting a one in a denominator is inherently losing about a factor of 50 in sensible precision. 01:13 < gwillen> I guess it ultimately depends on what you're using it for ... for display it doesn't matter too much 01:13 < gwillen> for other things it could matter quite a bit 01:14 < luke-jr> for display, /kB is a good size to work with 01:14 < gmaxwell> yea, I've always found per 1000 to be pretty reasonable, thats always what core's interfaces have had. 01:15 < gmaxwell> unfortuantely all these fee estimation sites sprung up around a time when the min relay fee happened to be 1s/b, I think, which is what caused it to be treated as fundimental instead of the bitcoin per/1000b the bitcoin software used in it's interfaces 01:17 < gmaxwell> in any case, I just bring up the common units so people will be mindful of the errors users might make. 01:17 < gmaxwell> like, don't have interfaces for people to enter fees that take btc/1000 vbytes and fail to guard against users entering values like 10. 01:19 < gmaxwell> (in spite of my love of integers, I'm also not super fond of satoshi interfaces... values are usually too big, and it's perfectly reasonable for bitcoin software to work in sub-satoshi amounts even though thats the network precision) 01:20 < wumpus> i mean that's always been the problem with integer representation; it's only obvious if there is a single subdivision that makes sense, otherwise, you could end up reporting (or worse, taking) the same kinds of value in different precisions in different parts of the interface 01:20 < wumpus> *whoops, overpaid by 1000x* 01:21 < wumpus> decimal types (that have an explicit precision) exist for a good reason, it's unfortunate that language adoption of them is so bad 01:22 < gmaxwell> the sad thing here is that json itself-- the spec-- is reasonable. 01:22 < wumpus> yes 01:22 < gmaxwell> Just everything that uses it, including javascript itself makes being reasonable with it hard in practice. 01:23 < gmaxwell> I loved that time when json spirit silently snuck in a conversion to (float) ... 01:26 < sipa> just work in finite fields 01:26 < sipa> exactly representable in finite space 01:28 < wumpus> heh 01:29 -!- jonatack [6d0d4c36@gateway/web/freenode/ip.109.13.76.54] has joined #bitcoin-core-dev 01:36 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 01:36 < bitcoin-git> [bitcoin] laanwj pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/6b2ee268be45...257f750cd986 01:36 < bitcoin-git> bitcoin/master 6e1aaff fanquake: doc: remove release note fragments 01:36 < bitcoin-git> bitcoin/master 257f750 Wladimir J. van der Laan: Merge #15565: doc: remove release note fragments 01:36 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 01:36 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Read error: Connection reset by peer] 01:37 -!- tryphe [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 01:37 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 01:37 < bitcoin-git> [bitcoin] laanwj merged pull request #15565: doc: remove release note fragments (master...remove-pre-18-release-notes) https://github.com/bitcoin/bitcoin/pull/15565 01:37 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 01:55 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has joined #bitcoin-core-dev 02:24 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 02:28 -!- TheRec [~toto@drupal.org/user/146860/view] has quit [Ping timeout: 240 seconds] 02:36 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Read error: Connection reset by peer] 02:37 -!- tryphe [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 02:38 -!- spinza [~spin@155.93.246.187] has joined #bitcoin-core-dev 02:52 -!- zhangzf [~zhangzf@223.72.39.194] has joined #bitcoin-core-dev 03:00 -!- TheRec [~toto@drupal.org/user/146860/view] has joined #bitcoin-core-dev 03:16 -!- teslasystsems [5dba6141@gateway/web/freenode/ip.93.186.97.65] has joined #bitcoin-core-dev 03:19 -!- teslasystsems [5dba6141@gateway/web/freenode/ip.93.186.97.65] has quit [Client Quit] 03:21 -!- teslasystems [5dba6141@gateway/web/freenode/ip.93.186.97.65] has joined #bitcoin-core-dev 03:26 < teslasystems> Can anyone tell, where is the button for creating new wallets in Bitcoin Core? It has disappeared after 0.16.3 release 03:28 < luke-jr> teslasystems: that's a question for #bitcoin, not here 03:28 < wumpus> besides that, I don't think we've ever had a button for creating new wallets 03:29 < luke-jr> yes, I have that answer typed up waiting for him in #Bitcoin XD 03:29 < wumpus> ok thanks :D 03:29 < teslasystems> Sorry, but I thought that the question is related to development, will post to #bitcoin 03:32 -!- yigig [c1cdd22c@gateway/web/freenode/ip.193.205.210.44] has joined #bitcoin-core-dev 03:33 -!- yigig [c1cdd22c@gateway/web/freenode/ip.193.205.210.44] has quit [Client Quit] 03:34 -!- teslasystems [5dba6141@gateway/web/freenode/ip.93.186.97.65] has quit [Quit: Page closed] 03:36 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 03:36 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Read error: Connection reset by peer] 03:37 -!- tryphe [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 03:48 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 03:48 < bitcoin-git> [bitcoin] Sjors opened pull request #15567: Make OutputType consistent with Descriptor and return it (master...2019/03/descriptor-output-type) https://github.com/bitcoin/bitcoin/pull/15567 03:48 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 03:55 -!- obsrver [~quassel@p4FF16C5B.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 04:08 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has quit [Ping timeout: 252 seconds] 04:13 -!- hebasto [~hebasto@95.164.65.194] has quit [Remote host closed the connection] 04:14 -!- hebasto [~hebasto@95.164.65.194] has joined #bitcoin-core-dev 04:16 -!- owowo [~ovovo@unaffiliated/ovovo] has quit [Ping timeout: 245 seconds] 04:21 -!- owowo [~ovovo@unaffiliated/ovovo] has joined #bitcoin-core-dev 04:30 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has joined #bitcoin-core-dev 04:36 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Read error: Connection reset by peer] 04:37 -!- tryphe [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 04:52 -!- rex4539 [~rex4539@ppp-2-84-160-62.home.otenet.gr] has quit [Quit: rex4539] 05:02 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 05:05 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 245 seconds] 05:12 -!- jungly [~quassel@host97-200-static.8-79-b.business.telecomitalia.it] has quit [Remote host closed the connection] 05:37 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Read error: Connection reset by peer] 05:37 -!- tryphe [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 06:06 -!- Aaronvan_ is now known as AaronvanW 06:17 -!- jonatack [6d0d4c36@gateway/web/freenode/ip.109.13.76.54] has quit [Ping timeout: 256 seconds] 06:18 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 06:27 -!- unknown-os [~unknown@user-5-173-248-247.play-internet.pl] has joined #bitcoin-core-dev 06:37 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Read error: Connection reset by peer] 06:37 -!- tryphe [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 06:41 -!- unknown-os [~unknown@user-5-173-248-247.play-internet.pl] has quit [Ping timeout: 250 seconds] 06:43 -!- Cory [Cory@unaffiliated/cory] has quit [Ping timeout: 244 seconds] 06:46 -!- e4xit [~e4xit@cpc123762-trow7-2-0-cust7.18-1.cable.virginm.net] has quit [Quit: quit] 06:49 -!- Pasha [Cory@unaffiliated/cory] has joined #bitcoin-core-dev 06:50 -!- zhangzf [~zhangzf@223.72.39.194] has quit [Remote host closed the connection] 06:50 -!- zhangzf [~zhangzf@223.72.72.229] has joined #bitcoin-core-dev 06:51 -!- zhangzf [~zhangzf@223.72.72.229] has quit [Remote host closed the connection] 06:51 -!- zhangzf [~zhangzf@223.72.61.161] has joined #bitcoin-core-dev 06:51 -!- zhangzf [~zhangzf@223.72.61.161] has quit [Remote host closed the connection] 06:52 -!- zhangzf [~zhangzf@223.72.72.229] has joined #bitcoin-core-dev 06:52 -!- Pasha is now known as Cory 06:52 -!- zhangzf [~zhangzf@223.72.72.229] has quit [Remote host closed the connection] 06:52 -!- zhangzf [~zhangzf@223.72.61.161] has joined #bitcoin-core-dev 06:53 -!- zhangzf [~zhangzf@223.72.61.161] has quit [Remote host closed the connection] 06:57 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 06:57 -!- e4xit [~e4xit@cpc123762-trow7-2-0-cust7.18-1.cable.virginm.net] has joined #bitcoin-core-dev 07:00 -!- obsrver [~quassel@p4FF16C5B.dip0.t-ipconnect.de] has quit [Ping timeout: 245 seconds] 07:01 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 245 seconds] 07:02 -!- e4xit [~e4xit@cpc123762-trow7-2-0-cust7.18-1.cable.virginm.net] has quit [Client Quit] 07:08 -!- zhangzf [~zhangzf@223.72.51.23] has joined #bitcoin-core-dev 07:08 -!- e4xit [~e4xit@cpc123762-trow7-2-0-cust7.18-1.cable.virginm.net] has joined #bitcoin-core-dev 07:10 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Read error: Connection reset by peer] 07:10 -!- tryphe [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 07:12 -!- zhangzf [~zhangzf@223.72.51.23] has quit [Ping timeout: 246 seconds] 07:20 -!- JackH [~laptop@185.155.119.193] has joined #bitcoin-core-dev 07:20 -!- Zenton [~user@unaffiliated/vicenteh] has quit [Ping timeout: 240 seconds] 07:28 -!- millerti [~millerti@cpe-66-24-91-119.stny.res.rr.com] has joined #bitcoin-core-dev 07:29 -!- promag [~promag@bl23-83-33.dsl.telepac.pt] has quit [Remote host closed the connection] 07:29 -!- promag [~promag@bl23-83-33.dsl.telepac.pt] has joined #bitcoin-core-dev 07:29 -!- Zenton [~user@unaffiliated/vicenteh] has joined #bitcoin-core-dev 07:34 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has quit [Ping timeout: 246 seconds] 07:40 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 07:40 -!- obsrver [~quassel@p4FF16C5B.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 07:42 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 07:42 < bitcoin-git> [bitcoin] hebasto closed pull request #15340: gui: Introduce bilingual GUI error messages (master...20190204-bilingual-initerror) https://github.com/bitcoin/bitcoin/pull/15340 07:42 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 07:43 -!- obsrver [~quassel@p4FF16C5B.dip0.t-ipconnect.de] has quit [Client Quit] 07:44 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 246 seconds] 07:44 -!- obsrver [~quassel@p4FF16C5B.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 08:02 -!- hebasto [~hebasto@95.164.65.194] has quit [Remote host closed the connection] 08:03 -!- hebasto [~hebasto@95.164.65.194] has joined #bitcoin-core-dev 08:04 -!- promag [~promag@bl23-83-33.dsl.telepac.pt] has quit [Remote host closed the connection] 08:14 -!- darosior [~darosior@2a01:e35:2ff9:8200:9d71:5b1f:da8f:3768] has joined #bitcoin-core-dev 08:16 -!- profmac [~ProfMac@2001:470:1f0f:226:ca5:9337:6e9e:d4d4] has quit [Ping timeout: 250 seconds] 08:23 -!- Sentineo [~Undefined@unaffiliated/sentineo] has quit [Quit: ~~~] 08:29 -!- profmac [~ProfMac@2001:470:1f0f:226:15de:f544:f5f5:a0e7] has joined #bitcoin-core-dev 08:36 -!- Guyver2 [AdiIRC@guyver2.xs4all.nl] has joined #bitcoin-core-dev 09:00 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 09:00 -!- Sentineo [~Undefined@unaffiliated/sentineo] has joined #bitcoin-core-dev 09:19 -!- dviola [~diego@unaffiliated/dviola] has joined #bitcoin-core-dev 09:21 -!- kexkey [~kexkey@139.28.218.6] has joined #bitcoin-core-dev 09:21 -!- sfhi [~sfhi@80.67.7.132] has joined #bitcoin-core-dev 09:31 -!- e4xit [~e4xit@cpc123762-trow7-2-0-cust7.18-1.cable.virginm.net] has quit [Quit: quit] 09:33 -!- e4xit [~e4xit@cpc123762-trow7-2-0-cust7.18-1.cable.virginm.net] has joined #bitcoin-core-dev 09:37 -!- d_t [~d_t@108-65-77-11.lightspeed.sntcca.sbcglobal.net] has joined #bitcoin-core-dev 09:39 -!- millerti [~millerti@cpe-66-24-91-119.stny.res.rr.com] has quit [Ping timeout: 240 seconds] 09:43 -!- jonatack [d598a20f@gateway/web/freenode/ip.213.152.162.15] has joined #bitcoin-core-dev 09:44 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 10:04 -!- promag [~promag@bl23-83-33.dsl.telepac.pt] has joined #bitcoin-core-dev 10:08 -!- promag [~promag@bl23-83-33.dsl.telepac.pt] has quit [Ping timeout: 245 seconds] 10:32 -!- captjakk [~captjakk@63-238-229-186.dia.static.qwest.net] has joined #bitcoin-core-dev 10:36 -!- obsrver [~quassel@p4FF16C5B.dip0.t-ipconnect.de] has quit [Ping timeout: 245 seconds] 10:41 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 10:45 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 252 seconds] 10:50 -!- darosior [~darosior@2a01:e35:2ff9:8200:9d71:5b1f:da8f:3768] has quit [Ping timeout: 258 seconds] 10:53 -!- darosior [~darosior@2a01:e35:2ff9:8200:9d71:5b1f:da8f:3768] has joined #bitcoin-core-dev 11:01 -!- mmgen [~mmgen@gateway/tor-sasl/mmgen] has quit [Quit: (https://github.com/mmgen) leaving] 11:04 -!- obsrver [~quassel@p4FF16C5B.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 11:07 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 11:07 < bitcoin-git> [bitcoin] cisba closed pull request #15554: docs: binary tar improvement (master...improve-tar) https://github.com/bitcoin/bitcoin/pull/15554 11:07 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 11:08 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 11:08 < bitcoin-git> [bitcoin] cisba opened pull request #15569: docs: improve linux tar packages (master...improve-tar-rebased) https://github.com/bitcoin/bitcoin/pull/15569 11:08 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 11:14 -!- jonatack [d598a20f@gateway/web/freenode/ip.213.152.162.15] has quit [Ping timeout: 256 seconds] 11:18 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 11:18 -!- rex4539 [~rex4539@ppp-2-84-160-62.home.otenet.gr] has joined #bitcoin-core-dev 11:22 -!- jonatack [52661bab@gateway/web/freenode/ip.82.102.27.171] has joined #bitcoin-core-dev 11:35 -!- belcher [~belcher@unaffiliated/belcher] has quit [Ping timeout: 245 seconds] 11:38 -!- dviola [~diego@unaffiliated/dviola] has quit [Ping timeout: 240 seconds] 11:39 -!- dviola [~diego@179.235.12.185] has joined #bitcoin-core-dev 11:41 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 11:41 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 11:53 -!- hebasto [~hebasto@95.164.65.194] has quit [Remote host closed the connection] 12:00 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has joined #bitcoin-core-dev 12:08 -!- darosior [~darosior@2a01:e35:2ff9:8200:9d71:5b1f:da8f:3768] has quit [Ping timeout: 258 seconds] 12:08 -!- marcinja [~marcinja@2604:a880:400:d1::89a:e001] has quit [Ping timeout: 252 seconds] 12:08 -!- d_t [~d_t@108-65-77-11.lightspeed.sntcca.sbcglobal.net] has quit [Ping timeout: 245 seconds] 12:09 -!- jamesob [sid180710@gateway/web/irccloud.com/x-zlgyqckdmsgfqwlc] has quit [Ping timeout: 252 seconds] 12:09 -!- marcinja [~marcinja@204.48.26.93] has joined #bitcoin-core-dev 12:09 -!- jamesob [sid180710@gateway/web/irccloud.com/x-yikedfrcghkqvvoi] has joined #bitcoin-core-dev 12:11 -!- phantomcircuit [~phantomci@192.241.205.97] has quit [Ping timeout: 252 seconds] 12:13 -!- dviola [~diego@179.235.12.185] has quit [Changing host] 12:13 -!- dviola [~diego@unaffiliated/dviola] has joined #bitcoin-core-dev 12:14 -!- xHire [~xHire@kos.paskuli.cz] has quit [Ping timeout: 252 seconds] 12:14 -!- gertjaap [sid322815@gateway/web/irccloud.com/x-wqgwvnrjflubhjgc] has quit [Ping timeout: 252 seconds] 12:14 -!- moneyball [sid299869@gateway/web/irccloud.com/x-nirhrurltjcxspsy] has quit [Ping timeout: 252 seconds] 12:14 -!- phantomcircuit [~phantomci@192.241.205.97] has joined #bitcoin-core-dev 12:15 -!- jonatack [52661bab@gateway/web/freenode/ip.82.102.27.171] has quit [] 12:15 -!- xHire [~xHire@kos.paskuli.cz] has joined #bitcoin-core-dev 12:15 -!- gertjaap [sid322815@gateway/web/irccloud.com/x-frzxikjgiwuvoyvy] has joined #bitcoin-core-dev 12:16 -!- moneyball [sid299869@gateway/web/irccloud.com/x-jjtkpqrrwnedlvjr] has joined #bitcoin-core-dev 12:17 -!- comboy [~quassel@tesuji.pl] has quit [Ping timeout: 252 seconds] 12:18 -!- jonatack [52661bab@gateway/web/freenode/ip.82.102.27.171] has joined #bitcoin-core-dev 12:18 -!- comboy [~quassel@tesuji.pl] has joined #bitcoin-core-dev 12:22 -!- Skirmant [~Skirmant@78-62-14-181.static.zebra.lt] has quit [Read error: Connection reset by peer] 12:37 -!- d_t [~d_t@108-65-77-11.lightspeed.sntcca.sbcglobal.net] has joined #bitcoin-core-dev 12:42 -!- promag [~promag@bl23-83-33.dsl.telepac.pt] has joined #bitcoin-core-dev 12:43 -!- promag [~promag@bl23-83-33.dsl.telepac.pt] has quit [Remote host closed the connection] 12:47 -!- darosior [~darosior@2a01:e35:2ff9:8200:9d71:5b1f:da8f:3768] has joined #bitcoin-core-dev 12:48 -!- promag [~promag@bl23-83-33.dsl.telepac.pt] has joined #bitcoin-core-dev 12:50 -!- promag [~promag@bl23-83-33.dsl.telepac.pt] has quit [Remote host closed the connection] 12:53 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 12:56 -!- promag [~promag@bl23-83-33.dsl.telepac.pt] has joined #bitcoin-core-dev 12:59 -!- promag [~promag@bl23-83-33.dsl.telepac.pt] has quit [Remote host closed the connection] 13:01 -!- promag [~promag@bl23-83-33.dsl.telepac.pt] has joined #bitcoin-core-dev 13:05 -!- promag [~promag@bl23-83-33.dsl.telepac.pt] has quit [Ping timeout: 245 seconds] 13:08 -!- siom [~siom@83.97.23.43] has joined #bitcoin-core-dev 13:09 -!- arubi_ [~ese168@gateway/tor-sasl/ese168] has joined #bitcoin-core-dev 13:11 -!- arubi [~ese168@gateway/tor-sasl/ese168] has quit [Ping timeout: 256 seconds] 13:26 -!- Guyver2 [AdiIRC@guyver2.xs4all.nl] has quit [Quit: Going offline, see ya! (www.adiirc.com)] 13:29 < gmaxwell> Does anyone feel like getting agressive with anti-virus companies to get them to stop false positiving on bitcoind? 13:29 -!- darosior [~darosior@2a01:e35:2ff9:8200:9d71:5b1f:da8f:3768] has quit [Ping timeout: 264 seconds] 13:30 < gmaxwell> the security alias just got yet another report, apparently mac AV software is now also claiming that bitcoin is a virus. 13:37 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Ping timeout: 246 seconds] 13:38 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 13:39 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 13:50 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 13:54 -!- d_t [~d_t@108-65-77-11.lightspeed.sntcca.sbcglobal.net] has quit [Ping timeout: 244 seconds] 13:58 -!- obsrver [~quassel@p4FF16C5B.dip0.t-ipconnect.de] has quit [Read error: Connection reset by peer] 14:07 -!- siom [~siom@83.97.23.43] has quit [Remote host closed the connection] 14:08 -!- spinza [~spin@155.93.246.187] has joined #bitcoin-core-dev 14:11 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 14:12 < owowo> AV companies are the snake-oil salesmen of the modern age 14:14 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 246 seconds] 14:29 < tryphe> gmaxwell, if AV software was any good, it would detect itself as a backdoor and self-delete 14:54 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 15:00 -!- zivl [~zivl@unaffiliated/zivl] has quit [Ping timeout: 250 seconds] 15:02 -!- spinza [~spin@155.93.246.187] has joined #bitcoin-core-dev 15:04 -!- DeanGuss [~dean@gateway/tor-sasl/deanguss] has quit [Ping timeout: 256 seconds] 15:05 -!- zhangzf [~zhangzf@223.72.81.16] has joined #bitcoin-core-dev 15:07 -!- dviola [~diego@unaffiliated/dviola] has quit [Quit: WeeChat 2.4] 15:11 -!- zhangzf [~zhangzf@223.72.81.16] has quit [Ping timeout: 245 seconds] 15:13 -!- Karyon_ [~Karyon@unaffiliated/karyon] has joined #bitcoin-core-dev 15:13 -!- Karyon [~Karyon@unaffiliated/karyon] has quit [Ping timeout: 250 seconds] 15:14 -!- Karyon_ is now known as Karyon 15:17 -!- sfhi [~sfhi@80.67.7.132] has quit [Quit: Leaving] 15:28 -!- jonatack [52661bab@gateway/web/freenode/ip.82.102.27.171] has quit [Ping timeout: 256 seconds] 16:24 -!- captjakk [~captjakk@63-238-229-186.dia.static.qwest.net] has quit [Remote host closed the connection] 16:24 -!- captjakk [~captjakk@63-238-229-186.dia.static.qwest.net] has joined #bitcoin-core-dev 16:29 -!- captjakk [~captjakk@63-238-229-186.dia.static.qwest.net] has quit [Ping timeout: 245 seconds] 16:55 -!- zhangzf [~zhangzf@223.72.44.127] has joined #bitcoin-core-dev 17:30 -!- zhangzf [~zhangzf@223.72.44.127] has quit [Ping timeout: 255 seconds] 17:32 -!- captjakk [~captjakk@63-238-229-186.dia.static.qwest.net] has joined #bitcoin-core-dev 17:38 < echeveria> it's.. hard to see why they would think that 17:38 < echeveria> it's not like it's cgminer that gets bundled in malware. 17:39 -!- zivl [~zivl@unaffiliated/zivl] has joined #bitcoin-core-dev 17:53 -!- justan0theruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 17:54 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 255 seconds] 18:02 -!- justan0theruser is now known as justanotheruser 18:05 -!- captjakk_ [~captjakk@174-16-198-186.hlrn.qwest.net] has joined #bitcoin-core-dev 18:09 -!- captjakk [~captjakk@63-238-229-186.dia.static.qwest.net] has quit [Ping timeout: 252 seconds] 18:21 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 18:21 -!- captjakk_ [~captjakk@174-16-198-186.hlrn.qwest.net] has quit [Remote host closed the connection] 18:55 -!- spinza [~spin@155.93.246.187] has joined #bitcoin-core-dev 19:17 -!- justan0theruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 19:17 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 245 seconds] 19:17 -!- EagleTM [~EagleTM@unaffiliated/eagletm] has quit [Ping timeout: 245 seconds] 19:37 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 19:39 -!- jarthur [~jarthur@2605:6000:1019:41ab:6939:299e:9b4:1047] has joined #bitcoin-core-dev 20:15 -!- qrestlove [~qrestlove@2601:446:c201:f560:1194:3875:20cc:e764] has joined #bitcoin-core-dev 20:40 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 20:46 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 244 seconds] 21:00 -!- DeanGuss [~dean@gateway/tor-sasl/deanguss] has joined #bitcoin-core-dev 21:03 -!- Emcy [~Emcy@unaffiliated/emcy] has quit [Read error: Connection reset by peer] 21:14 < midnightmagic> gmaxwell: /w 31 21:14 < midnightmagic> er.. sorry. 21:44 < gmaxwell> echeveria: I think they are actually detecting that it looks for "wallet.dat" 21:47 -!- jarthur [~jarthur@2605:6000:1019:41ab:6939:299e:9b4:1047] has quit [Remote host closed the connection] 21:47 -!- jarthur [~jarthur@2605:6000:1019:41ab:6939:299e:9b4:1047] has joined #bitcoin-core-dev 21:56 < echeveria> gmaxwell: oh weird. 21:56 < echeveria> I guess that's a good heuristic for everything other than bitcoin core. 21:58 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 22:03 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 255 seconds] 22:08 -!- jcorgan [~jcorgan@64-142-68-61.dsl.static.sonic.net] has quit [Ping timeout: 245 seconds] 22:22 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 22:22 < bitcoin-git> [bitcoin] rojarsmith opened pull request #15571: Add auto select custom fee when smart fee not initialized. (master...mydev) https://github.com/bitcoin/bitcoin/pull/15571 22:22 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 22:22 -!- eulersphi [~eulersphi@static.185.141.4.46.clients.your-server.de] has joined #bitcoin-core-dev 22:23 -!- eulersphi [~eulersphi@static.185.141.4.46.clients.your-server.de] has quit [Client Quit] 22:26 -!- jcorgan [~jcorgan@64-142-68-61.dsl.static.sonic.net] has joined #bitcoin-core-dev 22:31 -!- promag [~promag@bl23-83-33.dsl.telepac.pt] has joined #bitcoin-core-dev 22:35 -!- promag [~promag@bl23-83-33.dsl.telepac.pt] has quit [Ping timeout: 250 seconds] 22:37 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 22:37 < bitcoin-git> [bitcoin] rojarsmith closed pull request #15571: Add auto select custom fee when smart fee not initialized. (master...mydev) https://github.com/bitcoin/bitcoin/pull/15571 22:37 -!- JoeLiu [uid88238@gateway/web/irccloud.com/x-hkvwkrencgkzttaj] has joined #bitcoin-core-dev 22:37 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 22:52 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 22:52 < bitcoin-git> [bitcoin] rojarsmith opened pull request #15572: Add auto select custom fee when smart fee not initialized. (master...dev) https://github.com/bitcoin/bitcoin/pull/15572 22:52 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 22:53 -!- wumpus2 [~ircclient@pdpc/supporter/professional/wumpus] has joined #bitcoin-core-dev 22:53 -!- wxss_ [~user@mail.deeplinkmedia.com] has joined #bitcoin-core-dev 22:54 -!- Emcy [~Emcy@unaffiliated/emcy] has joined #bitcoin-core-dev 22:55 -!- chainhead_ [~chainhead@2001:19f0:5:e14:5400:ff:fe77:e3d4] has joined #bitcoin-core-dev 22:55 -!- lesderid_ [~lesderid@2a03:b0c0:1:d0::2a5:4002] has joined #bitcoin-core-dev 22:58 -!- Netsplit *.net <-> *.split quits: wxss, chainhead, RubenSomsen, Liliaceae, wumpus, lesderid, stepa[m] 22:59 -!- TheHoliestRoger [~TheHolies@unaffiliated/theholiestroger] has quit [Quit: Find me in #TheHolyRoger or https://theholyroger.com] 23:02 -!- TheHoliestRoger [~TheHolies@unaffiliated/theholiestroger] has joined #bitcoin-core-dev 23:17 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 23:22 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 246 seconds] 23:27 -!- pinheadmz [~matthewzi@c-76-102-227-220.hsd1.ca.comcast.net] has quit [Ping timeout: 245 seconds] 23:30 -!- pinheadmz [~matthewzi@c-76-102-227-220.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 23:53 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 23:54 -!- wumpus2 is now known as wumpus 23:57 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 245 seconds] --- Log closed Sun Mar 10 00:00:11 2019