--- Day changed Tue Nov 14 2017 00:04 -!- JackH [~laptop@alvira.static.korbank.pl] has quit [Ping timeout: 240 seconds] 00:13 < bitcoin-git> [bitcoin] laanwj closed pull request #10873: Use a condition variable for shutdown notifications (master...shutdown_notify) https://github.com/bitcoin/bitcoin/pull/10873 00:17 -!- bule [~bule@gateway/tor-sasl/bule] has quit [Ping timeout: 248 seconds] 00:18 -!- JackH [~laptop@91.189.61.70] has joined #bitcoin-core-dev 00:19 -!- Sentineo [~Undefined@unaffiliated/sentineo] has quit [Remote host closed the connection] 00:23 < meshcollider> It seems 10873 is a candidate to be the first PR with the new abandoned tag MarcoFalke created ^ 00:26 -!- bule [~bule@gateway/tor-sasl/bule] has joined #bitcoin-core-dev 00:27 < wumpus> good idea, added 00:36 < mryandao> how about taking the differential of transactions that pay a feerate greater than the min-feerate of the next block as described by `getblocktemplate` 00:37 < mryandao> it should be meaningful to see the rate of incoming transaction "overtaking" transactions that should be confirmed in the following block 00:41 -!- unholymachine [~quassel@c-69-248-123-139.hsd1.nj.comcast.net] has quit [Ping timeout: 248 seconds] 00:45 -!- bule [~bule@gateway/tor-sasl/bule] has quit [Ping timeout: 248 seconds] 00:47 -!- unholymachine [~quassel@2601:8c:c003:9f16:b4f6:6ecb:b8d:4303] has joined #bitcoin-core-dev 00:52 -!- baldur [~baldur@pool-100-2-154-254.nycmny.btas.verizon.net] has joined #bitcoin-core-dev 00:58 < bitcoin-git> [bitcoin] SwaddleDoddle opened pull request #11681: 0.15 (master...0.15) https://github.com/bitcoin/bitcoin/pull/11681 01:00 < bitcoin-git> [bitcoin] laanwj closed pull request #11681: 0.15 (master...0.15) https://github.com/bitcoin/bitcoin/pull/11681 01:11 < bitcoin-git> [bitcoin] practicalswift opened pull request #11682: wallet: Simplify logic in CCryptoKeyStore::AddKeyPubKey(...) (master...CCryptoKeyStore-AddKeyPubKey) https://github.com/bitcoin/bitcoin/pull/11682 01:17 -!- harrymm [~harrymm@85.203.47.130] has quit [Ping timeout: 240 seconds] 01:19 < meshcollider> Anyone wanna review https://github.com/bitcoin-core/bitcoincore.org/pull/464 so it can be merged soon? 01:19 < meshcollider> (0.15.1 release announcement on bitcoincore.org) 01:19 < bitcoin-git> [bitcoin] practicalswift opened pull request #11683: tests: Remove unused mininode functions deser_int_vector(f) and ser_int_vector(l) (master...remove-int-vector-serialization) https://github.com/bitcoin/bitcoin/pull/11683 01:20 -!- nullptr| [~nullptr|@ip-94-113-103-134.net.upcbroadband.cz] has quit [Ping timeout: 264 seconds] 01:21 -!- timothy [tredaelli@redhat/timothy] has joined #bitcoin-core-dev 01:22 < wumpus> meshcollider: will do 01:22 < meshcollider> wumpus: thanks 01:30 -!- cbag_ [4d397228@gateway/web/freenode/ip.77.57.114.40] has joined #bitcoin-core-dev 01:30 -!- harrymm [~harrymm@85.203.47.26] has joined #bitcoin-core-dev 01:31 -!- kioneer [3ae14ae1@gateway/web/freenode/ip.58.225.74.225] has joined #bitcoin-core-dev 01:32 -!- kioneer [3ae14ae1@gateway/web/freenode/ip.58.225.74.225] has quit [Client Quit] 01:37 < wumpus> I don't think anyone will mind if I merge it? 01:39 < meshcollider> Shouldn't do, ACKs from both you and bluematt and its basically just a c+p of the release notes so its not exactly controversial :P 01:39 < wumpus> and it's about time too 01:40 < meshcollider> Still not as delayed as 15.0.1 was lol 01:40 < wumpus> hehe, no not that delayed 01:43 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has joined #bitcoin-core-dev 01:46 < promag> wdyt about changing this "if (request.fHelp || request.params.size() > 2)" to "if (request.fHelp)" ? 01:47 < wumpus> NACK, that would make it ignore spurious arguments 01:47 < wumpus> which should be an error 01:48 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-hzaictgpvrotdsow] has quit [Quit: Connection closed for inactivity] 01:49 < promag> what I mean is to show help only when requested. Then have argument validation which should validate all arguments, so arguments with no validation should raise invalid parameter too 01:50 < promag> or we could keep "if (request.params.size() > 2)" but that would raise invalid argument 01:51 < promag> the help is mainly for the command line cli right? 02:03 -!- roconnor_ [~roconnor@host-45-78-197-59.dyn.295.ca] has quit [Ping timeout: 240 seconds] 02:03 < wumpus> maybe, I really doubt this is worth changing all RPC calls for 02:04 < wumpus> I mean barfing up the help in case of confusion about the number of arguments is consistent with what a lot of command line tools do, it's not wrong or such 02:07 -!- nullptr| [~nullptr|@ip-94-113-103-134.net.upcbroadband.cz] has joined #bitcoin-core-dev 02:07 < wumpus> at least we don't silently ignore spurious RPC arguments, unlike spurious command line options, which don't cause an error 02:07 < wumpus> that's a much worse user experience 02:08 < wumpus> type poxy instead of proxy and it doesn't even warn 02:10 < promag> wumpus: ok 02:10 < promag> but in some cases, if you pass options with extra keys, it won't complaint 02:10 < wumpus> it should 02:10 < wumpus> well maybe except nested structures 02:11 -!- dabura667 [~dabura667@p98110-ipngnfx01marunouchi.tokyo.ocn.ne.jp] has quit [Remote host closed the connection] 02:11 < promag> and if the caller makes it lower case or snake case instead of pascal case, it won't complaint 02:11 < wumpus> I mean, it doesn't hurt to provide more information about a vout for createrawtransaction than it strictly needs 02:11 < wumpus> this helps pass in the output from listunspents to it without filtering 02:13 < promag> you mean for vin 02:13 < wumpus> yes 02:13 < wumpus> so let's just keep it like that 02:13 < promag> anyway, really doubt that anyone does that copy and paste :) 02:14 < meshcollider> oh wumpus, maybe your key is not trusted when merging bitcoincore.org PRs 02:14 < meshcollider> https://github.com/bitcoin-core/bitcoincore.org/blob/master/contrib/verify-commits/trusted-keys 02:14 < wumpus> promag: they do 02:14 < promag> :o 02:14 < wumpus> especially if it's used from scripts 02:15 < promag> I suppose everyone should pick the relevant fields :D 02:15 < wumpus> anyhow, please let's not change the RPC API just to change the RPC API, but focus on features, bugfixes and user experience 02:15 < meshcollider> Agree ^ 02:15 < promag> np! 02:16 < wumpus> meshcollider: uh oh 02:17 < wumpus> meshcollider: I should probably force-push back to the previous state then 02:18 < wumpus> meshcollider: only one of the trusted keys can add me as trusted key, and not on top of an invalid commit 02:19 < meshcollider> wumpus: mhm yeah, in any case you should be added as a trusted key but yeah we might have to wait for jonasschnelli 02:19 < wumpus> luckily it doesn't break the site itself, just blocks updates for now 02:20 < meshcollider> yep, was wondering why it hadn't gone live so I looked around and noticed 02:22 < wumpus> right - I'm not going to do anything, one of the signers can resolve this, either by adding a merge commit on top , or re-sigining the merge commit and force-pushing 02:23 < wumpus> if they agree with the change of course :-) 02:26 < meshcollider> Sounds good 02:28 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has quit [Remote host closed the connection] 02:28 -!- bobmaster2020 [171c0e6e@gateway/web/freenode/ip.23.28.14.110] has joined #bitcoin-core-dev 02:31 -!- bobmaster2020 [171c0e6e@gateway/web/freenode/ip.23.28.14.110] has left #bitcoin-core-dev [] 02:46 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has joined #bitcoin-core-dev 02:50 -!- Nina13Jaskolski [~Nina13Jas@ns334669.ip-5-196-64.eu] has joined #bitcoin-core-dev 02:58 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has quit [Remote host closed the connection] 02:58 -!- go1111111 [~elliot@199.231.240.191] has joined #bitcoin-core-dev 02:59 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has joined #bitcoin-core-dev 03:01 -!- roconnor_ [~roconnor@host-45-58-247-46.dyn.295.ca] has joined #bitcoin-core-dev 03:23 -!- Jerrat [af641960@gateway/web/freenode/ip.175.100.25.96] has joined #bitcoin-core-dev 03:27 -!- Jerrat [af641960@gateway/web/freenode/ip.175.100.25.96] has quit [Ping timeout: 260 seconds] 03:29 -!- frst_btc [272c6906@gateway/web/freenode/ip.39.44.105.6] has joined #bitcoin-core-dev 03:29 -!- cbag_ [4d397228@gateway/web/freenode/ip.77.57.114.40] has quit [Ping timeout: 260 seconds] 03:29 -!- frst_btc [272c6906@gateway/web/freenode/ip.39.44.105.6] has quit [Client Quit] 03:31 -!- bitstr3am [~Mutter@50-47-107-125.evrt.wa.frontiernet.net] has joined #bitcoin-core-dev 03:32 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Ping timeout: 240 seconds] 03:33 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 03:34 -!- ChristianXK [23b6fefc@gateway/web/freenode/ip.35.182.254.252] has quit [Ping timeout: 260 seconds] 03:35 -!- bitstr3am [~Mutter@50-47-107-125.evrt.wa.frontiernet.net] has quit [Client Quit] 03:43 -!- chjj [~chjj@unaffiliated/chjj] has joined #bitcoin-core-dev 03:44 -!- vicenteH [~user@35.233.15.37.dynamic.jazztel.es] has quit [Read error: Connection reset by peer] 03:45 -!- vicenteH [~user@35.233.15.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 03:50 -!- vicenteH [~user@35.233.15.37.dynamic.jazztel.es] has quit [Ping timeout: 240 seconds] 03:52 -!- laurentmt [~Thunderbi@92.154.68.134] has joined #bitcoin-core-dev 03:53 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 03:56 -!- ula [~ula@b2b-78-94-11-194.unitymedia.biz] has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/] 03:59 < bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/7adeea3b0fc2...6d4821b693b2 03:59 < bitcoin-git> bitcoin/master d8ac893 practicalswift: trivial: Fix typo – "Ubutntu" → "Ubuntu" 04:00 < bitcoin-git> bitcoin/master 6d4821b Wladimir J. van der Laan: Merge #11684: trivial: Fix typo – "Ubutntu" → "Ubuntu"... 04:00 < bitcoin-git> [bitcoin] laanwj closed pull request #11684: trivial: Fix typo – "Ubutntu" → "Ubuntu" (master...ubutntu) https://github.com/bitcoin/bitcoin/pull/11684 04:07 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has joined #bitcoin-core-dev 04:13 -!- vicenteH [~user@35.233.15.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 04:46 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has quit [Remote host closed the connection] 04:56 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has joined #bitcoin-core-dev 04:59 -!- instagibbs [~instagibb@pool-72-83-36-237.washdc.fios.verizon.net] has quit [Ping timeout: 246 seconds] 05:02 -!- Giszmo1 [~leo@pc-204-28-214-201.cm.vtr.net] has joined #bitcoin-core-dev 05:02 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has quit [Read error: Connection reset by peer] 05:05 -!- Chris_Stewart_5 [~chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has joined #bitcoin-core-dev 05:13 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has quit [Remote host closed the connection] 05:36 -!- Regan55Adams [~Regan55Ad@LFbn-1-936-126.w86-247.abo.wanadoo.fr] has joined #bitcoin-core-dev 05:42 -!- Regan55Adams [~Regan55Ad@LFbn-1-936-126.w86-247.abo.wanadoo.fr] has quit [Remote host closed the connection] 05:43 -!- pandabull [~pandabull@2601:184:407f:de69:49df:f3bf:66be:d195] has quit [Remote host closed the connection] 05:43 -!- Fernando72Lind [~Fernando7@LFbn-1-936-126.w86-247.abo.wanadoo.fr] has joined #bitcoin-core-dev 05:44 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 05:47 -!- Fernando72Lind [~Fernando7@LFbn-1-936-126.w86-247.abo.wanadoo.fr] has quit [Remote host closed the connection] 05:48 -!- Johanna29Quigley [~Johanna29@LFbn-1-936-126.w86-247.abo.wanadoo.fr] has joined #bitcoin-core-dev 05:51 -!- Johanna29Quigley [~Johanna29@LFbn-1-936-126.w86-247.abo.wanadoo.fr] has quit [Remote host closed the connection] 05:51 -!- Darrick80Christi [~Darrick80@LFbn-1-936-126.w86-247.abo.wanadoo.fr] has joined #bitcoin-core-dev 05:54 -!- Darrick80Christi [~Darrick80@LFbn-1-936-126.w86-247.abo.wanadoo.fr] has quit [Remote host closed the connection] 05:55 -!- Chris_Stewart_5 [~chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has quit [Ping timeout: 248 seconds] 06:09 -!- pandabull [~pandabull@c-71-192-175-158.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 06:13 -!- Piper65Hand [~Piper65Ha@LFbn-1-936-126.w86-247.abo.wanadoo.fr] has joined #bitcoin-core-dev 06:17 -!- Piper65Hand [~Piper65Ha@LFbn-1-936-126.w86-247.abo.wanadoo.fr] has quit [Remote host closed the connection] 06:18 -!- Eleonore77Rath [~Eleonore7@LFbn-1-936-126.w86-247.abo.wanadoo.fr] has joined #bitcoin-core-dev 06:29 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-xznhjyvkrcpngaii] has quit [Quit: Connection closed for inactivity] 06:44 -!- Eleonore77Rath [~Eleonore7@LFbn-1-936-126.w86-247.abo.wanadoo.fr] has quit [Remote host closed the connection] 06:44 -!- Mollie73Gulgowsk [~Mollie73G@LFbn-1-936-126.w86-247.abo.wanadoo.fr] has joined #bitcoin-core-dev 06:51 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 06:52 -!- Sentineo [~Undefined@unaffiliated/sentineo] has joined #bitcoin-core-dev 06:56 -!- Mollie73Gulgowsk [~Mollie73G@LFbn-1-936-126.w86-247.abo.wanadoo.fr] has quit [Remote host closed the connection] 06:56 -!- Alpaca_ [d521cf16@gateway/web/freenode/ip.213.33.207.22] has joined #bitcoin-core-dev 06:56 -!- Alpaca_ [d521cf16@gateway/web/freenode/ip.213.33.207.22] has quit [Client Quit] 07:01 -!- Nina13Jaskolski [~Nina13Jas@ns334669.ip-5-196-64.eu] has quit [Remote host closed the connection] 07:01 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 07:03 < BlueMatt> wumpus: heh, well jonasschnelli or harding_ could un-brick it by adding a merge commit on top that merges from before your merge :p 07:03 < BlueMatt> we've dont that before....comically dirty hack 07:03 < BlueMatt> but it appears to work 07:03 -!- drizztbsd [tredaelli@redhat/timothy] has joined #bitcoin-core-dev 07:04 -!- timothy [tredaelli@redhat/timothy] has quit [Ping timeout: 248 seconds] 07:05 < BlueMatt> or someone can go poke the server, but prefer not to....will follow up if no one does it in an hour or so 07:05 -!- drizztbsd [tredaelli@redhat/timothy] has quit [Client Quit] 07:07 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 07:07 -!- PaulCape_ [~PaulCapes@ip68-100-207-53.dc.dc.cox.net] has quit [Quit: .] 07:11 -!- timothy [tredaelli@redhat/timothy] has joined #bitcoin-core-dev 07:17 -!- Murch [~murch@96-82-80-28-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 07:18 -!- Randy55Carter [~Randy55Ca@ns334669.ip-5-196-64.eu] has joined #bitcoin-core-dev 07:21 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 248 seconds] 07:21 -!- Chris_Stewart_5 [~chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has joined #bitcoin-core-dev 07:29 -!- pandabull [~pandabull@c-71-192-175-158.hsd1.ma.comcast.net] has quit [] 07:33 -!- PaulCapestany [~PaulCapes@ip68-100-207-53.dc.dc.cox.net] has joined #bitcoin-core-dev 07:34 -!- Murch [~murch@96-82-80-28-static.hfc.comcastbusiness.net] has quit [Quit: Plugging out.] 07:34 -!- ctulino [ae6c7505@gateway/web/freenode/ip.174.108.117.5] has joined #bitcoin-core-dev 07:40 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 07:42 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 07:58 -!- rabidus [~rabidus@91-145-115-22.bb.dnainternet.fi] has quit [Read error: Connection reset by peer] 08:03 -!- timothy [tredaelli@redhat/timothy] has quit [Quit: Konversation terminated!] 08:07 < bitcoin-git> [bitcoin] MarcoFalke closed pull request #11682: wallet: Simplify logic in CCryptoKeyStore::AddKeyPubKey(...) (master...CCryptoKeyStore-AddKeyPubKey) https://github.com/bitcoin/bitcoin/pull/11682 08:15 -!- JackH [~laptop@91.189.61.70] has quit [Ping timeout: 240 seconds] 08:16 -!- jb55 [~jb55@70-36-49-138.dyn.novuscom.net] has joined #bitcoin-core-dev 08:21 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 08:21 -!- MrPaz [~PazPazPaz@2602:306:8348:2f70:95b6:6104:c9a:641] has joined #bitcoin-core-dev 08:22 -!- jb55 [~jb55@70-36-49-138.dyn.novuscom.net] has quit [Ping timeout: 248 seconds] 08:33 -!- timothy [tredaelli@redhat/timothy] has joined #bitcoin-core-dev 08:38 -!- JackH [~laptop@alvira.static.korbank.pl] has joined #bitcoin-core-dev 08:46 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Remote host closed the connection] 08:47 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 08:49 -!- jb55 [~jb55@216-71-192-56.dyn.novuscom.net] has joined #bitcoin-core-dev 08:51 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Ping timeout: 248 seconds] 08:53 -!- LumberCartel [~randolf@96.53.47.42] has quit [Ping timeout: 240 seconds] 09:00 -!- rabidus [~rabidus@91-145-115-22.bb.dnainternet.fi] has joined #bitcoin-core-dev 09:22 -!- Dizzle [~dizzle@108.171.182.16] has joined #bitcoin-core-dev 09:26 -!- Randy55Carter [~Randy55Ca@ns334669.ip-5-196-64.eu] has quit [Remote host closed the connection] 09:26 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 09:26 -!- Flavio25Buckridg [~Flavio25B@ns334669.ip-5-196-64.eu] has joined #bitcoin-core-dev 09:31 -!- laurentmt [~Thunderbi@92.154.68.134] has quit [Quit: laurentmt] 09:34 -!- jb55 [~jb55@216-71-192-56.dyn.novuscom.net] has quit [Ping timeout: 248 seconds] 09:41 -!- PaulCapestany [~PaulCapes@ip68-100-207-53.dc.dc.cox.net] has quit [Read error: Connection reset by peer] 09:44 -!- roidster [~chatzilla@71-92-221-248.static.mtpk.ca.charter.com] has joined #bitcoin-core-dev 09:44 -!- roidster is now known as Guest60291 09:47 < bitcoin-git> [bitcoin] TheBlueMatt opened pull request #11686: Make ISSUE_TEMPLATE a bit shorter, mention hardware tests (master...2017-11-shorter-default-issue) https://github.com/bitcoin/bitcoin/pull/11686 09:53 -!- PaulCapestany [~PaulCapes@ip68-100-207-53.dc.dc.cox.net] has joined #bitcoin-core-dev 10:00 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-vocokarnudfvzawo] has joined #bitcoin-core-dev 10:11 -!- laurentmt [~Thunderbi@LAubervilliers-656-1-271-230.w193-248.abo.wanadoo.fr] has joined #bitcoin-core-dev 10:13 -!- LumberCartel [~randolf@96.53.47.42] has joined #bitcoin-core-dev 10:14 -!- laurentmt [~Thunderbi@LAubervilliers-656-1-271-230.w193-248.abo.wanadoo.fr] has quit [Client Quit] 10:25 -!- timothy [tredaelli@redhat/timothy] has quit [Quit: Konversation terminated!] 10:28 -!- Giszmo1 [~leo@pc-204-28-214-201.cm.vtr.net] has quit [Quit: Leaving.] 10:28 -!- jtimon [~quassel@164.31.134.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 10:37 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 10:37 -!- esotericnonsense [~esotericn@gateway/vpn/privateinternetaccess/esotericnonsense] has joined #bitcoin-core-dev 10:43 -!- alreadylate [~textual@37-247-1-221.customers.ownit.se] has joined #bitcoin-core-dev 10:43 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has joined #bitcoin-core-dev 10:53 -!- bule [~bule@gateway/tor-sasl/bule] has joined #bitcoin-core-dev 11:04 -!- Dizzle [~dizzle@108.171.182.16] has quit [Ping timeout: 248 seconds] 11:05 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has quit [Ping timeout: 248 seconds] 11:14 -!- wunpunch [~Alli@176.27.129.249] has joined #bitcoin-core-dev 11:17 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has quit [Read error: Connection reset by peer] 11:27 -!- Murch [~murch@96-82-80-28-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 11:27 -!- ott0disk [bcd900e7@gateway/web/cgi-irc/kiwiirc.com/ip.188.217.0.231] has joined #bitcoin-core-dev 11:34 -!- MrPaz [~PazPazPaz@2602:306:8348:2f70:95b6:6104:c9a:641] has quit [Ping timeout: 240 seconds] 11:35 -!- jb55 [~jb55@208.98.200.100] has joined #bitcoin-core-dev 11:37 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 11:38 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 11:47 -!- Giszmo [~leo@ip-135-237-219-201.nextelmovil.cl] has joined #bitcoin-core-dev 11:51 -!- ott0disk [bcd900e7@gateway/web/cgi-irc/kiwiirc.com/ip.188.217.0.231] has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] 11:52 -!- alreadylate [~textual@37-247-1-221.customers.ownit.se] has quit [] 11:54 -!- jsfour [~jsfour@cpe-76-90-140-31.socal.res.rr.com] has joined #bitcoin-core-dev 11:56 -!- dcousens [~dcousens@CPE-101-181-27-40.lnse4.cha.bigpond.net.au] has quit [Ping timeout: 248 seconds] 11:56 -!- dcousens [~dcousens@CPE-101-181-100-58.lnse5.cha.bigpond.net.au] has joined #bitcoin-core-dev 12:00 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-gvwapdwtomfrtcci] has joined #bitcoin-core-dev 12:03 < bitcoin-git> [bitcoin] ryanofsky opened pull request #11687: External wallet files (master...pr/wfile) https://github.com/bitcoin/bitcoin/pull/11687 12:09 -!- MrPaz [~PazPazPaz@2602:306:8348:2f70:95b6:6104:c9a:641] has joined #bitcoin-core-dev 12:09 -!- jsfour [~jsfour@cpe-76-90-140-31.socal.res.rr.com] has left #bitcoin-core-dev [] 12:09 -!- Dizzle [~dizzle@108.171.182.16] has joined #bitcoin-core-dev 12:09 -!- Cheeseo [~Cheeseo@unaffiliated/cheeseo] has joined #bitcoin-core-dev 12:24 -!- devin_ [d8fdc5d2@gateway/web/freenode/ip.216.253.197.210] has joined #bitcoin-core-dev 12:42 -!- Giszmo [~leo@ip-135-237-219-201.nextelmovil.cl] has quit [Quit: Leaving.] 12:46 -!- MrPaz [~PazPazPaz@2602:306:8348:2f70:95b6:6104:c9a:641] has quit [Ping timeout: 255 seconds] 12:46 -!- Giszmo [~leo@ip-135-237-219-201.nextelmovil.cl] has joined #bitcoin-core-dev 12:47 -!- chjj [~chjj@unaffiliated/chjj] has quit [Ping timeout: 248 seconds] 12:51 -!- MrPaz [~PazPazPaz@2602:306:8348:2f70:95b6:6104:c9a:641] has joined #bitcoin-core-dev 12:54 -!- Guest60291 [~chatzilla@71-92-221-248.static.mtpk.ca.charter.com] has quit [Quit: ChatZilla 0.9.92 [SeaMonkey 2.40/20160120202951]] 12:56 -!- jb55 [~jb55@208.98.200.100] has quit [Ping timeout: 240 seconds] 12:58 -!- wunpunch [~Alli@176.27.129.249] has quit [Read error: Connection reset by peer] 13:00 -!- jnewbery [~john@static-100-38-11-146.nycmny.fios.verizon.net] has quit [Quit: leaving] 13:01 -!- jnewbery [~john@static-100-38-11-146.nycmny.fios.verizon.net] has joined #bitcoin-core-dev 13:03 -!- wunpunch [~Alli@176.27.129.249] has joined #bitcoin-core-dev 13:08 -!- BCBot [~BCBot@46.101.246.115] has quit [Ping timeout: 240 seconds] 13:16 -!- BCBot [~BCBot@46.101.246.115] has joined #bitcoin-core-dev 13:22 -!- jb55 [~jb55@208.98.200.100] has joined #bitcoin-core-dev 13:26 -!- Nobody_ [8ee70713@gateway/web/freenode/ip.142.231.7.19] has joined #bitcoin-core-dev 13:26 < Nobody_> Hello 13:26 < Nobody_> i am Nobody, and i own the system 13:27 < Nobody_> i just wanted to state that i am requesting as a System that nobody owns and if you abuse the system you abuse yourself some upgrades that need to happen for the Bitcoin Core 13:28 < Nobody_> If anybody could get a message to the Bitcoin Core Developers to add the Mining back into the Core that would be perfect, ASIC is not needed to mine and is outdated plus not as power efficient 13:28 < Nobody_> also a Faucet in the core is needed for Nobody to send Bitcoin to the requested wallet of your choice, for reasons if it is not avaliable from anyone else the system will continue to function appropriately. 13:29 < Nobody_> Nobody should be able to have wallets that can be loaded with and share Cryptocurrency back if requested and users should be able to put Cryptocurrency into the faucet if they do not need it 13:30 < LumberCartel> Nobody_: You should raise your concerns in the #bitcoin channel rather than in this channel. 13:30 < Nobody_> it will bring Freedom and Equality for all users and not be so dominant on switching cash for cashless, i work with Antarctica and have researched the software very hard, Satoshi Nakamoto knows who i am but i will leave me Nobody 13:31 < Nobody_> it is more than a concern and i deem it nessessary to update it to make sure that everyone can enjoy the Cryptocurrency 13:32 < Nobody_> I already have a version that has a faucet and it is sufficient, as well as for the common good of the public and passes for being benificial for the greater good of humanity 13:33 < Dizzle> Nobody_: if you do have something more power efficient than ASIC for mining, you can submit a pull request that adds mining back into Core. If you're not sure how, let me know how its done and I'll help make the pull request. 13:37 -!- LumberCartel [~randolf@96.53.47.42] has quit [Ping timeout: 255 seconds] 13:39 -!- bule [~bule@gateway/tor-sasl/bule] has quit [Remote host closed the connection] 13:39 < Nobody_> S.O.S, Law Enforcement Update - Everything is legal 13:39 < Nobody_> Everything ECDSA Public Key (Bitcoin Compatible): 1N2EWy7LroJVFYXtmYZryh7W9eV3k6qajd exists since Mon Oct 02 2017 23:48:19 GMT-0700 (Pacific Daylight Time) 13:39 -!- bule [~bule@gateway/tor-sasl/bule] has joined #bitcoin-core-dev 13:39 < Nobody_> that is a Trusted timestamp and is forge proof 13:40 -!- mode/#bitcoin-core-dev [+o luke-jr] by ChanServ 13:40 -!- Nobody_ was kicked from #bitcoin-core-dev by luke-jr [funny, but no] 13:40 -!- mode/#bitcoin-core-dev [-o luke-jr] by luke-jr 13:42 -!- Cheeseo [~Cheeseo@unaffiliated/cheeseo] has quit [Read error: Connection reset by peer] 13:46 -!- Giszmo [~leo@ip-135-237-219-201.nextelmovil.cl] has quit [Quit: Leaving.] 13:51 -!- Giszmo [~leo@ip-135-237-219-201.nextelmovil.cl] has joined #bitcoin-core-dev 13:51 -!- chjj [~chjj@unaffiliated/chjj] has joined #bitcoin-core-dev 13:55 -!- Chris_Stewart_5 [~chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has quit [Ping timeout: 258 seconds] 13:56 -!- Giszmo [~leo@ip-135-237-219-201.nextelmovil.cl] has quit [Ping timeout: 268 seconds] 13:57 -!- Victor_sueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 13:57 < Dizzle> I still want his quantum CPU mining pull request. 13:58 -!- lari [~quassel@195.148.220.32] has quit [Quit: No Ping reply in 180 seconds.] 13:59 -!- ghost43 [~daer@gateway/tor-sasl/daer] has quit [Ping timeout: 248 seconds] 13:59 -!- andytosh1 [~apoelstra@wpsoftware.net] has joined #bitcoin-core-dev 13:59 -!- spinza [~spin@196.212.164.26] has quit [Ping timeout: 250 seconds] 13:59 -!- andytoshi [~apoelstra@unaffiliated/andytoshi] has quit [Ping timeout: 250 seconds] 13:59 -!- Cory [~Cory@unaffiliated/cory] has quit [Ping timeout: 250 seconds] 13:59 -!- warxhead [warxhead@c-73-243-180-191.hsd1.co.comcast.net] has quit [Ping timeout: 250 seconds] 14:00 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Ping timeout: 250 seconds] 14:00 -!- warxhead [warxhead@c-73-243-180-191.hsd1.co.comcast.net] has joined #bitcoin-core-dev 14:00 -!- ghost43 [~daer@gateway/tor-sasl/daer] has joined #bitcoin-core-dev 14:00 -!- PaulCapestany [~PaulCapes@ip68-100-207-53.dc.dc.cox.net] has quit [Quit: .] 14:01 -!- lari [~quassel@195.148.220.32] has joined #bitcoin-core-dev 14:01 -!- PaulCapestany [~PaulCapes@ip68-100-207-53.dc.dc.cox.net] has joined #bitcoin-core-dev 14:02 -!- gaf_ [~fag@5.39.219.206] has quit [Ping timeout: 260 seconds] 14:02 -!- boreddanman [182cec5f@gateway/web/freenode/ip.24.44.236.95] has quit [Quit: Page closed] 14:04 -!- Pasha [~Cory@unaffiliated/cory] has joined #bitcoin-core-dev 14:04 -!- gaf_ [~fag@12.smos-linux.org] has joined #bitcoin-core-dev 14:04 -!- boreddanman1 [~daniel@ool-182cec5f.dyn.optonline.net] has joined #bitcoin-core-dev 14:07 -!- Pasha is now known as Cory 14:10 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-gvwapdwtomfrtcci] has quit [Quit: Connection closed for inactivity] 14:11 -!- alreadylate [~textual@c-250e71d5.153-1-64736c10.cust.bredbandsbolaget.se] has joined #bitcoin-core-dev 14:15 -!- spinza [~spin@196.212.164.26] has joined #bitcoin-core-dev 14:19 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 14:19 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 14:21 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 14:22 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 14:29 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-vhverfnnceiolawe] has joined #bitcoin-core-dev 14:37 < bitcoin-git> [bitcoin] practicalswift opened pull request #11689: Fix missing locking in CTxMemPool::check(const CCoinsViewCache *pcoins) (master...CTxMemPool-check) https://github.com/bitcoin/bitcoin/pull/11689 14:46 < bitcoin-git> [bitcoin] MarcoFalke pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/6d4821b693b2...3bdf242fc68a 14:46 < bitcoin-git> bitcoin/master fafdad0 MarcoFalke: qa: Remove unused NodeConn members 14:46 < bitcoin-git> bitcoin/master 3bdf242 MarcoFalke: Merge #11677: qa: Remove unused NodeConn members... 14:46 < bitcoin-git> [bitcoin] MarcoFalke closed pull request #11677: qa: Remove unused NodeConn members (master...Mf1711-qaMininodeUnused) https://github.com/bitcoin/bitcoin/pull/11677 14:48 -!- wxss [~chatzilla@82.221.112.213] has quit [Remote host closed the connection] 14:57 -!- midnightmagic [~midnightm@unaffiliated/midnightmagic] has quit [Ping timeout: 264 seconds] 14:59 -!- Cogito_Ergo_Sum [~Myself@unaffiliated/cogito-ergo-sum/x-7399460] has quit [] 15:00 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 15:09 -!- Cheeseo [~Cheeseo@gateway/vpn/privateinternetaccess/cheeseo] has joined #bitcoin-core-dev 15:13 -!- wxss [~chatzilla@82.221.112.213] has joined #bitcoin-core-dev 15:13 -!- alreadylate [~textual@c-250e71d5.153-1-64736c10.cust.bredbandsbolaget.se] has quit [] 15:14 -!- midnightmagic [~midnightm@unaffiliated/midnightmagic] has joined #bitcoin-core-dev 15:19 -!- jsfour [~jsfour@cpe-76-90-140-31.socal.res.rr.com] has joined #bitcoin-core-dev 15:22 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has joined #bitcoin-core-dev 15:24 -!- LumberCartel [~randolf@96.53.47.42] has joined #bitcoin-core-dev 15:25 < karelb> Question about bitcoin-core - why is validation.h/.cpp so "overloaded"? It seems to me half of the things in there don't have to do much with validation 15:26 < karelb> such as default parameters, opening and writing to block files, etc 15:29 -!- vicenteH [~user@35.233.15.37.dynamic.jazztel.es] has quit [Ping timeout: 248 seconds] 15:29 -!- Cheeseo [~Cheeseo@gateway/vpn/privateinternetaccess/cheeseo] has quit [Ping timeout: 250 seconds] 15:30 < sipa> karelb: the reason is that up to about a year ago maybe, validation.cpp and net_processing.cpp were one file, called main.cpp 15:30 < sipa> splitting things up and off into other modules is a slow but continuing work that's certainly not complete yet 15:30 < karelb> Oh yeah, I thought it will be something historic like that 15:31 < karelb> I remember giant main.cpp, I suspected validation is "just" renamed main 15:31 < karelb> thanks! 15:31 < sipa> (and until a few years ago, main.cpp also contained all of chain management, utxo stuff, wallet, interaction with the GUI...) 15:33 < karelb> hm, doing refactoring like that seems like an easy way to get some cheap commits in bitcoin core code :D 15:34 -!- timothy [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 15:34 -!- timothy [~tredaelli@redhat/timothy] has quit [Client Quit] 15:36 -!- Dizzle [~dizzle@108.171.182.16] has quit [Quit: Leaving...] 15:36 < gmaxwell> karelb: it's not just renamed main, main was split basically in half, but there is still hangover. Also some of these things like consensus parameters are critical to consensus validation. 15:37 -!- fanquake [~fanquake@unaffiliated/fanquake] has joined #bitcoin-core-dev 15:37 < gmaxwell> There is some layout tension on that; abstracting consensus rules can make them more opaque and harder to review; and bitcoin core is not an altcoin construction set. :) OTOH, sometimes moving things around makes things more clear, enables better testing harnesses, etc. 15:38 < fanquake> karelb heh, there are easier ways to get cheap commits than playing with consensus code 15:39 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 15:39 < karelb> fanquake I know, I have this giant commit 15:39 < karelb> https://github.com/bitcoin/bitcoin/commit/06a3aecf06a52ff44370ee20462cc45b25e88d6a 15:39 < gmaxwell> karelb: yea,.lol no, refactoring consensus code is a good way to have a bad time and decide you don't want to contribute more. 15:40 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 15:40 -!- jb55 [~jb55@208.98.200.100] has quit [Ping timeout: 248 seconds] 15:41 < fanquake> karelb All contributions are valuable. Most people might find "issues" and never bother contribute a pr, or open an issue. 15:43 < gmaxwell> For obvious refactorings e.g. to meet our current code standards, we prefer to only perform them when the code is already being changed to avoid disrupting PR flow. For non-obvious refactors it is better if only expirenced participants do them, because newer contribs tend to not understand the informal architecture as well and tend to make refactors that unconsciously try to warp thing more to 15:43 < gmaxwell> their own personal styles instead of the project style. Consensus code in general has a higher review and testing bar, and is more likely to end up with people failing to review it because they don't think it meets a cost/benefit for the review. Sometimes refactorings of consensus code only happen because someone like pieter is effectively cashing in large amounts of social capital to pay for 15:43 < gmaxwell> other people to review the work-- and the fact that this is whats happening isn't necessarily visible to irregular contributors. So while anyone is welcome to submit such things, I wouldn't recommend those in particular, and anyone who submits consensus refactors should have reasonable expectations. 15:44 < fanquake> Now that the *new* Windows build instructions have been merged, I'm going to close all the existing windows build issues, hopefully we might get on top of them. However now it seems the there are just new path/directory related issues. 15:47 < fanquake> gmaxwell yes, hit and run consensus refactoring isn't really helpful. 15:47 < karelb> gmaxwell: OK, I will not make a PR that pulls out all `DEFAULT_`s from validation.h to defaults.h then. :) 15:59 -!- Cheeseo [~Cheeseo@gateway/vpn/privateinternetaccess/cheeseo] has joined #bitcoin-core-dev 16:03 -!- jsfour [~jsfour@cpe-76-90-140-31.socal.res.rr.com] has left #bitcoin-core-dev [] 16:03 -!- jsfour [~jsfour@cpe-76-90-140-31.socal.res.rr.com] has joined #bitcoin-core-dev 16:11 -!- ghost43 [~daer@gateway/tor-sasl/daer] has quit [Ping timeout: 248 seconds] 16:17 -!- ghost43 [~daer@gateway/tor-sasl/daer] has joined #bitcoin-core-dev 16:25 -!- jsfour [~jsfour@cpe-76-90-140-31.socal.res.rr.com] has quit [Ping timeout: 250 seconds] 16:30 -!- LumberCartel [~randolf@96.53.47.42] has quit [Ping timeout: 250 seconds] 16:30 -!- jsfour [~jsfour@cpe-76-90-140-31.socal.res.rr.com] has joined #bitcoin-core-dev 16:32 -!- MrPaz [~PazPazPaz@2602:306:8348:2f70:95b6:6104:c9a:641] has quit [Ping timeout: 258 seconds] 16:53 -!- fanquake [~fanquake@unaffiliated/fanquake] has quit [Quit: Leaving.] 16:57 -!- dabura667 [~dabura667@p98110-ipngnfx01marunouchi.tokyo.ocn.ne.jp] has joined #bitcoin-core-dev 16:59 -!- bule [~bule@gateway/tor-sasl/bule] has quit [Remote host closed the connection] 17:03 -!- bule [~bule@gateway/tor-sasl/bule] has joined #bitcoin-core-dev 17:04 -!- Cheeseo [~Cheeseo@gateway/vpn/privateinternetaccess/cheeseo] has quit [Ping timeout: 255 seconds] 17:06 -!- LumberCartel [~randolf@S0106c8fb26572f40.vc.shawcable.net] has joined #bitcoin-core-dev 17:09 -!- wunpunch [~Alli@176.27.129.249] has quit [Read error: Connection reset by peer] 17:13 -!- LumberCartel [~randolf@S0106c8fb26572f40.vc.shawcable.net] has quit [Ping timeout: 260 seconds] 17:14 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Ping timeout: 248 seconds] 17:39 -!- LumberCartel [~randolf@S0106c8fb26572f40.vc.shawcable.net] has joined #bitcoin-core-dev 17:44 -!- MrPaz [~PazPazPaz@2602:306:8348:2f70:95b6:6104:c9a:641] has joined #bitcoin-core-dev 17:47 -!- MrPaz [~PazPazPaz@2602:306:8348:2f70:95b6:6104:c9a:641] has quit [Client Quit] 17:52 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has joined #bitcoin-core-dev 17:53 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Remote host closed the connection] 17:53 -!- LumberCartel [~randolf@S0106c8fb26572f40.vc.shawcable.net] has quit [Ping timeout: 240 seconds] 17:53 -!- LumberCartel_ [~randolf@S0106c8fb26572f40.vc.shawcable.net] has joined #bitcoin-core-dev 17:53 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has joined #bitcoin-core-dev 17:58 -!- LumberCartel_ [~randolf@S0106c8fb26572f40.vc.shawcable.net] has quit [Ping timeout: 250 seconds] 18:07 -!- harrymm [~harrymm@85.203.47.26] has quit [] 18:10 -!- harrymm [~harrymm@85.203.47.135] has joined #bitcoin-core-dev 18:11 -!- Tatty [bcfbd7c0@gateway/web/freenode/ip.188.251.215.192] has joined #bitcoin-core-dev 18:19 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-vocokarnudfvzawo] has quit [Quit: Connection closed for inactivity] 18:19 < Tatty> I think I found an outdated version User Agent on Bitcoin Core 64 bit for Windows v0.15.0.1. I enabled 2 tor proxies, both making bidirectional connections. It happened one of the proxies contacted the other, and that's when I saw a wrong version: User Agent /Satoshi:0.14.0/ 18:20 < sipa> why is that wrong? 18:21 < Tatty> I am sure because I recognize the Hidden Service, of the income connection, it is mine 18:21 < gmaxwell> Tatty: what reason do you have to believe it wasn't some other node connecting to you. 18:21 < sipa> you can't know where an hidden service connection is coming from 18:21 -!- bule [~bule@gateway/tor-sasl/bule] has quit [Ping timeout: 248 seconds] 18:21 < gmaxwell> 0.15.0.1 gives a correct useragent, so either that connection wasn't from you or you're not running what you think you are. :) 18:22 < Tatty> it says on top via and then my hidden service 18:26 < Tatty> is it possible the user agent is only wrong one one of them when using 2 tor proxies? 18:26 < Tatty> and I am sorry for insisting 18:26 < sipa> what do you mean by 2 tor proxies? 18:26 < sipa> you can only configure oe 18:26 < sipa> one 18:27 < Tatty> I run 2 different ptor proxies as allowed by Bitcoin Core 0.15.0.1 18:28 < sipa> what's your configuration like? 18:28 -!- LumberCartel [~randolf@96.53.47.42] has joined #bitcoin-core-dev 18:28 < Tatty> no, I have 2 configured, running and one connecting to the other as I can only set 1 externalip= 18:29 < sipa> i have no idea what you mean by that 18:29 < sipa> can you paste your config somewhere? 18:31 < Tatty> I try 18:34 -!- btcdrak [uid234579@gateway/web/irccloud.com/x-phdjmbshjhakicmr] has joined #bitcoin-core-dev 18:42 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 18:50 -!- spellinmistache [568525e2@gateway/web/freenode/ip.86.133.37.226] has joined #bitcoin-core-dev 18:50 < Tatty> https://ibb.co/dqtWyR https://ibb.co/kX50sm 18:51 < Tatty> screenshots 18:51 < sipa> that means some Tor peer connected to you via Tor 18:52 -!- spellinmistache [568525e2@gateway/web/freenode/ip.86.133.37.226] has quit [Client Quit] 18:52 < sipa> using that ou26n... address (which is *your* onion address, not theirs) 18:52 < Tatty> YES! 18:52 < sipa> and *they* have user agent 0.14.0 18:52 < Tatty> it is my hidden service 18:52 < sipa> i know 18:52 < sipa> but that address is the onion address they are connecting TO 18:52 < sipa> i.e., yours 18:53 < Tatty> no, they are conecting to the seconf one, managed by bitcoin-qt 18:53 < sipa> that's not what it says 18:54 < sipa> all i can see is an external peer connecting to you 18:54 < Tatty> right 18:55 < Tatty> I know it connected to the 2nd tor proxy 18:55 < Tatty> by those phictures you can't know 18:55 < sipa> then i can't help you 18:55 < sipa> everything you're showing me just says there is some external peer running 0.14 that is connecting to you over tor 18:56 < Tatty> do you really want me to post unsafe tor logs? 18:56 < sipa> no 18:56 < sipa> i want you to explain me why you think my theory is wrong 18:57 < Tatty> because I know the hidden service on that picture in unkown to tor proxy #2 18:58 < gribble> https://github.com/bitcoin/bitcoin/issues/2 | Long-term, safe, store-of-value · Issue #2 · bitcoin/bitcoin · GitHub 18:58 -!- GateKeeper__ [18249385@gateway/web/freenode/ip.24.36.147.133] has joined #bitcoin-core-dev 18:58 < Tatty> and you see a incoming connection via that hidden service 18:59 -!- LumberCartel [~randolf@96.53.47.42] has quit [Ping timeout: 248 seconds] 18:59 < sipa> what do you mean by tor proxy 2 19:00 < Tatty> ok, someone might be having some fun announcing my hidden service as being theirs, but the simplest solution is that tor proxy 1 contacted tor proxy 2 19:00 < sipa> what do you mean by tor proxy 1 and tor proxy 2 19:01 < Tatty> check the second picture, the one set for port 9150 instead of 9050 19:02 < sipa> are those screenshots from the same client? 19:02 < Tatty> https://ibb.co/kX50sm proxy on top = proxy 1, the other is proxy 2 19:03 < Tatty> yes they are Ionly have this one 19:03 < sipa> those settings are irrelevant 19:03 < Tatty> and I never used any version prior to this 19:03 < sipa> they're about outgoing connections 19:04 < sipa> the peer screenshot is about an incoming connection 19:04 < Tatty> correct 19:04 < sipa> so i don't understand what the problem is 19:05 < sipa> a random other peer on the internet connected to you over tor 19:05 < sipa> those two proxy settings are not relevant 19:05 < Tatty> incomming to the hidden service created by Bitcoin Core on tor proxy 2 19:05 < Tatty> ok, I give up. 19:06 < sipa> ok? 19:06 < Tatty> sorry for taking your time 19:06 < sipa> why is that not possible? 19:07 < sipa> your bitcoin client rumours its addresses to other peers, including onion addresses if it knows th 19:07 < sipa> some peer saw yours, and connected to you 19:08 < Tatty> sipa, I can't make you understand 19:08 < Tatty> one of my peers conected to one of my peers with the wrong User Agent 19:08 < Tatty> putting it simple that is what happens 19:08 < sipa> i see no evidence of that 19:09 < Tatty> you keep telling me this setting doesn't work, but it does work 19:09 < sipa> no, i'm saying this setting is not relevant 19:09 < Tatty> proxy 1 doesn't accept any incoming connection as it doesn't have any hidden service 19:09 < Tatty> only the second does and it is Bitcoin Core who creates it 19:09 -!- Murch [~murch@96-82-80-28-static.hfc.comcastbusiness.net] has quit [Quit: Snoozing.] 19:09 < sipa> ok 19:10 < Tatty> now you say that is not possible 19:10 < sipa> no, i'm saying that you're seeing an incoming connection 19:10 < sipa> the settings you're showing me only affect outgoing connections 19:11 < Tatty> proxy=127.0.0.1:9050 listen=1 bind=127.0.0.1 proxyrandomize=1 externalip=ou26nyghcyiwrecx.onion 19:11 < Tatty> is this what you needed? 19:11 < sipa> so, you configured your external address as ou26... 19:12 < sipa> your bitcoin node rumoured that address around 19:12 < sipa> and someone is connecting to it 19:12 < sipa> the proxy setting does not matter, it changes how outgoing connections are made 19:13 < Tatty> I see yur point 19:13 < Tatty> Iam advertising a hidden service on the wrong tor proxy 19:14 < sipa> it is advertized to all your peers, regardless of connection type 19:14 < Tatty> You helped me very much 19:14 < Tatty> thank you! 19:14 < sipa> ok! 19:14 -!- jsfour [~jsfour@cpe-76-90-140-31.socal.res.rr.com] has quit [Ping timeout: 250 seconds] 19:16 -!- Tatty [bcfbd7c0@gateway/web/freenode/ip.188.251.215.192] has quit [Quit: Page closed] 19:17 -!- LumberCartel [~randolf@S0106c8fb26572f40.vc.shawcable.net] has joined #bitcoin-core-dev 19:18 -!- LumberCartel_ [~randolf@72.143.227.230] has joined #bitcoin-core-dev 19:20 -!- GateKeeper__ [18249385@gateway/web/freenode/ip.24.36.147.133] has quit [Quit: Page closed] 19:20 -!- LumberCartel_ [~randolf@72.143.227.230] has quit [Client Quit] 19:21 -!- LumberCartel [~randolf@S0106c8fb26572f40.vc.shawcable.net] has quit [Ping timeout: 268 seconds] 19:46 < kallewoof> luke-jr: any idea what the error is for this BIP PR? https://travis-ci.org/bitcoin/bips/builds/302293555?utm_source=github_status&utm_medium=notification 19:46 < kallewoof> I don't even see the error in that log. 19:54 -!- jb55 [~jb55@70-36-49-138.dyn.novuscom.net] has joined #bitcoin-core-dev 19:56 < meshcollider> kallewoof its something to do with that table diff, it runs scripts/buildtable.pl before and after your commit and then runs `if [ -n "$newdiff" ]; then echo "$newdiff"; exit 1;` 19:57 < meshcollider> Should you add an entry to README.mediawiki? 20:00 -!- bule [~bule@gateway/tor-sasl/bule] has joined #bitcoin-core-dev 20:05 < kallewoof> Ohh, that is probably it yeah. Thanks! 20:11 -!- Chao [494eeb35@gateway/web/freenode/ip.73.78.235.53] has joined #bitcoin-core-dev 20:12 -!- Chao [494eeb35@gateway/web/freenode/ip.73.78.235.53] has left #bitcoin-core-dev [] 20:26 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 20:27 -!- grio [~grio@ip68-102-158-172.ks.ok.cox.net] has joined #bitcoin-core-dev 20:27 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 20:34 -!- jsfour [~jsfour@cpe-45-50-168-164.socal.res.rr.com] has joined #bitcoin-core-dev 20:43 -!- jsfour [~jsfour@cpe-45-50-168-164.socal.res.rr.com] has quit [Ping timeout: 248 seconds] 20:51 < kallewoof> That was it, yep. Thanks again. 20:53 < meshcollider> Sweet :) 20:55 -!- jsfour [~jsfour@cpe-45-50-168-164.socal.res.rr.com] has joined #bitcoin-core-dev 21:11 < meshcollider> wumpus: https://github.com/bitcoin-core/bitcoincore.org/commit/ba1b4d6e97efead5f1bd0e6239b42c7faed0a4aa 21:38 < eck> if any of you use fedora, I just set up a bitcoin rpm repo based mostly on the existing spec file in the contrib/ directory, feel free to help me test it or give me feedback: https://copr.fedorainfracloud.org/coprs/eklitzke/bitcoin/ 21:55 -!- jtimon [~quassel@164.31.134.37.dynamic.jazztel.es] has quit [Ping timeout: 258 seconds] 22:23 -!- jsfour [~jsfour@cpe-45-50-168-164.socal.res.rr.com] has quit [Ping timeout: 268 seconds] 22:34 -!- jsfour [~jsfour@cpe-45-50-168-164.socal.res.rr.com] has joined #bitcoin-core-dev 22:38 -!- jsfour [~jsfour@cpe-45-50-168-164.socal.res.rr.com] has quit [Ping timeout: 250 seconds] 22:42 -!- spinza [~spin@196.212.164.26] has quit [Ping timeout: 248 seconds] 22:44 < wumpus> meshcollider: nice! 22:54 -!- jsfour [~jsfour@cpe-45-50-168-164.socal.res.rr.com] has joined #bitcoin-core-dev 22:59 -!- jsfour [~jsfour@cpe-45-50-168-164.socal.res.rr.com] has quit [Ping timeout: 255 seconds] 23:07 -!- jb55 [~jb55@70-36-49-138.dyn.novuscom.net] has quit [Ping timeout: 255 seconds] 23:09 -!- btcdrak [uid234579@gateway/web/irccloud.com/x-phdjmbshjhakicmr] has quit [Quit: Connection closed for inactivity] 23:13 -!- spinza [~spin@196.212.164.26] has joined #bitcoin-core-dev 23:16 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 23:17 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 23:18 -!- Victor_sueca is now known as Victorsueca 23:25 -!- jsfour [~jsfour@cpe-45-50-168-164.socal.res.rr.com] has joined #bitcoin-core-dev 23:29 < bitcoin-git> [bitcoin] jonasschnelli pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/3bdf242fc68a...4db82b7aab4a 23:29 < bitcoin-git> bitcoin/master 5ff01c2 James O'Beirne: [docs] Add instructions for lcov coverage report generation 23:29 < bitcoin-git> bitcoin/master 4db82b7 Jonas Schnelli: Merge #11680: [docs] Add instructions for lcov report generation... 23:30 < bitcoin-git> [bitcoin] jonasschnelli closed pull request #11680: [docs] Add instructions for lcov report generation (master...lcov-docs) https://github.com/bitcoin/bitcoin/pull/11680 23:30 -!- jsfour [~jsfour@cpe-45-50-168-164.socal.res.rr.com] has quit [Ping timeout: 250 seconds] 23:36 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 23:39 < kallewoof> Man, running a full node with datadir on an external USB drive is really slow. Like, handshakes are timing out kind of slow. 23:40 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 23:41 -!- JackH [~laptop@alvira.static.korbank.pl] has quit [Ping timeout: 240 seconds] 23:42 -!- prestonparris [~prestonpa@c-69-181-105-116.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 23:42 -!- ctulino [ae6c7505@gateway/web/freenode/ip.174.108.117.5] has quit [Ping timeout: 260 seconds] 23:46 < jonasschnelli> kallewoof: you could do a PR that would allow to keep the block files on a different "datadir"... 23:46 < jonasschnelli> That would be handy IMO 23:46 < jonasschnelli> Maybe only blocks older then 144+... 23:47 < kallewoof> Can't you just ln -s the blocks folder? I was thinking of doing that 23:47 < jonasschnelli> You want the UTXO/chainstate internal and the blocks external 23:47 < jonasschnelli> kallewoof: you can... 23:47 < jonasschnelli> but meh 23:47 < kallewoof> I actually think this might be a problem on my end, but not sure. It's way too slow to be normal behavior. I can't even addnode another full node on the same network. It times out. 23:51 -!- JackH [~laptop@alvira.static.korbank.pl] has joined #bitcoin-core-dev 23:54 -!- alreadylate [~textual@c-250e71d5.153-1-64736c10.cust.bredbandsbolaget.se] has joined #bitcoin-core-dev 23:56 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 23:56 -!- Leminer [LeMiner@unaffiliated/leminer] has quit [Read error: Connection reset by peer] 23:57 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Remote host closed the connection] 23:58 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has joined #bitcoin-core-dev 23:58 -!- mesh_ [Elite20673@gateway/shell/elitebnc/x-hncgbhziyjzjazic] has quit [Ping timeout: 248 seconds] 23:59 -!- Leminer [LeMiner@unaffiliated/leminer] has joined #bitcoin-core-dev 23:59 -!- windsok_ [~windsok@45.63.59.8] has quit [Quit: No Ping reply in 180 seconds.]