--- Day changed Fri Apr 20 2018 00:00 -!- tylevine [~tylevine@li120-195.members.linode.com] has joined #bitcoin-core-dev 00:03 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 00:08 -!- setpill [~setpill@unaffiliated/setpill] has joined #bitcoin-core-dev 00:18 -!- votefrac [~votef@185.60.147.79] has joined #bitcoin-core-dev 00:18 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 00:21 -!- lnostdal [~lnostdal@77.70.119.51] has quit [Ping timeout: 248 seconds] 00:27 -!- votefrac [~votef@185.60.147.79] has quit [Ping timeout: 276 seconds] 00:31 -!- lnostdal [~lnostdal@77.70.119.51] has joined #bitcoin-core-dev 00:40 -!- zarez [~Thunderbi@fs-93-93-44-38.fullsave.info] has joined #bitcoin-core-dev 00:43 -!- bedotech [~bedo@62-11-53-104.dialup.tiscali.it] has quit [Quit: leaving] 00:44 -!- votefrac [~votef@185.60.147.79] has joined #bitcoin-core-dev 00:46 -!- votefrac [~votef@185.60.147.79] has quit [Client Quit] 00:51 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-zhyzeyadchsmrcdz] has joined #bitcoin-core-dev 00:52 -!- StopAndDecrypt [~StopAndDe@unaffiliated/stopanddecrypt] has quit [Read error: Connection reset by peer] 00:53 -!- StopAndDecrypt [~StopAndDe@c-73-215-253-208.hsd1.nj.comcast.net] has joined #bitcoin-core-dev 00:53 -!- StopAndDecrypt [~StopAndDe@c-73-215-253-208.hsd1.nj.comcast.net] has quit [Changing host] 00:53 -!- StopAndDecrypt [~StopAndDe@unaffiliated/stopanddecrypt] has joined #bitcoin-core-dev 00:56 -!- timothy [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 01:01 -!- drizztbsd [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 01:01 -!- timothy [~tredaelli@redhat/timothy] has quit [Ping timeout: 264 seconds] 01:02 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has quit [Remote host closed the connection] 01:02 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has joined #bitcoin-core-dev 01:03 -!- crt4 [~hk@host86-170-218-34.range86-170.btcentralplus.com] has quit [Quit: crt4] 01:34 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has joined #bitcoin-core-dev 01:47 < bitcoin-git> [bitcoin] charkala opened pull request #13037: Genesis (master...genesis) https://github.com/bitcoin/bitcoin/pull/13037 01:48 < bitcoin-git> [bitcoin] charkala closed pull request #13037: Genesis (master...genesis) https://github.com/bitcoin/bitcoin/pull/13037 01:50 < meshcollider> wumpus do you want to merge https://github.com/bitcoin-core/bitcoincore.org/pull/528 now its had plenty of review and has been sitting there for a while 01:50 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has quit [Remote host closed the connection] 01:51 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has joined #bitcoin-core-dev 01:52 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has quit [Read error: Connection reset by peer] 01:52 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has joined #bitcoin-core-dev 01:59 -!- crt4 [~hk@host86-170-218-34.range86-170.btcentralplus.com] has joined #bitcoin-core-dev 02:00 -!- lnostdal [~lnostdal@77.70.119.51] has quit [Ping timeout: 264 seconds] 02:02 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has quit [Remote host closed the connection] 02:03 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has joined #bitcoin-core-dev 02:12 -!- lnostdal [~lnostdal@77.70.119.51] has joined #bitcoin-core-dev 02:16 <@wumpus> meshcollider: will have a look, thanks 02:35 < promag> wumpus: not sure if I understand your argument, currently CWalletRef is narrowly used. Depending on the case it can be acceptable to use either reference, raw pointer or shared pointer. When adding shared pointer I would like to review all places where it makes sense to use it. If we had CWalletRef everywhere then that would obscure that evaluation. 02:36 <@wumpus> promag: it's usually preferable to keep diffs minimal, without a type such as CWalletRef it means every usage has to be changed if the underlying type changes, the whole reason typedefs exist... 02:37 <@wumpus> most users of CWalletRef won't care how it works internally 02:37 <@wumpus> they just want to refer to a wallet 02:37 < promag> but my point is that not all CWallet* should be std::shared_ptr 02:38 <@wumpus> maybe not, i still think an abstract reference type makes sense 02:38 < promag> I think that makes sense if CWalletRef was used where it makes sense to switch to shared pointer, but that's not the case 02:38 <@wumpus> yes I agree they don't all need to be replaced 02:39 <@wumpus> what annoyed me is the back and forth, one refactor introduces a certain type then the next one removes it again 02:39 < promag> even if I keep CWalletRef, switching to std::shared_ptr will cause a (not that) large diff 02:39 <@wumpus> so let's just get on one page first 02:39 < promag> typedef aside, the code base must be refactored to shared pointers 02:40 <@wumpus> my point was not 'this is a bad idea' but 'this needs discussion with the people involved' 02:41 <@wumpus> if there is general agreement to undo the CWalletRef type again, that's ok with me 02:41 < promag> wumpus: fair enough, I can revert it too. I should have predicted this :D 02:41 <@wumpus> though it makes me wonder what reasoning introduced it and what changed since 02:42 < promag> let me blame it 02:42 <@wumpus> now that's a good idea 02:43 -!- jtimon [~quassel@142.29.134.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 02:45 < promag> introduced in #8694 by luke-jr 02:45 < gribble> https://github.com/bitcoin/bitcoin/issues/8694 | Basic multiwallet support by luke-jr · Pull Request #8694 · bitcoin/bitcoin · GitHub 02:45 < promag> https://github.com/bitcoin/bitcoin/pull/8694#discussion_r104522825 02:47 <@wumpus> let's try to get luke-jr on board there, then 02:47 < promag> wumpus: I guess from that PR that there was little discussion 02:47 < promag> right 02:52 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Remote host closed the connection] 02:53 -!- tryphe [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 02:54 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Remote host closed the connection] 02:55 -!- crt4 [~hk@host86-170-218-34.range86-170.btcentralplus.com] has quit [Quit: crt4] 03:00 -!- justan0theruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 264 seconds] 03:01 -!- tryphe [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 03:10 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has quit [Remote host closed the connection] 03:11 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has joined #bitcoin-core-dev 03:16 < bitcoin-git> [bitcoin] laanwj opened pull request #13039: Add logging and error handling for file syncing (master...2018_04_fsync_noignore) https://github.com/bitcoin/bitcoin/pull/13039 03:23 -!- jojeyh [~delphi@2602:306:b8b6:b970:480d:4d9:1a02:1755] has quit [Ping timeout: 256 seconds] 03:23 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has quit [Remote host closed the connection] 03:27 -!- RoBz [~RoBz@ns362655.ip-91-121-175.eu] has joined #bitcoin-core-dev 03:27 -!- RoBz [~RoBz@ns362655.ip-91-121-175.eu] has quit [Changing host] 03:27 -!- RoBz [~RoBz@unaffiliated/robz] has joined #bitcoin-core-dev 03:31 -!- goatpig [56f75200@gateway/web/freenode/ip.86.247.82.0] has joined #bitcoin-core-dev 03:35 -!- Guyver2 [AdiIRC@guyver2.xs4all.nl] has joined #bitcoin-core-dev 03:40 -!- crt4 [~hk@213.205.192.227] has joined #bitcoin-core-dev 03:44 -!- Cogito_Ergo_Sum [~Myself@athedsl-314680.home.otenet.gr] has joined #bitcoin-core-dev 03:44 -!- Cogito_Ergo_Sum [~Myself@athedsl-314680.home.otenet.gr] has quit [Changing host] 03:44 -!- Cogito_Ergo_Sum [~Myself@unaffiliated/cogito-ergo-sum/x-7399460] has joined #bitcoin-core-dev 03:45 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has quit [Remote host closed the connection] 03:46 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has joined #bitcoin-core-dev 03:50 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has quit [Ping timeout: 240 seconds] 04:11 -!- setpill [~setpill@unaffiliated/setpill] has quit [Quit: o/] 04:36 -!- Sentineo [~Undefined@unaffiliated/sentineo] has quit [Remote host closed the connection] 04:45 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 04:49 -!- Giszmo [~leo@pc-37-38-86-200.cm.vtr.net] has quit [Ping timeout: 256 seconds] 04:57 -!- cryptojanitor [uid278088@gateway/web/irccloud.com/x-truwetccphzqwwqx] has joined #bitcoin-core-dev 04:58 -!- crt4 [~hk@213.205.192.227] has quit [Quit: crt4] 05:03 < bitcoin-git> [bitcoin] AsKayDevs opened pull request #13040: Update README.md (master...master) https://github.com/bitcoin/bitcoin/pull/13040 05:03 -!- laurentmt [~Thunderbi@37.58.58.232] has joined #bitcoin-core-dev 05:08 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has joined #bitcoin-core-dev 05:13 -!- BCBot [~BCBot@46.101.246.115] has quit [Read error: Connection reset by peer] 05:20 < bitcoin-git> [bitcoin] practicalswift opened pull request #13041: build: Add linter checking for accidental introduction of locale dependence (master...lint-locale-dependence) https://github.com/bitcoin/bitcoin/pull/13041 05:24 < bitcoin-git> [bitcoin] fanquake closed pull request #13040: Update README.md (master...master) https://github.com/bitcoin/bitcoin/pull/13040 05:30 -!- BCBot [~BCBot@46.101.246.115] has joined #bitcoin-core-dev 05:32 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 05:39 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Read error: Connection reset by peer] 05:39 -!- tryphe [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 05:44 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has quit [Ping timeout: 260 seconds] 05:46 < bitcoin-git> [bitcoin] qshuai opened pull request #13042: Calculated nBits will be replaced by the following GetNextWorkRequire… (master...master) https://github.com/bitcoin/bitcoin/pull/13042 05:52 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has quit [Remote host closed the connection] 05:53 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has joined #bitcoin-core-dev 05:53 -!- LeMiner [LeMiner@unaffiliated/leminer] has joined #bitcoin-core-dev 06:00 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 06:19 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has joined #bitcoin-core-dev 06:20 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has quit [Read error: Connection reset by peer] 06:21 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has joined #bitcoin-core-dev 06:22 -!- michagogo [uid14316@wikia/Michagogo] has quit [] 06:22 < bitcoin-git> [bitcoin] Sjors opened pull request #13043: [qt] OptionsDialog: add prune setting (master...2018/04/qt-prune) https://github.com/bitcoin/bitcoin/pull/13043 06:22 -!- michagogo [uid14316@wikia/Michagogo] has joined #bitcoin-core-dev 06:26 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has quit [Ping timeout: 268 seconds] 06:31 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 06:31 -!- dcousens [~dcousens@101.188.162.96] has quit [Ping timeout: 268 seconds] 06:35 -!- Krellan [~Krellan@2601:640:4000:9258:9d1a:c750:f243:f0b5] has quit [Read error: Connection reset by peer] 06:35 -!- Krellan [~Krellan@2601:640:4000:9258:9d1a:c750:f243:f0b5] has joined #bitcoin-core-dev 06:35 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Ping timeout: 256 seconds] 06:42 -!- dcousens [~dcousens@101.188.164.109] has joined #bitcoin-core-dev 06:44 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has joined #bitcoin-core-dev 06:48 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 07:05 -!- jcohen [~jcohen@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #bitcoin-core-dev 07:07 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-zhyzeyadchsmrcdz] has quit [Quit: Connection closed for inactivity] 07:08 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 07:08 -!- grafcaps [~haroldbr@50.90.83.229] has quit [Ping timeout: 264 seconds] 07:15 -!- sugarpuff [sid92283@gateway/web/irccloud.com/x-rteilzwxeygsyrfd] has quit [] 07:15 -!- sugarpuff [sid92283@gateway/web/irccloud.com/x-yisyekejxydajvvq] has joined #bitcoin-core-dev 07:15 -!- bedo [~bedo@62-11-53-104.dialup.tiscali.it] has joined #bitcoin-core-dev 07:16 -!- bedo is now known as bedotech 07:25 -!- grafcaps [~haroldbr@104.137.194.255] has joined #bitcoin-core-dev 07:31 -!- Giszmo [~leo@ip-8-237-219-201.nextelmovil.cl] has joined #bitcoin-core-dev 07:32 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 07:33 -!- Murch [~murch@96.74.120.81] has joined #bitcoin-core-dev 07:34 -!- cubancorona [cubancoron@gateway/vpn/privateinternetaccess/cubancorona] has joined #bitcoin-core-dev 07:42 -!- udiWertheimer [sid190185@gateway/web/irccloud.com/x-cipricdmvaaumufc] has quit [] 07:43 -!- udiWertheimer [sid190185@gateway/web/irccloud.com/x-hlkjksqmxbujvran] has joined #bitcoin-core-dev 07:43 -!- Samdney [~Samdney@178.162.209.129] has joined #bitcoin-core-dev 07:47 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has joined #bitcoin-core-dev 07:51 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has quit [Ping timeout: 260 seconds] 08:14 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has joined #bitcoin-core-dev 08:23 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 08:31 -!- cryptojanitor [uid278088@gateway/web/irccloud.com/x-truwetccphzqwwqx] has quit [] 08:31 -!- cryptojanitor [uid278088@gateway/web/irccloud.com/x-gchzyeulmwygysze] has joined #bitcoin-core-dev 08:33 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-ujluhegrcfkrtqyc] has joined #bitcoin-core-dev 08:34 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 08:41 -!- cubancorona [cubancoron@gateway/vpn/privateinternetaccess/cubancorona] has quit [Ping timeout: 256 seconds] 08:45 -!- laurentmt [~Thunderbi@37.58.58.232] has quit [Quit: laurentmt] 08:46 -!- lnostdal [~lnostdal@77.70.119.51] has quit [Ping timeout: 256 seconds] 08:47 -!- Randolf [~randolf@96.53.47.42] has quit [Ping timeout: 256 seconds] 08:48 -!- vicenteH [~user@35.233.15.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 08:49 -!- Krellan [~Krellan@2601:640:4000:9258:9d1a:c750:f243:f0b5] has quit [Read error: Connection reset by peer] 08:49 -!- Krellan [~Krellan@2601:640:4000:9258:9d1a:c750:f243:f0b5] has joined #bitcoin-core-dev 08:56 -!- cubancorona [cubancoron@gateway/vpn/privateinternetaccess/cubancorona] has joined #bitcoin-core-dev 08:58 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 08:58 < cfields> wumpus: with our powers combined, we've finally arrived at &= :) 08:58 < cfields> no clue what I was thinking there. 09:07 -!- Randolf [~randolf@24.114.44.19] has joined #bitcoin-core-dev 09:09 < BlueMatt> sipa: whats your current feeling on caching witness hashes/the sighash components somewhere on mempool acceptance? 09:13 < sipa> BlueMatt: caching sure, but not in the same class that is used for everything 09:13 -!- zarez [~Thunderbi@fs-93-93-44-38.fullsave.info] has quit [Quit: zarez] 09:13 < BlueMatt> yea, ok, fair 09:13 < BlueMatt> I thought that was rejected on the first go around :/ 09:17 < BlueMatt> wumpus: re: #12998: I'm open to doing whatever to fix it, that was just the simplest thing (fix it for the narrow case when those functions are #define'd by the compiler's headers). cfields suggested moving those functions to _int, but I'm not sure making a downstream project's build scripts easier is worth the refactor for that, but up to y'all 09:17 < gribble> https://github.com/bitcoin/bitcoin/issues/12998 | Default to defining endian-conversion DECLs in compat w/o config by TheBlueMatt · Pull Request #12998 · bitcoin/bitcoin · GitHub 09:17 < BlueMatt> I just wanna figure out if I should just apply that patch downstream or what 09:19 < jcohen> i have a half completed change somewhere that makes proper types out of TxId / WTxId instead of using uint256 somewhere - i can clean up if there's to be more pervasive use of witness ids - doesn't do anything other than readability / compiler safety 09:29 -!- arbitrary_guy [~arbitrary@c-67-183-30-122.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 09:39 < luke-jr> wumpus: CWalletRef was intentionally introduced such that it can be replaced with a shared_ptr painlessly 09:39 < luke-jr> I probably still have a branch with that change 09:41 -!- skeees [uid294661@gateway/web/irccloud.com/x-lwwsdlmiopysxwkb] has joined #bitcoin-core-dev 09:42 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has quit [Remote host closed the connection] 09:56 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has joined #bitcoin-core-dev 09:59 -!- Randolf [~randolf@24.114.44.19] has quit [Read error: Connection reset by peer] 10:00 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 10:00 -!- Krellan [~Krellan@2601:640:4000:9258:9d1a:c750:f243:f0b5] has quit [Remote host closed the connection] 10:00 -!- Krellan [~Krellan@2601:640:4000:9258:41b7:f3ef:1730:695] has joined #bitcoin-core-dev 10:02 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has quit [Quit: Leaving] 10:10 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 10:10 -!- Krellan [~Krellan@2601:640:4000:9258:41b7:f3ef:1730:695] has quit [Ping timeout: 276 seconds] 10:11 -!- anstaendig [~anstaendi@185.212.149.4] has joined #bitcoin-core-dev 10:15 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 10:23 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has joined #bitcoin-core-dev 10:26 < bitcoin-git> [bitcoin] instagibbs opened pull request #13045: [p2p] getblock for 1-block reorgs in response to compact block message (master...cmpcttie) https://github.com/bitcoin/bitcoin/pull/13045 10:26 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 10:31 -!- Murch [~murch@96.74.120.81] has quit [Quit: Snoozing.] 10:32 -!- arbitrary_guy [~arbitrary@c-67-183-30-122.hsd1.wa.comcast.net] has quit [Remote host closed the connection] 10:36 < cfields> BlueMatt: I think it's fine as-is. But if you want to take it further, I think it'd be pretty trivial to switch to _int. 10:37 -!- Cogito_Ergo_Sum [~Myself@unaffiliated/cogito-ergo-sum/x-7399460] has quit [] 10:41 -!- drizztbsd [~tredaelli@redhat/timothy] has quit [Quit: Konversation terminated!] 10:41 -!- cryptojanitor [uid278088@gateway/web/irccloud.com/x-gchzyeulmwygysze] has quit [Quit: Connection closed for inactivity] 10:44 -!- isis is now known as isis_ 10:45 -!- CubicEarths [~cubiceart@xdsl-188-155-63-9.adslplus.ch] has quit [Remote host closed the connection] 10:45 -!- CubicEarths [~cubiceart@xdsl-188-155-63-9.adslplus.ch] has joined #bitcoin-core-dev 10:46 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 10:46 -!- arbitrary_guy [~arbitrary@c-67-183-30-122.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 10:47 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-ujluhegrcfkrtqyc] has quit [Quit: Connection closed for inactivity] 10:49 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 260 seconds] 10:50 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has quit [Remote host closed the connection] 10:50 -!- CubicEarths [~cubiceart@xdsl-188-155-63-9.adslplus.ch] has quit [Ping timeout: 248 seconds] 10:51 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has joined #bitcoin-core-dev 10:53 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 10:55 -!- CubicEarths [~cubiceart@xdsl-188-155-63-9.adslplus.ch] has joined #bitcoin-core-dev 10:56 < bitcoin-git> [bitcoin] skeees opened pull request #13046: [doc][trivial] no retargeting in regtest mode (master...doc-update) https://github.com/bitcoin/bitcoin/pull/13046 10:56 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 10:58 -!- bedotech [~bedo@62-11-53-104.dialup.tiscali.it] has quit [Ping timeout: 260 seconds] 10:59 -!- arbitrary_guy [~arbitrary@c-67-183-30-122.hsd1.wa.comcast.net] has quit [Remote host closed the connection] 11:06 -!- Krellan [~Krellan@50-242-94-241-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 11:08 -!- zautomata1 [~zautomata@41.232.212.92] has quit [Ping timeout: 248 seconds] 11:08 -!- Krellan [~Krellan@50-242-94-241-static.hfc.comcastbusiness.net] has quit [Remote host closed the connection] 11:09 -!- lnostdal [~lnostdal@77.70.119.51] has joined #bitcoin-core-dev 11:09 -!- Krellan [~Krellan@50-242-94-241-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 11:10 -!- CubicEarths [~cubiceart@xdsl-188-155-63-9.adslplus.ch] has quit [Remote host closed the connection] 11:13 -!- CubicEarths [~cubiceart@xdsl-188-155-63-9.adslplus.ch] has joined #bitcoin-core-dev 11:15 -!- Giszmo [~leo@ip-8-237-219-201.nextelmovil.cl] has quit [Ping timeout: 268 seconds] 11:15 -!- Murch [~murch@96.74.120.81] has joined #bitcoin-core-dev 11:19 < bitcoin-git> [bitcoin] jnewbery opened pull request #13047: [trivial] Tidy blocktools.py (master...tidy_blocktools) https://github.com/bitcoin/bitcoin/pull/13047 11:22 -!- laurentmt [~Thunderbi@37.58.58.232] has joined #bitcoin-core-dev 11:22 < jnewbery> 13017 doesn't make replacing the raw pointers with shared_ptrs and easier or more difficult, so I don't think it really needs too much discussion. 11:25 -!- laurentmt [~Thunderbi@37.58.58.232] has quit [Client Quit] 11:29 -!- Giszmo [~leo@pc-37-38-86-200.cm.vtr.net] has joined #bitcoin-core-dev 11:36 -!- zautomata1 [~zautomata@41.232.212.92] has joined #bitcoin-core-dev 11:47 -!- bsm1175321 [~mcelrath@173-9-124-61-NewEngland.hfc.comcastbusiness.net] has quit [Ping timeout: 260 seconds] 12:10 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has quit [Remote host closed the connection] 12:30 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 12:36 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 12:41 < jimpo> Can I get a look on #12647? It's pretty trivial. 12:41 < gribble> https://github.com/bitcoin/bitcoin/issues/12647 | wallet: Fix possible memory leak in CreateWalletFromFile. by jimpo · Pull Request #12647 · bitcoin/bitcoin · GitHub 12:43 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has quit [Ping timeout: 276 seconds] 12:46 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 12:50 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 12:51 < bitcoin-git> [bitcoin] jnewbery opened pull request #13048: [tests] Fix feature_block flakiness (master...fix_feature_block_flakiness) https://github.com/bitcoin/bitcoin/pull/13048 12:57 -!- ProfMac [~ProfMac@67-198-113-220.static.grandenetworks.net] has joined #bitcoin-core-dev 13:04 -!- timothy [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 13:04 -!- isis_ is now known as isis 13:14 -!- timothy [~tredaelli@redhat/timothy] has quit [Quit: Konversation terminated!] 13:25 < jtimon> updated https://github.com/bitcoin/bitcoin/pull/10757 again 13:25 -!- jojeyh [~delphi@2602:306:b8b6:b970:480d:4d9:1a02:1755] has joined #bitcoin-core-dev 13:25 < jtimon> btw aj cool your new test cached a bug 13:40 -!- owowo [~ovovo@unaffiliated/ovovo] has quit [Ping timeout: 248 seconds] 13:43 -!- Dizzle [~dizzle@108.171.182.16] has joined #bitcoin-core-dev 13:45 -!- owowo [~ovovo@unaffiliated/ovovo] has joined #bitcoin-core-dev 13:53 -!- bsm1175321 [~mcelrath@173-9-124-61-NewEngland.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 13:55 -!- frog [~frog@103.89.244.198] has joined #bitcoin-core-dev 13:56 -!- Murch [~murch@96.74.120.81] has quit [Quit: Snoozing.] 13:58 -!- frog [~frog@103.89.244.198] has quit [Quit: Leaving] 14:05 -!- min [42e4a228@gateway/web/freenode/ip.66.228.162.40] has joined #bitcoin-core-dev 14:11 -!- Murch [~murch@96.74.120.81] has joined #bitcoin-core-dev 14:14 -!- Murch [~murch@96.74.120.81] has quit [Client Quit] 14:22 -!- Randolf [~randolf@96.53.47.42] has joined #bitcoin-core-dev 14:25 -!- arbitrary_guy [~arbitrary@c-67-183-30-122.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 14:25 -!- bsm1175321 [~mcelrath@173-9-124-61-NewEngland.hfc.comcastbusiness.net] has quit [Ping timeout: 248 seconds] 14:28 -!- Murch [~murch@96.74.120.81] has joined #bitcoin-core-dev 14:33 -!- tryphe_ [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 14:37 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Ping timeout: 256 seconds] 14:44 -!- Dizzle [~dizzle@108.171.182.16] has quit [Quit: Leaving...] 14:47 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has quit [Remote host closed the connection] 14:49 -!- Murch [~murch@96.74.120.81] has quit [Quit: Snoozing.] 14:50 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has joined #bitcoin-core-dev 14:51 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has quit [Remote host closed the connection] 14:52 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has joined #bitcoin-core-dev 14:53 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has quit [Remote host closed the connection] 14:54 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has joined #bitcoin-core-dev 14:55 -!- ProfMac [~ProfMac@67-198-113-220.static.grandenetworks.net] has quit [Ping timeout: 256 seconds] 14:59 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 15:00 -!- Guyver2 [AdiIRC@guyver2.xs4all.nl] has quit [Quit: Going offline, see ya! (www.adiirc.com)] 15:08 < promag> luke-jr: mind checking for the shared pointer branch, I would like to see it? There are lot of places where CWallet* must be changed to CWalletRef or std::shared_ptr, and IMO there are some places where CWalletRef should be CWallet* IMO. I've dropped CWalletRef so that the PR introducing shared_ptr would do it in the whole source. 15:08 -!- min [42e4a228@gateway/web/freenode/ip.66.228.162.40] has quit [Ping timeout: 260 seconds] 15:09 -!- Murch [~murch@96.74.120.81] has joined #bitcoin-core-dev 15:10 -!- ProfMac [~ProfMac@67-198-113-220.static.grandenetworks.net] has joined #bitcoin-core-dev 15:13 -!- Keta [~Keta@2a02:810d:2d40:4494:9c75:3060:11d4:bdad] has joined #bitcoin-core-dev 15:24 -!- Keta [~Keta@2a02:810d:2d40:4494:9c75:3060:11d4:bdad] has quit [Quit: Mutter: http://www.mutterirc.com] 15:35 -!- ProfMac [~ProfMac@67-198-113-220.static.grandenetworks.net] has quit [Ping timeout: 264 seconds] 15:46 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has joined #bitcoin-core-dev 15:46 -!- grafcaps [~haroldbr@104.137.194.255] has quit [Ping timeout: 268 seconds] 15:47 -!- ProfMac [~ProfMac@2001:470:1f0f:a5f:cd64:cb48:f8ba:b5] has joined #bitcoin-core-dev 15:51 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 15:52 < bitcoin-git> [bitcoin] MarcoFalke opened pull request #13049: [0.16] qa: Backports (0.16...Mf1804-qa16Backports) https://github.com/bitcoin/bitcoin/pull/13049 16:13 -!- isis is now known as isis_ 16:20 -!- ProfMac [~ProfMac@2001:470:1f0f:a5f:cd64:cb48:f8ba:b5] has quit [Ping timeout: 276 seconds] 16:26 -!- tryphe_ is now known as tryphe 16:30 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 16:31 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 16:33 -!- propumpkin [~copumpkin@haskell/developer/copumpkin] has joined #bitcoin-core-dev 16:35 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 256 seconds] 16:35 -!- contrapumpkin [~copumpkin@haskell/developer/copumpkin] has quit [Ping timeout: 263 seconds] 16:39 -!- ProfMac [~ProfMac@72-48-98-98.dyn.grandenetworks.net] has joined #bitcoin-core-dev 16:40 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has quit [Ping timeout: 240 seconds] 16:44 -!- CubicEarths [~cubiceart@xdsl-188-155-63-9.adslplus.ch] has quit [Remote host closed the connection] 16:50 -!- niftynei [~niftynei@2601:645:4100:b87d:90e5:7d82:28c4:7c37] has joined #bitcoin-core-dev 16:50 -!- ProfMac [~ProfMac@72-48-98-98.dyn.grandenetworks.net] has quit [Ping timeout: 256 seconds] 16:52 -!- niftynei [~niftynei@2601:645:4100:b87d:90e5:7d82:28c4:7c37] has quit [Remote host closed the connection] 16:54 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has joined #bitcoin-core-dev 16:57 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Read error: Connection reset by peer] 17:00 -!- weez17 [~isaac@unaffiliated/weez17] has quit [Remote host closed the connection] 17:01 -!- weez17 [~isaac@unaffiliated/weez17] has joined #bitcoin-core-dev 17:04 -!- Tennis [~Tennis@unaffiliated/tennis] has joined #bitcoin-core-dev 17:10 -!- ProfMac [~ProfMac@67-198-113-220.static.grandenetworks.net] has joined #bitcoin-core-dev 17:17 -!- Cogito_Ergo_Sum [~Myself@athedsl-314680.home.otenet.gr] has joined #bitcoin-core-dev 17:17 -!- Cogito_Ergo_Sum [~Myself@athedsl-314680.home.otenet.gr] has quit [Changing host] 17:17 -!- Cogito_Ergo_Sum [~Myself@unaffiliated/cogito-ergo-sum/x-7399460] has joined #bitcoin-core-dev 17:19 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 17:25 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has quit [Ping timeout: 256 seconds] 17:30 -!- Tennis [~Tennis@unaffiliated/tennis] has quit [Quit: Leaving] 17:40 -!- Murch [~murch@96.74.120.81] has quit [Quit: Snoozing.] 17:42 -!- Randolf [~randolf@96.53.47.42] has quit [Ping timeout: 264 seconds] 17:45 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 17:46 -!- Axess [~Axess@91.93.255.41] has joined #bitcoin-core-dev 17:47 -!- goatpig [56f75200@gateway/web/freenode/ip.86.247.82.0] has quit [Ping timeout: 260 seconds] 17:48 -!- Axess [~Axess@91.93.255.41] has quit [Quit: Leaving] 17:53 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has joined #bitcoin-core-dev 17:56 -!- cryptojanitor [uid278088@gateway/web/irccloud.com/x-eibljyjpagcgmoaa] has joined #bitcoin-core-dev 18:05 -!- grafcaps [~haroldbr@50.90.83.229] has joined #bitcoin-core-dev 18:09 -!- grafcaps [~haroldbr@50.90.83.229] has quit [Ping timeout: 248 seconds] 18:16 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 18:27 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has quit [Ping timeout: 264 seconds] 18:32 -!- Randolf [~randolf@184.67.229.78] has joined #bitcoin-core-dev 18:32 -!- jtimon [~quassel@142.29.134.37.dynamic.jazztel.es] has quit [Ping timeout: 240 seconds] 18:36 -!- unholymachine [~quassel@2601:8c:c003:9f16:8992:eee3:773d:1ebe] has joined #bitcoin-core-dev 18:39 -!- ProfMac [~ProfMac@67-198-113-220.static.grandenetworks.net] has quit [Quit: Leaving] 18:40 -!- grafcaps [~haroldbr@50.90.83.229] has joined #bitcoin-core-dev 18:45 -!- kallewoof [~karl@240d:1a:759:6000:a7b1:451a:8874:e1ac] has quit [Ping timeout: 245 seconds] 18:45 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 18:45 -!- ProfMac [~ProfMac@2001:470:1f0f:a5f:cd64:cb48:f8ba:b5] has joined #bitcoin-core-dev 18:45 -!- kallewoof [~karl@fp96f94c66.tkyc515.ap.nuro.jp] has joined #bitcoin-core-dev 18:48 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 18:53 -!- Cogito_Ergo_Sum [~Myself@unaffiliated/cogito-ergo-sum/x-7399460] has quit [] 18:59 -!- zautomata2 [~zautomata@41.232.218.41] has joined #bitcoin-core-dev 19:00 -!- zautomata1 [~zautomata@41.232.212.92] has quit [Ping timeout: 248 seconds] 19:03 -!- Randolf [~randolf@184.67.229.78] has quit [Ping timeout: 260 seconds] 19:12 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has joined #bitcoin-core-dev 19:17 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has quit [Ping timeout: 268 seconds] 19:37 -!- Krellan [~Krellan@50-242-94-241-static.hfc.comcastbusiness.net] has quit [Remote host closed the connection] 19:44 -!- Samdney [~Samdney@178.162.209.129] has quit [Ping timeout: 240 seconds] 19:51 -!- Randolf [~randolf@96.53.47.42] has joined #bitcoin-core-dev 19:55 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Read error: Connection reset by peer] 20:07 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 256 seconds] 20:09 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 20:32 -!- Emcy [~Emcy@unaffiliated/emcy] has quit [Ping timeout: 268 seconds] 20:32 -!- ProfMac [~ProfMac@2001:470:1f0f:a5f:cd64:cb48:f8ba:b5] has quit [Ping timeout: 265 seconds] 20:37 -!- Emcy [~Emcy@unaffiliated/emcy] has joined #bitcoin-core-dev 20:45 -!- ProfMac [~ProfMac@2001:470:1f0f:a5f:cd64:cb48:f8ba:b5] has joined #bitcoin-core-dev 20:46 -!- cryptojanitor [uid278088@gateway/web/irccloud.com/x-eibljyjpagcgmoaa] has quit [Quit: Connection closed for inactivity] 21:07 -!- isis_ is now known as isis 21:09 -!- oxid [c0400432@gateway/web/freenode/ip.192.64.4.50] has joined #bitcoin-core-dev 21:10 < oxid> Hi Bitcoin users. 21:10 < oxid> May someone answer if they are connected and active 21:13 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has joined #bitcoin-core-dev 21:13 < oxid> What what the first exchange to either sell BTC to the public, or have an exchange system where you can buy coins or trade them. The most I recall on the question was that users would barter with bitcoin; and the exchanges came out where you were able to purchase them for money. I am not sure where the price correlation came around; since report and stats show the price of BTC at an inititial .003 cents; and then most charts sho 21:13 < oxid> in 2010. 21:14 < oxid> When BTC was released; and note different times; where you able to buy the with fait? 21:14 < oxid> I find internet documents that bitcoin was published open-source in 2008; but that some coins were active in 2007, perhaps by developers or leaked or simply shared before making it a public project. 21:15 < sipa> oxid: #bitcoin 21:16 < oxid> Hm? 21:16 < oxid> #bitcoin 21:17 < sipa> go ask in #bitcoin, not here 21:17 < oxid> Where can I trasnfer? 21:17 < sipa> not here, sorry 21:18 -!- zigen [~zigen@fs276ed17b.tkyc008.ap.nuro.jp] has quit [Ping timeout: 248 seconds] 21:21 -!- unholymachine [~quassel@2601:8c:c003:9f16:8992:eee3:773d:1ebe] has quit [Read error: Connection reset by peer] 21:41 -!- ProfMac [~ProfMac@2001:470:1f0f:a5f:cd64:cb48:f8ba:b5] has quit [Ping timeout: 265 seconds] 21:42 -!- lnostdal [~lnostdal@77.70.119.51] has quit [Ping timeout: 256 seconds] 22:08 -!- arbitrary_guy [~arbitrary@c-67-183-30-122.hsd1.wa.comcast.net] has quit [Remote host closed the connection] 22:20 -!- arbitrary_guy [~arbitrary@c-67-183-30-122.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 22:26 -!- ProfMac [~ProfMac@2001:470:b8ac:0:cd64:cb48:f8ba:b5] has joined #bitcoin-core-dev 22:31 -!- lnostdal [~lnostdal@77.70.119.51] has joined #bitcoin-core-dev 22:48 -!- atm0sphere [~atm0spher@203.122.34.206] has joined #bitcoin-core-dev 23:07 -!- oxid [c0400432@gateway/web/freenode/ip.192.64.4.50] has quit [Ping timeout: 260 seconds] 23:07 < atm0sphere> if i want to generate multiple address for one private key,, how can i do that? 23:10 < sipa> you can't, and this is off topic here. ask in #bitcoin or on bitcoin.stackexchange.com 23:17 -!- arbitrary_guy [~arbitrary@c-67-183-30-122.hsd1.wa.comcast.net] has quit [Remote host closed the connection] 23:25 -!- anstaendig [~anstaendi@185.212.149.4] has quit [Ping timeout: 248 seconds] 23:33 -!- anstaendig [~anstaendi@185.212.149.4] has joined #bitcoin-core-dev 23:34 -!- grafcaps [~haroldbr@50.90.83.229] has quit [Ping timeout: 264 seconds]