--- Day changed Sun Jul 17 2016 00:14 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Remote host closed the connection] 00:15 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 00:17 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Remote host closed the connection] 00:18 -!- xinxi [~xinxi@116.86.156.222] has joined #bitcoin-core-dev 00:31 < phantomcircuit> wumpus, is 0.13 tagged? 00:33 < luke-jr> … 00:34 < luke-jr> of course not, we didn't even do rc1 yet 01:03 -!- xinxi [~xinxi@116.86.156.222] has quit [Remote host closed the connection] 01:10 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 01:38 < phantomcircuit> luke-jr, branched i mean 01:38 < phantomcircuit> words 01:48 -!- jron [~okok@ec2-54-161-129-226.compute-1.amazonaws.com] has quit [Ping timeout: 276 seconds] 01:49 -!- jron [~okok@ec2-54-161-129-226.compute-1.amazonaws.com] has joined #bitcoin-core-dev 01:50 -!- windsok [~windsok@45.63.59.8] has joined #bitcoin-core-dev 01:50 -!- windsok_ [~windsok@45.63.59.8] has quit [Ping timeout: 272 seconds] 01:59 < btcdrak> not yet 02:10 -!- jtimon [~quassel@55.31.134.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 02:26 < jtimon> NicolasDorier: When it's complete because it does too many things at once and when it's not complete because it's not complete? come on, make up your mind... 02:27 < btcdrak> jtimon: my observation about ISM logic in versionbits.cpp is that it's got nothing to do with versionbits.cpp. its like you're stuffing a piece of code in there because it doesnt have anywhere else to live. 02:27 < gmaxwell> ISM code should all leave now. 02:27 < btcdrak> right, and now it seems useless to preserve that logic since we can just hard code it 02:28 < gmaxwell> I was planning on doing that as soon as we branch. 02:28 < btcdrak> the softforks have happened and are long since burred deep. 02:28 < btcdrak> gmaxwell: +1 02:28 < jtimon> btcdrak: and which of the alternatives I offereded you suggest? 02:28 < gmaxwell> I have the patch done already (this is why I was checking to find out where the last couple softforks activated a month or so ago)-- or I think I have it, might have been in that repo I corrupted. 02:28 < jtimon> hardcoded or not, it has to be somewhere 02:29 < gmaxwell> jtimon: there will be no ISM code. 02:29 < jtimon> I'm open ofr almost anything but main.cpp, please tell me what you like 02:29 < gmaxwell> The code will be gone, it doesn't go anywhere. 02:29 -!- G1lius [~stefangil@85.17.24.9] has joined #bitcoin-core-dev 02:30 < gmaxwell> jtimon: we have soffork activations coded in chain paramters. (vDeployments) the places that call ISM are just changed to check that. 02:30 < jtimon> well, at the very least we have to maintain this failure: https://github.com/bitcoin/bitcoin/blob/master/src/main.cpp#L3547 don't we? 02:31 < jtimon> gmaxwell: mhmm, not sure I understand, I thought you were going to hardcode a height for activation or something 02:32 < jtimon> btcdrak: where do you think Consensus::GetFlags should be? 02:33 < gmaxwell> jtimon: the if condition on that code just changes to a test of nHeight vs a vDeployments setting. 02:33 < jtimon> but vDeployments uses BIP9 02:34 < gmaxwell> sorry, not vDeployments (I wasn't looking), see: 02:34 < gmaxwell> consensus.BIP34Height = 227931; 02:34 < gmaxwell> consensus.BIP34Hash = uint256S("0x000000000000024b89b42a942fe0d9fea3bb44ab7bd1b19115dd6a759c0808b8"); 02:36 < gmaxwell> just elements of consensus. consensus.BIP65Height yadda yadda. 02:37 < jtimon> yeah, so hardcoding a height for activation, what I was saying 02:37 < btcdrak> jtimon: for flags, why not in consensus.h? 02:37 < gmaxwell> (which also makes block processing a bit faster, as the ISM checks are surprisingly slow) 02:37 < jtimon> btcdrak: because that would be more of a "layer violation" concern when we have verifyBlock and a bunch of other functions in consensus.h 02:38 < jtimon> btcdrak: why not consensus/flags.h ? 02:39 < jtimon> gmaxwell: we still need to maintain the check I was talking about, right? (although it can be simplified to use the hardcoded heights too) 02:39 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-ulmfscjqkgnqaras] has joined #bitcoin-core-dev 02:40 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 02:40 < jtimon> btcdrak: can you respond to the getflags question? do you mind if that is in versionbits or do you prefer some other place? (not, I won't count "wherever, just not there" nor "let's leave that code in main for now" as answers) 02:40 < jtimon> note 02:40 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Remote host closed the connection] 02:42 < gmaxwell> jtimon: yes the if statement at the top changes, e.g. into nheight >= consensusParams.bipblahblahHeight -- the check itself would logically remain in ContextualCheckBlock. 02:43 < jtimon> it's so hard to get negative feedback on this on a timely manner...we always need more reviewers, but specially of the type that can be less nice and more direct... 02:43 < btcdrak> jtimon: I dont have any objection to consensus/flags.h - i only have an objection to stuffing unrelated things into units which have a specific purpose. versionbits.cpp is clearly for BIP9 logic. I would have thought this is self evident :-p :) 02:43 < jtimon> gmaxwell: fair enough, I can do that 02:43 < jtimon> the goal was getting issupermajority out of main, destroying it counts ;) 02:44 < gmaxwell> well I think I've already done it, just need to find the code in a corrupted repository. 02:44 < jtimon> gmaxwell: oh, if you've done it no need for me to do it again, please ping me on the PR 02:45 < jtimon> well, if it takes you too long to PR it, I will rewrite it ;) 02:46 < gmaxwell> the only thing that takes more than 10 minutes is finding the precise heights to set it. 02:46 < btcdrak> I think we should update softfork BIPs directly with activation heights. 02:47 < btcdrak> something like 02:47 < btcdrak> ==Activation== 02:47 < btcdrak> This BIP was activated on mainnet at height #nnnnnn 02:47 < jtimon> btcdrak: your feedback would be much more useful if you proposed an alternative or at least chose one of the alternatives suggested to you. Where do you think GetFlags should be ? is header_verify.cpp ok? 02:47 < gmaxwell> in prior places where we hardcoded softforks we actually bakcdated them. 02:48 < jtimon> it seems different people find different preferences (some times incompatible between them) "self evident" it would all be much easier if we all verbalize what is "self evident" to us but doesn't seem to be for other people 02:49 < jtimon> btcdrak: I would like to do that encapsulated inside Consensus::GetFlags from now on 02:50 -!- gmaxwell [greg@wikimedia/KatWalsh/x-0001] has left #bitcoin-core-dev [] 02:50 < jtimon> gmaxwell: can we have an array in Consensus::Params with its own little struct ala vDeployments instead of having two new fields for every old deployment? 02:51 < jtimon> say, vPastDeployments 02:53 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 02:53 < jtimon> btcdrak: oh, you meant in the BIP's doc, nevermind then, agreed 02:53 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Remote host closed the connection] 02:55 < jtimon> gmaxwell is the hash of the block really necessary here? In a super-reorg where that block is changed, shouldn't it be activated anyway? 03:00 -!- molly [~molly@unaffiliated/molly] has quit [Read error: Connection reset by peer] 03:01 -!- moli [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 03:01 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 03:06 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Ping timeout: 250 seconds] 03:16 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 03:20 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Remote host closed the connection] 03:21 -!- jtimon [~quassel@55.31.134.37.dynamic.jazztel.es] has quit [Ping timeout: 244 seconds] 03:35 -!- xinxi [~xinxi@116.86.156.222] has joined #bitcoin-core-dev 03:39 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 03:40 -!- xinxi [~xinxi@116.86.156.222] has quit [Ping timeout: 260 seconds] 03:48 -!- jtimon [~quassel@55.31.134.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 03:53 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Remote host closed the connection] 03:55 -!- belcher [~user@unaffiliated/belcher] has joined #bitcoin-core-dev 03:57 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 04:00 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Remote host closed the connection] 04:02 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 04:05 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Remote host closed the connection] 04:10 -!- shesek [~shesek@bzq-84-110-33-253.cablep.bezeqint.net] has quit [Ping timeout: 260 seconds] 04:12 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 04:13 -!- moli [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 04:17 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Remote host closed the connection] 04:29 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Quit: :)] 04:43 -!- xinxi [~xinxi@116.86.156.222] has joined #bitcoin-core-dev 04:47 -!- xinxi [~xinxi@116.86.156.222] has quit [Ping timeout: 240 seconds] 05:17 -!- Samdney [~Samdney@dyn-ant666999.hawo.ipv6.uni-erlangen.de] has left #bitcoin-core-dev ["Verlassend"] 05:18 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 05:23 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Ping timeout: 276 seconds] 05:25 < GitHub139> [bitcoin] Gitju opened pull request #8352: Trivial: Fix typo in bitcoin_es_UY.ts (master...patch-1) https://github.com/bitcoin/bitcoin/pull/8352 05:37 -!- shesek [~shesek@bzq-84-110-33-253.red.bezeqint.net] has joined #bitcoin-core-dev 06:19 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 06:23 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Ping timeout: 244 seconds] 06:29 -!- moli [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 06:34 -!- achow101 [~achow101@pool-108-2-58-173.phlapa.fios.verizon.net] has joined #bitcoin-core-dev 06:46 -!- tucenaber [~tucenaber@unaffiliated/tucenaber] has quit [Ping timeout: 240 seconds] 07:04 -!- tucenaber [~tucenaber@o144.231.lokis.net.pl] has joined #bitcoin-core-dev 07:04 -!- tucenaber [~tucenaber@o144.231.lokis.net.pl] has quit [Changing host] 07:04 -!- tucenaber [~tucenaber@unaffiliated/tucenaber] has joined #bitcoin-core-dev 07:07 -!- Samdney [~Samdney@dyn-ant666999.hawo.ipv6.uni-erlangen.de] has joined #bitcoin-core-dev 07:07 -!- belcher [~user@unaffiliated/belcher] has quit [Read error: Connection reset by peer] 07:08 -!- belcher [~user@unaffiliated/belcher] has joined #bitcoin-core-dev 07:15 -!- TomMc [~tom@unaffiliated/tommc] has joined #bitcoin-core-dev 07:20 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 07:25 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Ping timeout: 246 seconds] 07:28 -!- YOU-JI [~youyouyou@FL1-210-147-117-92.chb.mesh.ad.jp] has joined #bitcoin-core-dev 07:48 -!- xinxi [~xinxi@116.86.156.222] has joined #bitcoin-core-dev 07:52 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 07:56 -!- G1lius [~stefangil@85.17.24.9] has quit [] 08:02 -!- YOU-JI [~youyouyou@FL1-210-147-117-92.chb.mesh.ad.jp] has quit [Quit: Leaving...] 08:09 -!- BCBot [~BCBot@46.101.246.115] has joined #bitcoin-core-dev 08:18 -!- jtimon [~quassel@55.31.134.37.dynamic.jazztel.es] has quit [Ping timeout: 240 seconds] 08:22 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 08:26 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Ping timeout: 264 seconds] 08:40 -!- PRab [~chatzilla@c-68-62-95-247.hsd1.mi.comcast.net] has quit [Quit: ChatZilla 0.9.92 [Firefox 47.0.1/20160623154057]] 09:20 -!- cryptapus_ [~cryptapus@jupiter.osmus.org] has joined #bitcoin-core-dev 09:20 -!- cryptapus_ [~cryptapus@jupiter.osmus.org] has quit [Changing host] 09:20 -!- cryptapus_ [~cryptapus@unaffiliated/cryptapus] has joined #bitcoin-core-dev 09:22 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 09:23 -!- cryptapus_afk is now known as cryptapus 09:23 -!- cryptapus is now known as cryptapus_afk 09:26 -!- cryptapus_ [~cryptapus@unaffiliated/cryptapus] has quit [Ping timeout: 252 seconds] 09:26 -!- kadoban [~mud@unaffiliated/kadoban] has joined #bitcoin-core-dev 09:28 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Ping timeout: 276 seconds] 09:58 -!- Sosumi [~Leon@bl10-113-190.dsl.telepac.pt] has quit [Quit: Bye] 10:24 -!- Sosumi [~Leon@bl10-113-190.dsl.telepac.pt] has joined #bitcoin-core-dev 10:29 -!- molz [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 10:30 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 10:31 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has joined #bitcoin-core-dev 10:32 -!- moli [~molly@unaffiliated/molly] has quit [Ping timeout: 252 seconds] 10:41 -!- zooko [~user@2601:281:8000:8387:704f:5b1b:1751:82ee] has joined #bitcoin-core-dev 11:32 -!- zooko [~user@2601:281:8000:8387:704f:5b1b:1751:82ee] has quit [Ping timeout: 250 seconds] 11:42 -!- cjcj [2e3b026a@gateway/web/freenode/ip.46.59.2.106] has quit [Quit: Page closed] 11:43 -!- afk11 [~afk11@unaffiliated/afk11] has quit [Ping timeout: 240 seconds] 11:44 -!- afk11 [~afk11@109.255.154.81] has joined #bitcoin-core-dev 11:44 -!- afk11 [~afk11@109.255.154.81] has quit [Changing host] 11:44 -!- afk11 [~afk11@unaffiliated/afk11] has joined #bitcoin-core-dev 11:53 -!- owowo [~ovovo@unaffiliated/ovovo] has quit [Read error: Connection reset by peer] 11:54 -!- Netsplit *.net <-> *.split quits: OxADADA, BonyM, instagibbs, adamg, JackH, lclc 11:59 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 240 seconds] 12:01 -!- owowo [~ovovo@unaffiliated/ovovo] has joined #bitcoin-core-dev 12:13 -!- lclc [~lclc@unaffiliated/lclc] has joined #bitcoin-core-dev 12:13 -!- OxADADA [~OxADADA@alumni-linux.ccs.neu.edu] has joined #bitcoin-core-dev 12:13 -!- instagibbs [~instagibb@pool-100-15-114-5.washdc.fios.verizon.net] has joined #bitcoin-core-dev 12:13 -!- JackH [~Jack@79-73-186-51.dynamic.dsl.as9105.com] has joined #bitcoin-core-dev 12:13 -!- BonyM [~BonyM-I@ua-83-227-211-4.cust.bredbandsbolaget.se] has joined #bitcoin-core-dev 12:14 -!- adamg [~akg@50.242.93.33] has joined #bitcoin-core-dev 12:15 -!- belcher [~user@unaffiliated/belcher] has quit [Read error: Connection reset by peer] 12:16 -!- belcher [~user@unaffiliated/belcher] has joined #bitcoin-core-dev 12:21 -!- moli [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 12:22 -!- molz [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 12:35 -!- molz [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 12:35 -!- moli [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 12:56 -!- instagibbs [~instagibb@pool-100-15-114-5.washdc.fios.verizon.net] has quit [Ping timeout: 252 seconds] 13:18 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 14:13 -!- jtimon [~quassel@55.31.134.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 14:29 -!- anu0 [~anu0@unaffiliated/anu0] has joined #bitcoin-core-dev 14:38 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Remote host closed the connection] 14:39 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 14:39 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Remote host closed the connection] 14:40 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 14:41 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Remote host closed the connection] 14:41 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 14:43 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Client Quit] 14:44 -!- afk11 [~afk11@unaffiliated/afk11] has quit [Ping timeout: 240 seconds] 14:48 -!- xinxi [~xinxi@116.86.156.222] has quit [Remote host closed the connection] 14:51 -!- afk11 [~afk11@109.255.154.81] has joined #bitcoin-core-dev 14:51 -!- afk11 [~afk11@109.255.154.81] has quit [Changing host] 14:51 -!- afk11 [~afk11@unaffiliated/afk11] has joined #bitcoin-core-dev 14:58 -!- spudowiar [~spudowiar@unaffiliated/spudowiar] has quit [Quit: Leaving.] 15:21 < GitHub65> [bitcoin] yurizhykin opened pull request #8353: Trivial: tiny c++11 refactors (master...cpp11) https://github.com/bitcoin/bitcoin/pull/8353 15:53 -!- Samdney [~Samdney@dyn-ant666999.hawo.ipv6.uni-erlangen.de] has left #bitcoin-core-dev ["Verlassend"] 16:27 -!- ebfull [~sean@c-50-170-183-94.hsd1.co.comcast.net] has joined #bitcoin-core-dev 16:28 -!- Cheeseo [~x@unaffiliated/cheeseo] has joined #bitcoin-core-dev 16:31 -!- anu1 [~anu0@unaffiliated/anu0] has joined #bitcoin-core-dev 16:34 -!- anu0 [~anu0@unaffiliated/anu0] has quit [Ping timeout: 240 seconds] 16:35 -!- jiggalator [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 16:38 -!- laurentmt [~Thunderbi@176.158.157.202] has joined #bitcoin-core-dev 16:39 -!- jiggalator is now known as netsin 16:39 -!- laurentmt [~Thunderbi@176.158.157.202] has quit [Client Quit] 16:49 -!- Cheeseo [~x@unaffiliated/cheeseo] has quit [Read error: Connection reset by peer] 16:54 -!- jcliff42 [c0a21a52@gateway/web/freenode/ip.192.162.26.82] has joined #bitcoin-core-dev 16:59 -!- molly [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 17:02 -!- molz [~molly@unaffiliated/molly] has quit [Ping timeout: 252 seconds] 17:15 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-ulmfscjqkgnqaras] has quit [Quit: Connection closed for inactivity] 17:19 -!- xinxi [~xinxi@116.86.156.222] has joined #bitcoin-core-dev 17:25 -!- xinxi [~xinxi@116.86.156.222] has quit [Ping timeout: 260 seconds] 17:28 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Remote host closed the connection] 17:28 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 17:32 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Ping timeout: 240 seconds] 17:35 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 17:38 -!- jcliff42 [c0a21a52@gateway/web/freenode/ip.192.162.26.82] has quit [Ping timeout: 250 seconds] 17:45 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Remote host closed the connection] 17:50 -!- YOU-JI [~youyouyou@FL1-210-147-117-92.chb.mesh.ad.jp] has joined #bitcoin-core-dev 18:13 -!- fengling [~fengling@58.135.95.136] has joined #bitcoin-core-dev 18:17 -!- TomMc [~tom@unaffiliated/tommc] has quit [Ping timeout: 276 seconds] 18:26 -!- jtimon [~quassel@55.31.134.37.dynamic.jazztel.es] has quit [Ping timeout: 252 seconds] 18:34 -!- Giszmo [~leo@ppp-83-171-182-157.dynamic.mnet-online.de] has joined #bitcoin-core-dev 18:36 -!- Giszmo1 [~leo@ppp-83-171-167-77.dynamic.mnet-online.de] has quit [Ping timeout: 264 seconds] 18:40 -!- belcher [~user@unaffiliated/belcher] has quit [Quit: Leaving] 18:46 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 18:46 -!- jtimon [~quassel@55.31.134.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 18:49 < GitHub30> [bitcoin] Tyler-Hardin closed pull request #8349: Qt: Clearer warning about being out of sync (master...issue8060) https://github.com/bitcoin/bitcoin/pull/8349 18:52 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Ping timeout: 244 seconds] 18:53 -!- Justinus [~Justinus@192.122.131.41] has quit [Ping timeout: 240 seconds] 19:05 -!- Justinus [~Justinus@192.122.131.41] has joined #bitcoin-core-dev 19:14 -!- Justinus [~Justinus@192.122.131.41] has quit [Ping timeout: 264 seconds] 19:16 -!- YOU-JI [~youyouyou@FL1-210-147-117-92.chb.mesh.ad.jp] has quit [Quit: Leaving...] 19:28 < ebfull> luke-jr: we should team up to coordinate integration/UX strategy for #7601 and #7534 19:37 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 276 seconds] 19:48 -!- xinxi [~xinxi@116.86.156.222] has joined #bitcoin-core-dev 19:53 -!- xinxi [~xinxi@116.86.156.222] has quit [Ping timeout: 276 seconds] 20:11 -!- justanotheruser [~Justan@unaffiliated/justanotheruser] has quit [Read error: Connection reset by peer] 20:11 -!- justanot1eruser [~Justan@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 20:12 -!- justanot1eruser is now known as justanotheruser 20:20 < GitHub157> [bitcoin] maiiz closed pull request #8336: TX fees and policy: fix relaypriority calculation error Issues #8334 (master...issues-8334) https://github.com/bitcoin/bitcoin/pull/8336 20:46 -!- xinxi [~xinxi@116.86.156.222] has joined #bitcoin-core-dev 20:47 -!- YOU-JI [~youyouyou@FL1-125-192-123-32.chb.mesh.ad.jp] has joined #bitcoin-core-dev 21:01 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 21:14 -!- xinxi [~xinxi@116.86.156.222] has quit [Remote host closed the connection] 21:22 -!- xinxi [~xinxi@116.86.156.222] has joined #bitcoin-core-dev 21:56 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Remote host closed the connection] 22:03 -!- xinxi [~xinxi@116.86.156.222] has quit [Remote host closed the connection] 22:04 -!- achow101 [~achow101@pool-108-2-58-173.phlapa.fios.verizon.net] has quit [Read error: Connection reset by peer] 22:11 -!- jtimon [~quassel@55.31.134.37.dynamic.jazztel.es] has quit [Ping timeout: 244 seconds] 22:25 -!- xinxi [~xinxi@116.86.156.222] has joined #bitcoin-core-dev 22:31 -!- netsin [~jiggalato@unaffiliated/jiggalator] has joined #bitcoin-core-dev 22:34 -!- YOU-JI [~youyouyou@FL1-125-192-123-32.chb.mesh.ad.jp] has quit [Quit: Leaving...] 22:43 < wumpus> phantomcircuit: not yet 22:46 < GitHub121> [bitcoin] laanwj pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/bc94b8748782...37303934fe8f 22:46 < GitHub121> bitcoin/master 96fa953 Suhas Daftuar: Improve handling of unconnecting headers... 22:46 < GitHub121> bitcoin/master e91cf4b Suhas Daftuar: Add test for handling of unconnecting headers 22:46 < GitHub121> bitcoin/master 3730393 Wladimir J. van der Laan: Merge #8305: Improve handling of unconnecting headers... 22:46 < GitHub135> [bitcoin] laanwj closed pull request #8305: Improve handling of unconnecting headers (master...fix-relay-2hr-rule) https://github.com/bitcoin/bitcoin/pull/8305 22:47 -!- xinxi [~xinxi@116.86.156.222] has quit [Ping timeout: 276 seconds] 22:49 -!- slackircbridge [~slackircb@45.55.41.36] has quit [Remote host closed the connection] 22:50 -!- slackircbridge [~slackircb@45.55.41.36] has joined #bitcoin-core-dev 22:58 < GitHub1> [bitcoin] laanwj pushed 7 new commits to master: https://github.com/bitcoin/bitcoin/compare/37303934fe8f...238300b39894 22:58 < GitHub1> bitcoin/master 5b95dd2 Jonas Schnelli: [Wallet] extend CKeyMetadata with HD keypath 22:58 < GitHub1> bitcoin/master b1c7b24 Jonas Schnelli: [Wallet] report optional HDKeypath/HDMasterKeyId in validateaddress 22:59 < GitHub1> bitcoin/master 986c223 Jonas Schnelli: [Wallet] print hd masterkeyid in getwalletinfo 22:59 < GitHub6> [bitcoin] laanwj closed pull request #8323: Add HD keypath to CKeyMetadata, report metadata in validateaddress (master...2016/07/hd_013) https://github.com/bitcoin/bitcoin/pull/8323 23:00 < wumpus> jonasschnelli: should #8308 be a blocker for the 0.13 rc1? 23:03 < wumpus> (it's labeled milestone 0.13, but #8206 is not) 23:10 < GitHub68> [bitcoin] laanwj opened pull request #8354: mining: Rename `-blockmaxcost` to `-blockmaxweight` (master...2016_07_block_weight) https://github.com/bitcoin/bitcoin/pull/8354 23:11 -!- netsin [~jiggalato@unaffiliated/jiggalator] has quit [Remote host closed the connection] 23:24 < GitHub81> [bitcoin] laanwj pushed 6 new commits to master: https://github.com/bitcoin/bitcoin/compare/238300b39894...f5660d381a37 23:24 < GitHub81> bitcoin/master f15c2cd Suhas Daftuar: CreateNewBlock: add support for size-accounting to addPackageTxs... 23:24 < GitHub81> bitcoin/master 6dd4bc2 Suhas Daftuar: Exclude witness transactions in addPackageTxs() pre-segwit activation 23:24 < GitHub81> bitcoin/master d2e46e1 Suhas Daftuar: Remove addScoreTxs() 23:24 < GitHub37> [bitcoin] laanwj closed pull request #8295: Mining-related fixups for 0.13.0 (master...cnb-segwit) https://github.com/bitcoin/bitcoin/pull/8295 23:37 < GitHub46> [bitcoin] maiiz opened pull request #8355: [Wallet]fix relaypriority calculation error Issues #8334 (master...issues-8334) https://github.com/bitcoin/bitcoin/pull/8355 23:42 < wumpus> am I missing some context re: #8349? did someone get into a fight with the guy? 23:43 < paveljanik> wumpus, I do not think so. 23:44 < wumpus> I was thinking it was awesome that someone addressed #8334, then at the same moment he closed the pull and deleted the branch 23:44 < wumpus> addressed #8060, sorry 23:45 -!- xinxi [~xinxi@116.86.156.222] has joined #bitcoin-core-dev 23:48 < paveljanik> strange, yes. 23:48 < GitHub94> [bitcoin] maiiz closed pull request #8355: [Wallet]fix relaypriority calculation error Issues #8334 (master...issues-8334) https://github.com/bitcoin/bitcoin/pull/8355 23:49 < wumpus> now maiiz is doing the same in #8355, either this is a github issue or people are trolling us... 23:51 < paveljanik> maiiz probably has a problem with github web interface. 23:56 -!- adamg [~akg@50.242.93.33] has quit [Ping timeout: 276 seconds]