--- Day changed Wed Jan 24 2018 00:02 -!- aruns [~indistylo@106.216.160.3] has quit [Ping timeout: 265 seconds] 00:09 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Ping timeout: 268 seconds] 00:14 -!- tryphe_ [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 00:17 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Ping timeout: 248 seconds] 00:20 -!- Murch [~murch@c-73-223-113-121.hsd1.ca.comcast.net] has quit [Quit: Snoozing.] 00:32 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 00:36 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 00:36 < kallewoof> gmaxwell: you mean it should try to avoid partial spending and if it finds a fairly optimal solution it picks it over the per-coin selector? 00:37 < kallewoof> gmaxwell: I'm not sure what would be a good factor for determining success in that case, but it does sound like a good strategy. (Maybe simply # of inputs with enabled vs disabled? If same, use the no-partial-spends variant.) 00:38 < kallewoof> also, as noted in the PR, it is a fix to an issue raised in a different PR which marks addresses dirty. The two PRs together would avoid reuse completely, I believe. (Correct me if I'm missing something, though!) 00:38 < kallewoof> luke-jr: ^ 00:39 < kallewoof> s/issue raised/issue addressed/ 00:41 < gmaxwell> kallewoof: the decision criteria is a complicated question that is cropping up in other areas too... generally if the current feerate is low compared to what you expect in the future you want to be spending more inputs, if it's high, fewer-- though solutions without change are preferable. 00:46 < bitcoin-git> [bitcoin] tviho opened pull request #12258: Change app name, datadir location/settings (master...master) https://github.com/bitcoin/bitcoin/pull/12258 00:46 < kallewoof> gmaxwell: ahh.. that's a good point. I really like the idea of testing both cases and using the avoidpartialspends variant if it's only marginally worse. 00:47 < kallewoof> gmaxwell: just not sure what to base the criteria on. Maybe that's a different PR. It's simply a matter of calling https://github.com/bitcoin/bitcoin/pull/12257/files#diff-b2bb174788c7409b671c46ccc86034bdR4228 with false once and true once and comparing. 00:47 < bitcoin-git> [bitcoin] fanquake closed pull request #12258: Change app name, datadir location/settings (master...master) https://github.com/bitcoin/bitcoin/pull/12258 00:55 < gmaxwell> well at a minimum you can prefer the avoidpartial solution if it pays equal or less total fees, I think. 00:55 < gmaxwell> Though I know that isn't ideal, but I think it's strictly better than not trying. 00:56 -!- timothy [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 00:57 < kallewoof> If the fee rate is decided on coin selection (I don't think it is, but have to check), it could be used to consider more inputs as a better solution, maybe. I think I'll do the 'equal or less fee' fix right away though (but will it, ever? won't the same solution be found by the less restricted variant?) 00:58 < kallewoof> I mean, if the fee rate is really low, it could see it as an opportunity to group up inputs. I think that's flawed, though, so nevermind. 01:00 < gmaxwell> Fee rate is known then, so the software could decide to prefer more vs fewer, the challenge is how do you know if a specific feerate is a high vs a low one? 01:01 < gmaxwell> as far as "won't it find it" -- unlikely, the stochastic solver only evaluates a tiny fraction of the search space... imagine you have 10 addresses, and 10 payments each, its unlikely the ungrouped solver will ever consider spending just two groups. 01:02 < gmaxwell> I wouldn't be surprised if the grouped solution we seldom lower fees, though it might be equal not that infrequently. 01:03 -!- whphhg_ [~whphhg@unaffiliated/whphhg] has joined #bitcoin-core-dev 01:04 -!- whphhg [~whphhg@unaffiliated/whphhg] has quit [Read error: Connection reset by peer] 01:04 < kallewoof> Okay... yeah, I haven't considered the more complex cases. I'm mostly thinking of this from the "one actual payment with a bunch of tiny dust payments to track you" scenario. 01:05 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Ping timeout: 255 seconds] 01:08 < gmaxwell> I was about to say that with feerates at least tracking dust is less of an issue ... but then I remembed the last couple days... 01:08 -!- whphhg_ is now known as whphhg 01:08 < gmaxwell> fun fact: I noticed recently that some obvious tracking dust I got years ago is now worth $10 each. :) 01:08 < kallewoof> lol 01:09 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 01:12 -!- echelon [~echelon@bzflag/player/echelon] has quit [Ping timeout: 255 seconds] 01:12 < kallewoof> gmaxwell: the only straightforward way I could think of to check if the fee drops is the # of coins selected (I assume every input + signature will cost the same, which is untrue with segwit vs p2pkh, but I think that's not a big issue in the long run) 01:13 < gmaxwell> well one might have change and the other not... 01:13 < gmaxwell> you could compare their weight instead? 01:14 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has joined #bitcoin-core-dev 01:16 < kallewoof> I'm checking for change by seeing if nValueFromPresetInputs + nValueRet2 == nTargetValue. That's not precise though, due to dust limits and such, I guess. 01:16 -!- timothy [~tredaelli@redhat/timothy] has quit [Quit: Konversation terminated!] 01:16 < kallewoof> I didn't know you could get the weight for coins. Will look. 01:18 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 01:18 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 01:19 < gmaxwell> oh I see. 01:20 -!- timothy [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 01:20 < gmaxwell> right you're working with selections, not transactions. 01:20 < kallewoof> Okay, I think I understand what you mean -- make both transactions and compare their weights and pick the avoid-partial one if it's reasonable in comparison to the non-avoiding one. 01:20 < gmaxwell> yes, I was thinking that you were working with transactions for some reason. 01:20 < kallewoof> I was hoping to do all this in SelectCoins. (My patch currently looks like this: https://github.com/bitcoin/bitcoin/pull/12257/commits/4593c6164891e5d766b33952702195288a241b2d) 01:21 < promag> mryandao: do you need help addressing my comment?? 01:21 -!- Emcy_ [~Emcy@unaffiliated/emcy] has joined #bitcoin-core-dev 01:22 < gmaxwell> kallewoof: I think it's not unreasonable to do that. 01:22 -!- echelon [~echelon@bzflag/player/echelon] has joined #bitcoin-core-dev 01:24 -!- Emcy [~Emcy@unaffiliated/emcy] has quit [Ping timeout: 265 seconds] 01:25 -!- tryphe_ is now known as tryphe 01:31 -!- timothy [~tredaelli@redhat/timothy] has quit [Quit: Konversation terminated!] 01:35 -!- emzy [~quassel@raspberry.emzy.de] has quit [Changing host] 01:35 -!- emzy [~quassel@unaffiliated/emzy] has joined #bitcoin-core-dev 01:39 -!- vicenteH [~user@195.235.96.150] has joined #bitcoin-core-dev 01:41 -!- timothy [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 01:44 -!- timothy [~tredaelli@redhat/timothy] has quit [Client Quit] 01:44 -!- Emcy [~Emcy@unaffiliated/emcy] has joined #bitcoin-core-dev 01:45 -!- timothy [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 01:47 -!- Emcy_ [~Emcy@unaffiliated/emcy] has quit [Ping timeout: 268 seconds] 01:54 -!- arbitrary_guy [~arbitrary@c-67-183-30-122.hsd1.wa.comcast.net] has quit [Remote host closed the connection] 01:56 < kallewoof> gmaxwell: I think I've got it. Not sure what reviewers will say though (I wrapped CWallet::CreateTransaction and called the original twice for the case where avoid-partial is unset)... https://github.com/bitcoin/bitcoin/pull/12257/commits/3af1fac480fa08f92cd611ce93885d4501acc676 01:58 -!- afilini [~textual@212.91.77.39] has joined #bitcoin-core-dev 02:05 -!- indistylo [~indistylo@106.216.160.3] has joined #bitcoin-core-dev 02:09 -!- dabura667 [~dabura667@p98110-ipngnfx01marunouchi.tokyo.ocn.ne.jp] has quit [Ping timeout: 248 seconds] 02:13 -!- dabura667 [~dabura667@p98110-ipngnfx01marunouchi.tokyo.ocn.ne.jp] has joined #bitcoin-core-dev 02:17 -!- indistylo [~indistylo@106.216.160.3] has quit [Ping timeout: 264 seconds] 02:25 -!- indistylo [~indistylo@106.216.160.3] has joined #bitcoin-core-dev 02:26 < kallewoof> (It's failing in places; will fix & push update later.) 02:31 -!- indistylo [~indistylo@106.216.160.3] has quit [Ping timeout: 240 seconds] 02:31 -!- indistylo [~indistylo@119.82.105.106] has joined #bitcoin-core-dev 02:36 -!- afilini [~textual@212.91.77.39] has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…] 02:37 -!- Orion3k [~Orion3k@47-51-33-228.static.mtpk.ca.charter.com] has joined #bitcoin-core-dev 02:41 -!- laurentmt [~Thunderbi@176.158.157.202] has joined #bitcoin-core-dev 02:41 -!- laurentmt [~Thunderbi@176.158.157.202] has quit [Client Quit] 02:47 -!- jtimon [~quassel@41.31.134.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 02:50 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 248 seconds] 02:55 -!- wxss [~user@185.145.38.233] has joined #bitcoin-core-dev 03:03 -!- afilini [~textual@212.91.77.39] has joined #bitcoin-core-dev 03:06 -!- shesek [~shesek@bzq-84-110-60-135.red.bezeqint.net] has joined #bitcoin-core-dev 03:06 -!- shesek [~shesek@bzq-84-110-60-135.red.bezeqint.net] has quit [Changing host] 03:06 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 03:07 -!- Orion3k [~Orion3k@47-51-33-228.static.mtpk.ca.charter.com] has quit [Quit: Leaving] 03:09 -!- larafale [~larafale@ax213-1-82-66-157-194.fbx.proxad.net] has joined #bitcoin-core-dev 03:16 -!- dabura667 [~dabura667@p98110-ipngnfx01marunouchi.tokyo.ocn.ne.jp] has quit [Remote host closed the connection] 03:20 -!- larafale [~larafale@ax213-1-82-66-157-194.fbx.proxad.net] has quit [Remote host closed the connection] 03:21 -!- larafale [~larafale@ax213-1-82-66-157-194.fbx.proxad.net] has joined #bitcoin-core-dev 03:21 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Read error: Connection reset by peer] 03:24 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 03:25 -!- larafale [~larafale@ax213-1-82-66-157-194.fbx.proxad.net] has quit [Ping timeout: 240 seconds] 03:29 -!- timothy [~tredaelli@redhat/timothy] has quit [Quit: Konversation terminated!] 03:31 -!- larafale [~larafale@ax213-1-82-66-157-194.fbx.proxad.net] has joined #bitcoin-core-dev 03:32 -!- indistylo [~indistylo@119.82.105.106] has quit [Ping timeout: 256 seconds] 03:35 -!- indistylo [~indistylo@223.227.35.198] has joined #bitcoin-core-dev 03:39 -!- indistylo [~indistylo@223.227.35.198] has quit [Read error: Connection reset by peer] 03:39 -!- indistylo [~indistylo@119.82.105.106] has joined #bitcoin-core-dev 03:46 -!- timothy [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 03:55 -!- timothy [~tredaelli@redhat/timothy] has quit [Ping timeout: 255 seconds] 03:57 < bitcoin-git> [bitcoin] laanwj pushed 6 new commits to master: https://github.com/bitcoin/bitcoin/compare/b5e4b9b5100e...8470e64724cb 03:57 < bitcoin-git> bitcoin/master 8d0b610 Jonas Schnelli: Avoid pemanent cs_main/cs_wallet lock during wallet rescans 03:57 < bitcoin-git> bitcoin/master dbf8556 Jonas Schnelli: Add RAII wallet rescan reserver 03:57 < bitcoin-git> bitcoin/master bc356b4 Jonas Schnelli: Make sure WalletRescanReserver has successfully reserved the rescan 03:57 < bitcoin-git> [bitcoin] laanwj closed pull request #11281: Avoid permanent cs_main/cs_wallet lock during RescanFromTime (master...2017/09/rescan_locks) https://github.com/bitcoin/bitcoin/pull/11281 03:59 < promag> \o/ 04:07 < bitcoin-git> [bitcoin] laanwj pushed 5 new commits to master: https://github.com/bitcoin/bitcoin/compare/8470e64724cb...6e89de5ba7ce 04:07 < bitcoin-git> bitcoin/master fb6f6b1 Matt Corallo: bluematt's testnet-seed now supports x9 (and is just a static list) 04:07 < bitcoin-git> bitcoin/master 51ae766 Matt Corallo: Use GetDesireableServiceFlags in static seeds, document this.... 04:07 < bitcoin-git> bitcoin/master 62e7642 Matt Corallo: Fall back to oneshot for DNS Seeds which don't support filtering.... 04:08 < bitcoin-git> [bitcoin] laanwj closed pull request #11512: Use GetDesireableServiceFlags in seeds, dnsseeds, fixing static seed adding (master...2017-10-seed-service-bits-cleanups) https://github.com/bitcoin/bitcoin/pull/11512 04:08 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has quit [Remote host closed the connection] 04:08 -!- whphhg_ [~whphhg@unaffiliated/whphhg] has joined #bitcoin-core-dev 04:10 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has joined #bitcoin-core-dev 04:10 -!- whphhg [~whphhg@unaffiliated/whphhg] has quit [Ping timeout: 248 seconds] 04:10 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has quit [Remote host closed the connection] 04:11 -!- timothy [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 04:13 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has joined #bitcoin-core-dev 04:13 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has quit [Remote host closed the connection] 04:13 -!- tryphe_ [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 04:14 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has joined #bitcoin-core-dev 04:14 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has quit [Max SendQ exceeded] 04:14 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has joined #bitcoin-core-dev 04:15 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has quit [Remote host closed the connection] 04:16 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has joined #bitcoin-core-dev 04:16 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Ping timeout: 264 seconds] 04:18 -!- afilini [~textual@212.91.77.39] has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…] 04:18 < promag> wumpus: #12213 do you agree with jnewbery? 04:18 < gribble> https://github.com/bitcoin/bitcoin/issues/12213 | Add address type to addmultisigaddress and createmultisig by promag · Pull Request #12213 · bitcoin/bitcoin · GitHub 04:19 -!- eck [~eck@fsf/member/eck] has joined #bitcoin-core-dev 04:20 < wumpus> promag: I agree it makes sense to separate it out and discuss it separately, not making it hold up 0.16 04:20 < promag> ok, I'll adjust 04:21 < wumpus> I agree with his points, also that we really don't want to be introducing new #ifdef ENABLE_WALLET, but in any case let's get the other two commits in 04:21 -!- maaku [~maaku@173.234.25.100] has left #bitcoin-core-dev ["http://quassel-irc.org - Chat comfortably. Anywhere."] 04:23 < wumpus> it's doubly interesting because this code within ENABLE_WALLET doesn't use any wallet, implying, if we want this, that there is some utility code that needs to be moved out of the wallet 04:25 -!- aruns__ [~indistylo@119.82.105.106] has joined #bitcoin-core-dev 04:25 -!- alfa [uid11513@gateway/web/irccloud.com/x-hyqmqmuasiekvgsa] has joined #bitcoin-core-dev 04:27 -!- indistylo [~indistylo@119.82.105.106] has quit [Ping timeout: 248 seconds] 04:33 < wumpus> going to merge #11415 first, seems it's ready 04:33 < gribble> https://github.com/bitcoin/bitcoin/issues/11415 | [RPC] Disallow using addresses in createmultisig by achow101 · Pull Request #11415 · bitcoin/bitcoin · GitHub 04:33 -!- eck [~eck@fsf/member/eck] has quit [Quit: we out here] 04:33 -!- eck [~eck@fsf/member/eck] has joined #bitcoin-core-dev 04:40 -!- drizztbsd [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 04:41 -!- timothy [~tredaelli@redhat/timothy] has quit [Ping timeout: 276 seconds] 04:48 -!- drizztbsd [~tredaelli@redhat/timothy] has quit [Read error: Connection reset by peer] 04:50 -!- drizztbsd [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 04:52 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 05:04 < bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/6e89de5ba7ce...69ec021969a4 05:04 < bitcoin-git> bitcoin/master 1df206f Andrew Chow: Disallow using addresses in createmultisig... 05:04 < bitcoin-git> bitcoin/master 69ec021 Wladimir J. van der Laan: Merge #11415: [RPC] Disallow using addresses in createmultisig... 05:04 < bitcoin-git> [bitcoin] laanwj closed pull request #11415: [RPC] Disallow using addresses in createmultisig (master...createmultisig-no-addr) https://github.com/bitcoin/bitcoin/pull/11415 05:07 -!- eck [~eck@fsf/member/eck] has quit [Remote host closed the connection] 05:09 -!- indistylo [~indistylo@119.82.105.106] has joined #bitcoin-core-dev 05:10 -!- aruns__ [~indistylo@119.82.105.106] has quit [Ping timeout: 256 seconds] 05:17 -!- Eetsi123 [~Eetsi123@85-76-49-33-nat.elisa-mobile.fi] has joined #bitcoin-core-dev 05:20 -!- DarylSharp2 [~DarylShar@c-73-128-186-71.hsd1.de.comcast.net] has quit [Quit: Leaving] 05:22 -!- Eetsi123 [~Eetsi123@85-76-49-33-nat.elisa-mobile.fi] has quit [Client Quit] 05:22 -!- drizztbsd [~tredaelli@redhat/timothy] has quit [Read error: Connection reset by peer] 05:23 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 05:23 -!- drizztbsd [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 05:25 -!- drizztbsd [~tredaelli@redhat/timothy] has quit [Read error: Connection reset by peer] 05:25 -!- drizztbsd [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 05:27 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has joined #bitcoin-core-dev 05:27 -!- drizztbsd [~tredaelli@redhat/timothy] has quit [Read error: Connection reset by peer] 05:29 -!- drizztbsd [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 05:30 -!- rafalcpp_ is now known as rafalcpp 05:31 -!- drizztbsd [~tredaelli@redhat/timothy] has quit [Read error: Connection reset by peer] 05:31 -!- Stevie88Glover [~Stevie88G@ns334669.ip-5-196-64.eu] has quit [Ping timeout: 264 seconds] 05:31 -!- drizztbsd [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 05:32 -!- Guyver2 [~Guyver@guyver2.xs4all.nl] has joined #bitcoin-core-dev 05:35 -!- drizztbsd [~tredaelli@redhat/timothy] has quit [Read error: Connection reset by peer] 05:35 -!- drizztbsd [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 05:35 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Read error: Connection reset by peer] 05:36 -!- Gay6Rowe [~Gay6Rowe@ns334669.ip-5-196-64.eu] has joined #bitcoin-core-dev 05:39 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 05:39 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 05:40 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 05:44 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has quit [Ping timeout: 260 seconds] 05:47 -!- Gay6Rowe [~Gay6Rowe@ns334669.ip-5-196-64.eu] has quit [Ping timeout: 256 seconds] 05:49 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 265 seconds] 05:50 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 05:50 -!- wolfspraul [~wolfsprau@bobbin.q-ag.de] has joined #bitcoin-core-dev 05:52 < bitcoin-git> [bitcoin] MarcoFalke pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/69ec021969a4...126000ba9e7f 05:52 < bitcoin-git> bitcoin/master ffffb10 MarcoFalke: qa: Rename cli.args to cli.options... 05:52 < bitcoin-git> bitcoin/master fae7b14 MarcoFalke: qa: Make TestNodeCLI command optional in send_cli 05:52 < bitcoin-git> bitcoin/master 126000b MarcoFalke: Merge #12089: qa: Make TestNodeCLI command optional in send_cli... 05:53 < bitcoin-git> [bitcoin] MarcoFalke closed pull request #12089: qa: Make TestNodeCLI command optional in send_cli (master...Mf1801-qaCliOptions) https://github.com/bitcoin/bitcoin/pull/12089 05:54 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 246 seconds] 05:55 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 05:58 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has joined #bitcoin-core-dev 05:59 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 255 seconds] 06:00 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 06:04 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 246 seconds] 06:05 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 06:07 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has quit [Quit: Leaving] 06:07 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has joined #bitcoin-core-dev 06:23 < bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/126000ba9e7f...95941396fff8 06:23 < bitcoin-git> bitcoin/master 596c446 Sjors Provoost: [wallet] use P2WPKH change output if any destination is P2WPKH or P2WSH... 06:23 < bitcoin-git> bitcoin/master 9594139 Wladimir J. van der Laan: Merge #12119: [wallet] use P2WPKH change output if any destination is P2WPKH or P2WSH... 06:23 -!- tryphe_ [~tryphe@unaffiliated/tryphe] has quit [Ping timeout: 246 seconds] 06:23 < bitcoin-git> [bitcoin] laanwj closed pull request #12119: [wallet] use P2WPKH change output if any destination is P2WPKH or P2WSH (master...bech32-change) https://github.com/bitcoin/bitcoin/pull/12119 06:25 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has quit [Ping timeout: 240 seconds] 06:26 -!- drizztbsd [~tredaelli@redhat/timothy] has quit [Read error: Connection reset by peer] 06:26 -!- drizztbsd [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 06:30 -!- belcher_ [~belcher@unaffiliated/belcher] has joined #bitcoin-core-dev 06:35 -!- Kayla10Mertz [~Kayla10Me@ns334669.ip-5-196-64.eu] has joined #bitcoin-core-dev 06:40 -!- eck [~eck@fsf/member/eck] has joined #bitcoin-core-dev 06:40 -!- afilini [~textual@212.91.77.39] has joined #bitcoin-core-dev 06:45 -!- alfa [uid11513@gateway/web/irccloud.com/x-hyqmqmuasiekvgsa] has quit [Quit: Connection closed for inactivity] 06:50 -!- aruns__ [~indistylo@119.82.105.106] has joined #bitcoin-core-dev 06:52 -!- afilini [~textual@212.91.77.39] has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…] 06:52 < promag> wumpus: #12213, rebased and removed createmultisig change 06:52 < gribble> https://github.com/bitcoin/bitcoin/issues/12213 | Add address type to addmultisigaddress and createmultisig by promag · Pull Request #12213 · bitcoin/bitcoin · GitHub 06:53 -!- indistylo [~indistylo@119.82.105.106] has quit [Ping timeout: 248 seconds] 06:56 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has quit [Remote host closed the connection] 06:59 -!- propumpkin is now known as contrapumpkin 06:59 < wumpus> promag: thanks! 07:00 < promag> taking care of #12194 too 07:00 < gribble> https://github.com/bitcoin/bitcoin/issues/12194 | Add change type option to fundrawtransaction by promag · Pull Request #12194 · bitcoin/bitcoin · GitHub 07:12 -!- jojeyh [~delphi@2602:306:b8b6:b970:21d0:4d4c:1b4b:b54c] has joined #bitcoin-core-dev 07:13 -!- drizztbsd [~tredaelli@redhat/timothy] has quit [Read error: Connection reset by peer] 07:14 -!- neha [~narula@tbilisi.csail.mit.edu] has quit [Ping timeout: 248 seconds] 07:17 -!- tryphe [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 07:22 -!- lnostdal [~lnostdal@77.70.119.51] has joined #bitcoin-core-dev 07:22 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has joined #bitcoin-core-dev 07:24 -!- aruns__ [~indistylo@119.82.105.106] has quit [Ping timeout: 260 seconds] 07:33 -!- neha [~narula@tbilisi.csail.mit.edu] has joined #bitcoin-core-dev 07:34 < bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/95941396fff8...e37ca2be91bd 07:34 < bitcoin-git> bitcoin/master 04ededf Russell Yanofsky: Make CKey::Load references const... 07:34 < bitcoin-git> bitcoin/master e37ca2b Wladimir J. van der Laan: Merge #12250: Make CKey::Load references const... 07:34 < bitcoin-git> [bitcoin] laanwj closed pull request #12250: Make CKey::Load references const (master...pr/keyload) https://github.com/bitcoin/bitcoin/pull/12250 07:35 < promag> wumpus: pushed #12194 07:35 < gribble> https://github.com/bitcoin/bitcoin/issues/12194 | Add change type option to fundrawtransaction by promag · Pull Request #12194 · bitcoin/bitcoin · GitHub 07:35 < promag> those are the last 2 in 0.16 millestone 07:37 -!- neha [~narula@tbilisi.csail.mit.edu] has quit [Ping timeout: 246 seconds] 07:38 < bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/e37ca2be91bd...6e3fe936090d 07:38 < bitcoin-git> bitcoin/master 1e0d6e9 Wladimir J. van der Laan: tx: Update transifex slug for 0.16... 07:38 < bitcoin-git> bitcoin/master 6e3fe93 Wladimir J. van der Laan: qt: Update translation source file... 07:40 -!- wraithm [~wraithm@unaffiliated/wraithm] has joined #bitcoin-core-dev 07:42 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has joined #bitcoin-core-dev 07:44 < achow101> Oh! 0.16 is almost ready. Only 2 PRs left 07:45 < wumpus> yep, I hope we can tag it after the meeting tomorrow 07:45 < wumpus> rc1, I mean 07:46 < wumpus> still need to some some release process things, such as updating hardcoded seeds 07:49 -!- eck [~eck@fsf/member/eck] has quit [Quit: we out here] 07:49 -!- afilini [~textual@212.91.77.39] has joined #bitcoin-core-dev 07:50 < sipa> wumpus: do we want #12253 in 0.16? 07:50 < gribble> https://github.com/bitcoin/bitcoin/issues/12253 | SegWit support for importmulti · Issue #12253 · bitcoin/bitcoin · GitHub 07:51 < wumpus> sipa: if possible, but I think it's getting a bit late for that 07:52 -!- vigorousbearhunt [~vigorousb@gateway/tor-sasl/vigorousbearhunt] has joined #bitcoin-core-dev 07:52 < sipa> i certainly won't have time until next week 07:52 < wumpus> I assume the code still needs to be written, and ofc it will need to go through a review cycle 07:52 -!- mrannanay [uid222022@gateway/web/irccloud.com/x-lqdbvjkmibncslwi] has quit [Quit: Connection closed for inactivity] 07:52 < wumpus> right, so I guess that means no 07:53 < wumpus> should probably mention lack of support in importmulti it in the 'known issues' in the release notes 07:53 < promag> is that a thing for a 0.16.1? 07:53 < sipa> you think it's not essential? 07:53 < wumpus> no, I don't think it's essential 07:54 < promag> sipa: you think it is? 07:54 < sipa> signmessage may be worse, as it may silently break for people who didn't know we were switching to a new address format 07:54 < wumpus> but I think segwit address support is worth a release in itself, even if not all supporting features have made it in yet 07:54 < wumpus> so that one needs to be mentioned in the release notes as well 07:55 < sipa> okay 07:56 < wumpus> I can't be the only one that really wants a release with segwit wallet out? 07:56 < sipa> no, i'm sure you're not :) 07:56 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has quit [Remote host closed the connection] 07:56 < wumpus> promag: yes, could be 0.16.1 08:00 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has joined #bitcoin-core-dev 08:00 -!- timothy [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 08:00 -!- afilini [~textual@212.91.77.39] has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…] 08:00 < ryanofsky> promag, fyi #12213 nulldummy.py test currently fails 08:00 < gribble> https://github.com/bitcoin/bitcoin/issues/12213 | Add address type to addmultisigaddress and createmultisig by promag · Pull Request #12213 · bitcoin/bitcoin · GitHub 08:01 < instagibbs> there's going to be a lot of cleanup regardless, 0.16.1 is going to happen 08:01 < promag> ryanofsky: ty 08:01 < wumpus> instagibbs: that's true for any major release, though :) 08:03 < instagibbs> I would look through release history to try and disprove, instead i shall just double-down, and log off 08:03 < instagibbs> ;) 08:04 < promag> is there anything deprecated in 0.15 to remove? 08:07 -!- mxg [~mxg@cpe-76-91-1-28.socal.res.rr.com] has joined #bitcoin-core-dev 08:10 < bitcoin-git> [bitcoin] fwolfst opened pull request #12260: [Trivial] link mentioned scripted-diff-commit (developer-doc) (master...LINK_COMMIT_IN_DOC_DEVNOTES) https://github.com/bitcoin/bitcoin/pull/12260 08:10 -!- Amuza [~Amuza@85.159.207.5] has quit [Ping timeout: 240 seconds] 08:12 < achow101> promag: I think all the currently deprecated things are for removal in 0.17 (except the accounts system) 08:13 < promag> so mark deprectated in X, remove in X+2? 08:13 < wumpus> depends on the feature and the reason for deprecation, so depends on what was discussed at the time of deprecating it 08:14 < achow101> no, the things currently deprecated were marked deprecated for 0.16 08:16 -!- mrannanay [uid222022@gateway/web/irccloud.com/x-nyaiegjiniryihws] has joined #bitcoin-core-dev 08:18 -!- Murch [~murch@96-82-80-28-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 08:18 < promag> got it 08:19 -!- Guest25674 [~schmidty@unaffiliated/schmidty] has joined #bitcoin-core-dev 08:19 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Read error: Connection reset by peer] 08:19 < bitcoin-git> [bitcoin] laanwj opened pull request #12261: qt: Bump BLOCK_CHAIN_SIZE to 200GB (master...2018_01_block_chain_size) https://github.com/bitcoin/bitcoin/pull/12261 08:21 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 08:24 < promag> ryanofsky: fixed segwit 08:24 < promag> ^ test =) 08:24 < sipa> that sounds ominous 08:24 < promag> heh 08:26 < promag> wumpus: "Bump BLOCK_CHAIN_SIZE to 200GB" typo there s/_CHAIN// 08:26 < wumpus> promag: noooooooo 08:27 < sipa> hahaha 08:27 < promag> 100GB? 08:27 -!- neha [~narula@tbilisi.csail.mit.edu] has joined #bitcoin-core-dev 08:27 < wumpus> promag: I already had to juggle partitions to fit the current one on my dev machine 08:28 < Chris_Stewart_5> lol. 08:28 < Chris_Stewart_5> we can now fit our entire previous blockchain in two blocks. MUCH THROUGHPUT 08:30 -!- Kayla10Mertz [~Kayla10Me@ns334669.ip-5-196-64.eu] has quit [Ping timeout: 246 seconds] 08:30 -!- harrymm_ [~harrymm@104.207.83.48] has quit [] 08:31 -!- harrymm [~harrymm@104.207.83.48] has joined #bitcoin-core-dev 08:31 < jcorgan> how about we embed the entire current blockchain in an OP_RETURN of a new genesis block? 08:33 < MarcoFalke> wumpus: What about #12251 08:33 < wumpus> of course, and after that the OP_RETURN policy limit goes from 80 bytes to 80 GB, so it's possible to embed entire DVD images 08:33 < gribble> https://github.com/bitcoin/bitcoin/issues/12251 | initwallet: Do not translate highly technical addresstype help by MarcoFalke · Pull Request #12251 · bitcoin/bitcoin · GitHub 08:33 < MarcoFalke> Asking since you pushed the translations recently 08:33 < promag> jcorgan: another typo, s/OP_RETURN/javascript 08:34 < wumpus> MarcoFalke: I think we should not translate option help messages at all 08:34 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 265 seconds] 08:34 < promag> I guess project:bitcoin/bitcoin/8 will be updated in the next days? 08:34 < MarcoFalke> I know you proposed that #10962 08:34 < gribble> https://github.com/bitcoin/bitcoin/issues/10962 | Stop translating command-line option help? · Issue #10962 · bitcoin/bitcoin · GitHub 08:35 < wumpus> but yes it might be too late to do that for 0.16 so I'm ok with your change 08:35 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 08:36 < MarcoFalke> Yeah, I want to save our translators from trying to translate "segwit" or "p2sh" 08:36 < wumpus> agree 08:37 -!- Allan88Bergstrom [~Allan88Be@ns334669.ip-5-196-64.eu] has joined #bitcoin-core-dev 08:39 < bitcoin-git> [bitcoin] laanwj opened pull request #12262: net: Hardcoded seed update (master...2018_01_seed_update) https://github.com/bitcoin/bitcoin/pull/12262 08:39 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 255 seconds] 08:40 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 08:41 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 08:42 < bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/6e3fe936090d...cc5870a4057f 08:42 < bitcoin-git> bitcoin/master fa7ecbf MarcoFalke: initwallet: Do not translate highly technical addresstype help 08:42 < bitcoin-git> bitcoin/master cc5870a Wladimir J. van der Laan: Merge #12251: initwallet: Do not translate highly technical addresstype help... 08:43 < bitcoin-git> [bitcoin] laanwj closed pull request #12251: initwallet: Do not translate highly technical addresstype help (master...Mf1801-walletNoTranslateInitHelp) https://github.com/bitcoin/bitcoin/pull/12251 08:43 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has quit [Quit: Leaving.] 08:50 -!- Randolf [~randolf@96.53.47.42] has quit [Ping timeout: 240 seconds] 08:52 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 08:59 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has joined #bitcoin-core-dev 09:02 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Read error: Connection reset by peer] 09:03 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 09:04 -!- harrymm_ [~harrymm@104.207.83.58] has joined #bitcoin-core-dev 09:06 -!- harrymm [~harrymm@104.207.83.48] has quit [Ping timeout: 260 seconds] 09:08 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Remote host closed the connection] 09:09 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has joined #bitcoin-core-dev 09:10 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-lwcabvtkfmybtjpt] has quit [Quit: Connection closed for inactivity] 09:13 -!- mxg [~mxg@cpe-76-91-1-28.socal.res.rr.com] has quit [Quit: afk] 09:19 -!- Cogito_Ergo_Sum [~Myself@ppp-94-64-157-186.home.otenet.gr] has joined #bitcoin-core-dev 09:19 -!- Cogito_Ergo_Sum [~Myself@ppp-94-64-157-186.home.otenet.gr] has quit [Changing host] 09:19 -!- Cogito_Ergo_Sum [~Myself@unaffiliated/cogito-ergo-sum/x-7399460] has joined #bitcoin-core-dev 09:20 -!- Randolf [~randolf@96.53.47.42] has joined #bitcoin-core-dev 09:22 -!- mxg [~mxg@cpe-76-91-1-28.socal.res.rr.com] has joined #bitcoin-core-dev 09:23 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 09:24 -!- afilini [~textual@212.91.77.39] has joined #bitcoin-core-dev 09:26 -!- afilini [~textual@212.91.77.39] has quit [Client Quit] 09:29 -!- Murch [~murch@96-82-80-28-static.hfc.comcastbusiness.net] has quit [Quit: Snoozing.] 09:31 -!- Amuza [~Amuza@78.30.20.201] has joined #bitcoin-core-dev 09:31 -!- eck [~eck@fsf/member/eck] has joined #bitcoin-core-dev 09:32 -!- larafale [~larafale@ax213-1-82-66-157-194.fbx.proxad.net] has quit [Remote host closed the connection] 09:43 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has quit [Quit: Leaving.] 09:44 -!- DigitalDank [DigitalDan@ip72-207-116-245.sd.sd.cox.net] has quit [Ping timeout: 255 seconds] 09:45 -!- flokie_ is now known as flokie 09:56 -!- ghost43 [~daer@gateway/tor-sasl/daer] has quit [Ping timeout: 255 seconds] 09:58 -!- ghost43 [~daer@gateway/tor-sasl/daer] has joined #bitcoin-core-dev 10:03 -!- goatpig [56f75683@gateway/web/freenode/ip.86.247.86.131] has joined #bitcoin-core-dev 10:03 -!- Murch [~murch@mobile-166-177-250-45.mycingular.net] has joined #bitcoin-core-dev 10:07 -!- __jnsmk__ [a305b53d@gateway/web/freenode/ip.163.5.181.61] has joined #bitcoin-core-dev 10:07 -!- mxg [~mxg@cpe-76-91-1-28.socal.res.rr.com] has quit [Quit: afk] 10:09 -!- mxg [~mxg@cpe-76-91-1-28.socal.res.rr.com] has joined #bitcoin-core-dev 10:17 -!- eck [~eck@fsf/member/eck] has quit [Quit: we out here] 10:27 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has joined #bitcoin-core-dev 10:28 -!- Murch [~murch@mobile-166-177-250-45.mycingular.net] has quit [Quit: Snoozing.] 10:43 -!- mxg [~mxg@cpe-76-91-1-28.socal.res.rr.com] has quit [Quit: afk] 10:43 -!- vicenteH [~user@195.235.96.150] has quit [Ping timeout: 248 seconds] 10:49 -!- vigorousbearhunt [~vigorousb@gateway/tor-sasl/vigorousbearhunt] has quit [Remote host closed the connection] 10:50 -!- vigorousbearhunt [~vigorousb@gateway/tor-sasl/vigorousbearhunt] has joined #bitcoin-core-dev 10:54 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Read error: Connection reset by peer] 10:58 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 11:00 < bitcoin-git> [bitcoin] jnewbery opened pull request #12264: Fix versionbits warning test (master...fix_versionbits_warning_test) https://github.com/bitcoin/bitcoin/pull/12264 11:01 < bitcoin-git> [bitcoin] jonasschnelli pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/cc5870a4057f...eadb2dacc3c6 11:01 < bitcoin-git> bitcoin/master 886a92f João Barbosa: [rpc] Add address type option to addmultisigaddress 11:01 < bitcoin-git> bitcoin/master f523c6b João Barbosa: [qa] Use address type in addmultisigaddress to avoid addwitnessaddress 11:01 < bitcoin-git> bitcoin/master eadb2da Jonas Schnelli: Merge #12213: Add address type option to addmultisigaddress... 11:01 -!- Murch [~murch@mobile-166-177-250-45.mycingular.net] has joined #bitcoin-core-dev 11:02 < bitcoin-git> [bitcoin] jonasschnelli closed pull request #12213: Add address type option to addmultisigaddress (master...2018-01-addmultisigaddress-address-type) https://github.com/bitcoin/bitcoin/pull/12213 11:03 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 11:03 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 11:06 -!- Allan88Bergstrom [~Allan88Be@ns334669.ip-5-196-64.eu] has quit [Ping timeout: 246 seconds] 11:08 -!- owowo [~ovovo@unaffiliated/ovovo] has quit [Ping timeout: 255 seconds] 11:08 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 246 seconds] 11:08 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Read error: Connection reset by peer] 11:09 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 11:10 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 11:10 < bitcoin-git> [bitcoin] jonasschnelli pushed 4 new commits to master: https://github.com/bitcoin/bitcoin/compare/eadb2dacc3c6...7abb0f0929bd 11:10 < bitcoin-git> bitcoin/master 31dbd5a João Barbosa: [wallet] Add change type to CCoinControl 11:10 < bitcoin-git> bitcoin/master 536ddeb João Barbosa: [rpc] Add change_type option to fundrawtransaction 11:10 < bitcoin-git> bitcoin/master 16f6f59 João Barbosa: [qa] Test fundrawtransaction with change_type option 11:11 < bitcoin-git> [bitcoin] jonasschnelli closed pull request #12194: Add change type option to fundrawtransaction (master...2018-01-fundrawtransaction-changetype) https://github.com/bitcoin/bitcoin/pull/12194 11:13 -!- owowo [~ovovo@unaffiliated/ovovo] has joined #bitcoin-core-dev 11:13 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 11:14 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 11:18 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 246 seconds] 11:18 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Ping timeout: 255 seconds] 11:19 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 11:19 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 11:22 -!- BashCo_ [~BashCo@unaffiliated/bashco] has quit [Ping timeout: 256 seconds] 11:29 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Remote host closed the connection] 11:29 -!- BashCo_ [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 11:30 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has joined #bitcoin-core-dev 11:35 -!- Melvin79Rodrigue [~Melvin79R@ns334669.ip-5-196-64.eu] has joined #bitcoin-core-dev 11:37 -!- Murch [~murch@mobile-166-177-250-45.mycingular.net] has quit [Quit: Snoozing.] 11:39 -!- BashCo_ [~BashCo@unaffiliated/bashco] has quit [Remote host closed the connection] 11:39 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 11:40 -!- ghost43 [~daer@gateway/tor-sasl/daer] has quit [Remote host closed the connection] 11:41 -!- ghost43 [~daer@gateway/tor-sasl/daer] has joined #bitcoin-core-dev 11:43 < bitcoin-git> [bitcoin] MarcoFalke pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/7abb0f0929bd...f359afcc4104 11:43 < bitcoin-git> bitcoin/master ba490d2 Wladimir J. van der Laan: qt: Bump BLOCK_CHAIN_SIZE to 200GB... 11:43 < bitcoin-git> bitcoin/master f359afc MarcoFalke: Merge #12261: qt: Bump BLOCK_CHAIN_SIZE to 200GB... 11:44 < bitcoin-git> [bitcoin] MarcoFalke closed pull request #12261: qt: Bump BLOCK_CHAIN_SIZE to 200GB (master...2018_01_block_chain_size) https://github.com/bitcoin/bitcoin/pull/12261 11:47 -!- givanse [~textual@192.91.144.16] has joined #bitcoin-core-dev 11:50 -!- Randolf [~randolf@96.53.47.42] has quit [Ping timeout: 240 seconds] 11:55 -!- vigorousbearhunt [~vigorousb@gateway/tor-sasl/vigorousbearhunt] has quit [Remote host closed the connection] 11:56 -!- vigorousbearhunt [~vigorousb@gateway/tor-sasl/vigorousbearhunt] has joined #bitcoin-core-dev 11:58 -!- Murch [~murch@mobile-166-177-250-45.mycingular.net] has joined #bitcoin-core-dev 11:59 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 11:59 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Remote host closed the connection] 11:59 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 12:01 -!- afilini [~textual@2-229-240-7.ip199.fastwebnet.it] has joined #bitcoin-core-dev 12:05 -!- indistylo [~indistylo@223.237.193.69] has joined #bitcoin-core-dev 12:09 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 12:11 -!- Randolf [~randolf@96.53.47.42] has joined #bitcoin-core-dev 12:12 -!- indistylo [~indistylo@223.237.193.69] has quit [Read error: Connection reset by peer] 12:17 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has quit [Remote host closed the connection] 12:18 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has joined #bitcoin-core-dev 12:21 -!- Scrat [~herp@unaffiliated/scrat] has quit [Ping timeout: 256 seconds] 12:23 -!- Scrat [~herp@unaffiliated/scrat] has joined #bitcoin-core-dev 12:27 -!- anome [~anome@unaffiliated/anome] has joined #bitcoin-core-dev 12:41 -!- Murch [~murch@mobile-166-177-250-45.mycingular.net] has quit [Quit: Snoozing.] 12:42 -!- anome [~anome@unaffiliated/anome] has quit [] 12:51 < jonasschnelli> Our sighash tests do not exercise sigversion SIGVERSION_WITNESS_V0? 12:51 < jonasschnelli> Or to ask different, where can I find the testvectors for SIGVERSION_WITNESS_V0 sighash? 12:51 -!- jb55 [~jb55@d108-172-210-7.bchsia.telus.net] has joined #bitcoin-core-dev 12:51 < Chris_Stewart_5> jonasschnelli: Isn't that tested by tx_{in}valid.json? 12:52 < jonasschnelli> Let me check... 12:53 < jonasschnelli> Chris_Stewart_5: I think your right,... was looking for bar sw sighash tests... thanks! 12:55 < Chris_Stewart_5> jonasschnelli: script_tests.json might have simpler tests for the serialization algorithm 12:55 < Chris_Stewart_5> there might be overhead to setting up the tx_valid.json test vectors 13:02 < jonasschnelli> Thanks! 13:07 -!- echelon [~echelon@bzflag/player/echelon] has quit [Remote host closed the connection] 13:08 -!- echelon [~echelon@bzflag/player/echelon] has joined #bitcoin-core-dev 13:10 -!- jb55 [~jb55@d108-172-210-7.bchsia.telus.net] has quit [Ping timeout: 252 seconds] 13:17 -!- bajohns [bajohns@gateway/vpn/privateinternetaccess/bajohns] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 13:17 -!- droark [~droark@c-24-22-123-27.hsd1.or.comcast.net] has quit [Quit: Later.] 13:22 -!- neha [~narula@tbilisi.csail.mit.edu] has quit [Ping timeout: 260 seconds] 13:23 -!- ryan-c [~ryan@znc.rya.nc] has quit [Ping timeout: 248 seconds] 13:24 -!- ryan-c [~ryan@znc.rya.nc] has joined #bitcoin-core-dev 13:25 -!- dcousens [~dcousens@110.140.192.69] has quit [Ping timeout: 240 seconds] 13:28 -!- neha [~narula@tbilisi.csail.mit.edu] has joined #bitcoin-core-dev 13:29 -!- vicenteH [~user@35.233.15.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 13:31 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 13:31 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 13:33 -!- givanse [~textual@192.91.144.16] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 13:37 -!- Melvin79Rodrigue [~Melvin79R@ns334669.ip-5-196-64.eu] has quit [Ping timeout: 240 seconds] 13:45 -!- timothy [~tredaelli@redhat/timothy] has quit [Remote host closed the connection] 13:50 -!- __jnsmk__ [a305b53d@gateway/web/freenode/ip.163.5.181.61] has quit [Ping timeout: 260 seconds] 13:52 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-aictmwivytctoebf] has joined #bitcoin-core-dev 13:55 -!- afilini [~textual@2-229-240-7.ip199.fastwebnet.it] has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…] 13:58 -!- afilini [~textual@2-229-240-7.ip199.fastwebnet.it] has joined #bitcoin-core-dev 14:00 -!- wraithm [~wraithm@unaffiliated/wraithm] has quit [Quit: Textual IRC Client: www.textualapp.com] 14:01 -!- Scrat [~herp@unaffiliated/scrat] has quit [Quit: .] 14:06 -!- wraithm [~wraithm@unaffiliated/wraithm] has joined #bitcoin-core-dev 14:06 -!- wraithm [~wraithm@unaffiliated/wraithm] has quit [Client Quit] 14:07 -!- wraithm [~wraithm@unaffiliated/wraithm] has joined #bitcoin-core-dev 14:09 -!- wraithm [~wraithm@unaffiliated/wraithm] has quit [Client Quit] 14:10 -!- wraithm [~wraithm@unaffiliated/wraithm] has joined #bitcoin-core-dev 14:12 -!- cryptapus [~cryptapus@unaffiliated/cryptapus] has quit [Quit: conversation terminated!] 14:17 -!- cryptapus [~cryptapus@jupiter.osmus.org] has joined #bitcoin-core-dev 14:17 -!- cryptapus [~cryptapus@jupiter.osmus.org] has quit [Changing host] 14:17 -!- cryptapus [~cryptapus@unaffiliated/cryptapus] has joined #bitcoin-core-dev 14:18 -!- Amuza [~Amuza@78.30.20.201] has quit [Ping timeout: 265 seconds] 14:21 -!- larafale [~larafale@ax213-1-82-66-157-194.fbx.proxad.net] has joined #bitcoin-core-dev 14:23 -!- droark [~droark@c-24-22-123-27.hsd1.or.comcast.net] has joined #bitcoin-core-dev 14:24 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has quit [Quit: Leaving.] 14:25 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has joined #bitcoin-core-dev 14:25 -!- mxg [~mxg@cpe-76-91-1-28.socal.res.rr.com] has joined #bitcoin-core-dev 14:27 -!- Guyver2 [~Guyver@guyver2.xs4all.nl] has quit [Quit: Going offline, see ya! (www.adiirc.com)] 14:28 -!- phantomcircuit [~phantomci@192.241.205.97] has quit [Quit: ZNC 1.6.3 - http://znc.in] 14:28 -!- phantomcircuit [~phantomci@192.241.205.97] has joined #bitcoin-core-dev 14:30 -!- givanse [~textual@192.91.144.16] has joined #bitcoin-core-dev 14:30 -!- phantomcircuit [~phantomci@192.241.205.97] has quit [Remote host closed the connection] 14:30 -!- phantomcircuit [~phantomci@192.241.205.97] has joined #bitcoin-core-dev 14:33 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 14:35 -!- Jamey74Swift [~Jamey74Sw@ns334669.ip-5-196-64.eu] has joined #bitcoin-core-dev 14:36 -!- CubicEarths [~cubiceart@c-73-181-185-197.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 14:37 -!- phantomcircuit [~phantomci@192.241.205.97] has left #bitcoin-core-dev [] 14:43 -!- Murch [~murch@mobile-166-177-250-45.mycingular.net] has joined #bitcoin-core-dev 14:43 -!- mxg [~mxg@cpe-76-91-1-28.socal.res.rr.com] has quit [Quit: afk] 14:44 -!- wxss [~user@185.145.38.233] has quit [Quit: leaving] 14:45 -!- phantomcircuit [~phantomci@192.241.205.97] has joined #bitcoin-core-dev 14:48 -!- CubicEarths [~cubiceart@c-73-181-185-197.hsd1.wa.comcast.net] has quit [] 14:50 -!- Jamey74Swift [~Jamey74Sw@ns334669.ip-5-196-64.eu] has quit [Ping timeout: 240 seconds] 14:50 -!- Cogito_Ergo_Sum [~Myself@unaffiliated/cogito-ergo-sum/x-7399460] has quit [] 14:54 -!- Murch [~murch@mobile-166-177-250-45.mycingular.net] has quit [Quit: Snoozing.] 14:55 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has quit [Ping timeout: 248 seconds] 15:03 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 15:04 -!- phantomcircuit [~phantomci@192.241.205.97] has quit [Quit: ZNC 1.6.5 - http://znc.in] 15:04 -!- phantomcircuit [~phantomci@192.241.205.97] has joined #bitcoin-core-dev 15:07 -!- vigorousbearhunt [~vigorousb@gateway/tor-sasl/vigorousbearhunt] has quit [Ping timeout: 255 seconds] 15:07 -!- owowo [~ovovo@unaffiliated/ovovo] has quit [Ping timeout: 268 seconds] 15:09 -!- vigorousbearhunt [~vigorousb@gateway/tor-sasl/vigorousbearhunt] has joined #bitcoin-core-dev 15:22 -!- mrannanay [uid222022@gateway/web/irccloud.com/x-nyaiegjiniryihws] has quit [Quit: Connection closed for inactivity] 15:29 -!- wraithm [~wraithm@unaffiliated/wraithm] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 15:32 -!- givanse [~textual@192.91.144.16] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 15:33 -!- larafale [~larafale@ax213-1-82-66-157-194.fbx.proxad.net] has quit [Remote host closed the connection] 15:34 -!- larafale [~larafale@ax213-1-82-66-157-194.fbx.proxad.net] has joined #bitcoin-core-dev 15:35 -!- Melissa57Frami [~Melissa57@ns334669.ip-5-196-64.eu] has joined #bitcoin-core-dev 15:38 -!- larafale [~larafale@ax213-1-82-66-157-194.fbx.proxad.net] has quit [Ping timeout: 240 seconds] 15:41 -!- sk8boy189 [4887ebf6@gateway/web/freenode/ip.72.135.235.246] has joined #bitcoin-core-dev 15:43 -!- Melissa57Frami [~Melissa57@ns334669.ip-5-196-64.eu] has quit [Ping timeout: 240 seconds] 15:45 -!- Murch [~murch@96-82-80-28-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 15:48 -!- afilini [~textual@2-229-240-7.ip199.fastwebnet.it] has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…] 15:54 -!- jb55 [~jb55@70-36-49-138.dyn.novuscom.net] has joined #bitcoin-core-dev 15:59 -!- petertod1 is now known as petertodd 16:00 -!- vigorousbearhunt [~vigorousb@gateway/tor-sasl/vigorousbearhunt] has quit [Quit: Leaving] 16:01 -!- jojeyh [~delphi@2602:306:b8b6:b970:21d0:4d4c:1b4b:b54c] has quit [Ping timeout: 276 seconds] 16:04 -!- jb55 [~jb55@70-36-49-138.dyn.novuscom.net] has quit [Ping timeout: 240 seconds] 16:29 -!- mlz [~IRCIdent@unaffiliated/molly] has quit [Ping timeout: 265 seconds] 16:34 -!- mlz [~IRCIdent@unaffiliated/molly] has joined #bitcoin-core-dev 16:34 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Read error: Connection reset by peer] 16:35 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 16:35 -!- Emmanuel42Lehner [~Emmanuel4@ns334669.ip-5-196-64.eu] has joined #bitcoin-core-dev 16:42 -!- jb55 [~jb55@70-36-49-138.dyn.novuscom.net] has joined #bitcoin-core-dev 16:44 -!- jb55 [~jb55@70-36-49-138.dyn.novuscom.net] has quit [Client Quit] 16:54 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has quit [Read error: Connection reset by peer] 16:55 -!- Guest25674 [~schmidty@unaffiliated/schmidty] has quit [Remote host closed the connection] 16:55 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has joined #bitcoin-core-dev 16:55 -!- arbitrary_guy [~arbitrary@c-67-183-30-122.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 17:07 -!- yuoop [d42ee84e@gateway/web/freenode/ip.212.46.232.78] has joined #bitcoin-core-dev 17:07 -!- yuoop [d42ee84e@gateway/web/freenode/ip.212.46.232.78] has quit [Client Quit] 17:10 -!- eck [~eck@fsf/member/eck] has joined #bitcoin-core-dev 17:13 -!- eck [~eck@fsf/member/eck] has quit [Client Quit] 17:18 -!- jb55 [~jb55@70-36-49-138.dyn.novuscom.net] has joined #bitcoin-core-dev 17:22 -!- cloaks [~noty@unaffiliated/cloaks] has joined #bitcoin-core-dev 17:22 -!- eck [~eck@fsf/member/eck] has joined #bitcoin-core-dev 17:23 -!- mdrollette [~mdrollett@feynman.drollette.com] has quit [Quit: ZNC 1.6.5 - http://znc.in] 17:23 -!- mdrollette [~mdrollett@feynman.drollette.com] has joined #bitcoin-core-dev 17:24 -!- mrsc [~user@96-37-241-230.dhcp.leds.al.charter.com] has joined #bitcoin-core-dev 17:45 < bitcoin-git> [bitcoin] MarcoFalke pushed 7 new commits to master: https://github.com/bitcoin/bitcoin/compare/f359afcc4104...6970b30c6f1d 17:45 < bitcoin-git> bitcoin/master ca6523d Anthony Towns: [tests] Rename feature_* functional tests. 17:45 < bitcoin-git> bitcoin/master 90600bc Anthony Towns: [tests] Rename wallet_* functional tests. 17:45 < bitcoin-git> bitcoin/master 61b8f7f Anthony Towns: [tests] Rename p2p_* functional tests. 17:46 < bitcoin-git> [bitcoin] MarcoFalke closed pull request #11774: [tests] Rename functional tests (master...rename_tests) https://github.com/bitcoin/bitcoin/pull/11774 17:52 -!- dabura667 [~dabura667@p98110-ipngnfx01marunouchi.tokyo.ocn.ne.jp] has joined #bitcoin-core-dev 17:53 -!- eck [~eck@fsf/member/eck] has quit [Quit: we out here] 17:56 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 260 seconds] 17:57 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 18:00 -!- goatpig [56f75683@gateway/web/freenode/ip.86.247.86.131] has quit [Quit: Page closed] 18:02 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Ping timeout: 255 seconds] 18:02 -!- eck [~eck@fsf/member/eck] has joined #bitcoin-core-dev 18:02 -!- StopAndDecrypt_ [~StopAndDe@c-73-248-248-9.hsd1.nj.comcast.net] has joined #bitcoin-core-dev 18:03 -!- Randolf [~randolf@96.53.47.42] has quit [Ping timeout: 252 seconds] 18:03 -!- jojeyh [~delphi@2602:306:b8b6:b970:54f6:f913:b30f:722e] has joined #bitcoin-core-dev 18:03 -!- StopAndDecrypt [~StopAndDe@unaffiliated/stopanddecrypt] has quit [Ping timeout: 248 seconds] 18:04 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 18:04 < bitcoin-git> [bitcoin] kallewoof opened pull request #12265: [test] fundrawtransaction: lock watch-only shared address (master...test-fundrawtransaction-lockunspent) https://github.com/bitcoin/bitcoin/pull/12265 18:04 -!- Orion3k [~Orion3k@47-51-33-228.static.mtpk.ca.charter.com] has joined #bitcoin-core-dev 18:09 -!- mandric [~mandric@108-228-58-104.lightspeed.cicril.sbcglobal.net] has joined #bitcoin-core-dev 18:10 -!- mandric [~mandric@108-228-58-104.lightspeed.cicril.sbcglobal.net] has quit [Client Quit] 18:12 -!- mandric [~mandric@108-228-58-104.lightspeed.cicril.sbcglobal.net] has joined #bitcoin-core-dev 18:12 -!- eck [~eck@fsf/member/eck] has quit [Quit: we out here] 18:14 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 18:15 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 18:16 -!- justan0theruser is now known as justanotheruser 18:19 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 18:20 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 18:21 < bitcoin-git> [bitcoin] TheBlueMatt opened pull request #12266: Move scheduler/threadGroup into common-init instead of per-app (master...2018-01-common-init) https://github.com/bitcoin/bitcoin/pull/12266 18:21 < BlueMatt> cfields: #12266 18:21 < gribble> https://github.com/bitcoin/bitcoin/issues/12266 | Move scheduler/threadGroup into common-init instead of per-app by TheBlueMatt · Pull Request #12266 · bitcoin/bitcoin · GitHub 18:22 -!- Murch [~murch@96-82-80-28-static.hfc.comcastbusiness.net] has quit [Quit: Snoozing.] 18:24 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Remote host closed the connection] 18:24 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 18:25 -!- tryphe [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 18:25 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 18:26 -!- eck [~eck@fsf/member/eck] has joined #bitcoin-core-dev 18:27 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Remote host closed the connection] 18:29 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 18:30 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 18:35 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 18:35 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 18:40 < sipa> added 0.16 tag 18:44 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 18:45 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 18:47 -!- eck [~eck@fsf/member/eck] has quit [Ping timeout: 248 seconds] 18:50 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 18:50 -!- ghost43 [~daer@gateway/tor-sasl/daer] has quit [Ping timeout: 255 seconds] 18:50 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 18:51 -!- belcher_ [~belcher@unaffiliated/belcher] has quit [Quit: Leaving] 18:53 -!- ghost43 [~daer@gateway/tor-sasl/daer] has joined #bitcoin-core-dev 18:58 -!- bajohns [bajohns@gateway/vpn/privateinternetaccess/bajohns] has joined #bitcoin-core-dev 19:08 -!- AriseChikun [Arise@gateway/vpn/privateinternetaccess/arisechikun] has quit [Remote host closed the connection] 19:08 -!- AriseChikun [Arise@gateway/vpn/privateinternetaccess/arisechikun] has joined #bitcoin-core-dev 19:12 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 19:13 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 19:17 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 19:18 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 19:18 -!- wacawacawaca [~user@cpe-172-101-144-51.rochester.res.rr.com] has joined #bitcoin-core-dev 19:20 -!- s4dbbie [724d4fb7@gateway/web/freenode/ip.114.77.79.183] has joined #bitcoin-core-dev 19:24 -!- belcher_ [~belcher@unaffiliated/belcher] has joined #bitcoin-core-dev 19:25 -!- tryphe [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 19:27 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 19:28 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has quit [Quit: Leaving.] 19:28 -!- Krellan [~Krellan@c-73-223-240-37.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 19:32 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-aictmwivytctoebf] has quit [Quit: Connection closed for inactivity] 19:32 -!- Krellan [~Krellan@c-73-223-240-37.hsd1.ca.comcast.net] has quit [Ping timeout: 252 seconds] 19:33 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 19:37 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 19:38 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 19:42 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 19:43 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 19:44 -!- wacawacawaca [~user@cpe-172-101-144-51.rochester.res.rr.com] has quit [Ping timeout: 240 seconds] 19:45 -!- eck [~eck@fsf/member/eck] has joined #bitcoin-core-dev 19:47 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 19:48 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 19:51 -!- eck [~eck@fsf/member/eck] has quit [Ping timeout: 240 seconds] 19:52 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 19:53 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 19:57 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 19:58 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 20:02 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 20:03 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 20:10 -!- mlz [~IRCIdent@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 20:12 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 20:13 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 20:15 -!- Randolf [~randolf@96.53.47.42] has joined #bitcoin-core-dev 20:16 -!- mlz [~IRCIdent@unaffiliated/molly] has joined #bitcoin-core-dev 20:17 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 20:18 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 20:20 -!- belcher_ [~belcher@unaffiliated/belcher] has quit [Quit: Leaving] 20:22 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 20:23 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 20:26 -!- jb55 [~jb55@70-36-49-138.dyn.novuscom.net] has quit [Ping timeout: 252 seconds] 20:27 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 20:28 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 20:32 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 20:33 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 20:37 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 20:38 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 20:42 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 20:42 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-igrkulieriyritqa] has joined #bitcoin-core-dev 20:43 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 20:47 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Ping timeout: 240 seconds] 20:47 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 20:48 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 20:48 -!- mandric [~mandric@108-228-58-104.lightspeed.cicril.sbcglobal.net] has quit [Quit: Computer has gone to sleep.] 20:52 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 20:53 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 20:57 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 20:58 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 21:02 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 21:03 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 21:07 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 21:08 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 21:19 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 21:24 -!- Emmanuel42Lehner [~Emmanuel4@ns334669.ip-5-196-64.eu] has quit [Ping timeout: 252 seconds] 21:32 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 21:33 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 21:35 -!- Georgette15Becht [~Georgette@ns334669.ip-5-196-64.eu] has joined #bitcoin-core-dev 21:37 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 21:38 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 21:44 -!- indistylo [~indistylo@27.59.40.175] has joined #bitcoin-core-dev 21:47 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 21:48 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 21:53 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 21:53 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 21:56 -!- lnostdal [~lnostdal@77.70.119.51] has quit [Ping timeout: 256 seconds] 21:59 < bitcoin-git> [bitcoin] statebits opened pull request #12267: Update blockchain size in Ravencoin/doc/Readme (master...master) https://github.com/bitcoin/bitcoin/pull/12267 21:59 < bitcoin-git> [bitcoin] statebits closed pull request #12267: Update blockchain size in Ravencoin/doc/Readme (master...master) https://github.com/bitcoin/bitcoin/pull/12267 22:02 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 22:03 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 22:08 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 22:08 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 22:13 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 22:13 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 22:18 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 22:18 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 22:21 -!- indistylo [~indistylo@27.59.40.175] has quit [Remote host closed the connection] 22:21 -!- indistylo [~indistylo@27.59.40.175] has joined #bitcoin-core-dev 22:23 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 22:23 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 22:26 -!- indistylo [~indistylo@27.59.40.175] has quit [Read error: Connection reset by peer] 22:26 -!- indistylo [~indistylo@27.59.40.175] has joined #bitcoin-core-dev 22:28 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 22:28 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 22:32 < ProfMac> Does it make sense to do the git clone into /opt, /var/opt, or ~{$USER}/opt 22:33 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 22:33 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 22:38 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 22:38 < jonasschnelli> ProfMac: i guess that depends... 22:38 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 22:38 < jonasschnelli> clone it to wherever you have enough space to compile... :) 22:39 < jonasschnelli> I would recommend within you userspace 22:39 < jonasschnelli> If you want to make the binaries accessable to everyone, use "make install" (probably sudo) 22:41 < ProfMac> jonasschelli, thanks. Userspace then make install makes good sense. 22:43 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 22:43 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 22:45 -!- indistylo [~indistylo@27.59.40.175] has quit [Ping timeout: 240 seconds] 22:46 -!- Orion3k [~Orion3k@47-51-33-228.static.mtpk.ca.charter.com] has quit [Remote host closed the connection] 22:48 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 22:48 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 22:52 -!- indistylo [~indistylo@27.59.40.175] has joined #bitcoin-core-dev 22:53 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 22:53 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 22:54 -!- mrannanay [uid222022@gateway/web/irccloud.com/x-hupapiumkiujprdv] has joined #bitcoin-core-dev 22:55 -!- indistylo [~indistylo@27.59.40.175] has quit [Remote host closed the connection] 22:55 -!- indistylo [~indistylo@27.59.40.175] has joined #bitcoin-core-dev 22:58 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 22:58 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 23:12 -!- fengzv [7ba0f665@gateway/web/freenode/ip.123.160.246.101] has joined #bitcoin-core-dev 23:13 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 23:13 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 23:18 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 23:18 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 23:23 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 23:23 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 23:28 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 23:29 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 23:29 -!- indistylo [~indistylo@27.59.40.175] has quit [Remote host closed the connection] 23:29 -!- aruns [~indistylo@27.59.40.175] has joined #bitcoin-core-dev 23:33 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 23:33 -!- fengzv [7ba0f665@gateway/web/freenode/ip.123.160.246.101] has quit [Quit: Page closed] 23:34 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 23:34 -!- indistylo [~indistylo@27.59.40.175] has joined #bitcoin-core-dev 23:37 -!- aruns [~indistylo@27.59.40.175] has quit [Ping timeout: 240 seconds] 23:38 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 23:39 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 23:40 -!- indistylo [~indistylo@27.59.40.175] has quit [Ping timeout: 252 seconds] 23:43 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 23:44 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 23:46 -!- afilini [~textual@2-229-240-7.ip199.fastwebnet.it] has joined #bitcoin-core-dev 23:48 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 23:49 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 23:51 -!- gaf_ [~fag@12.smos-linux.org] has quit [Quit: SMOS - http://smos-linux.org] 23:53 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 252 seconds] 23:54 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev 23:58 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has quit [Ping timeout: 240 seconds] 23:59 -!- Krellan [~Krellan@2601:640:4000:9258:e845:3c84:8c8:d701] has joined #bitcoin-core-dev