19:00:52 #startmeeting 19:00:52 Meeting started Thu May 25 19:00:52 2017 UTC. The chair is wumpus. Information about MeetBot at http://wiki.debian.org/MeetBot. 19:00:52 Useful Commands: #action #agreed #help #info #idea #link #topic. 19:00:57 sipa: last i heard we were gonna try to just remove the trayicon 19:01:08 proposed topic multiwallet-concept 19:01:21 (since it doesnt seem to be "the thing to do" anymore) 19:01:27 woah, meeting! 19:01:35 i totally forgot 19:01:38 #bitcoin-core-dev Meeting: wumpus sipa gmaxwell jonasschnelli morcos luke-jr btcdrak sdaftuar jtimon cfields petertodd kanzure blue matt instagibbs phantomcircuit codeshark michagogo marcofalke paveljanik NicolasDorier jl2012 instagibbs 19:01:56 hi 19:02:00 #topic multiwallet-concept 19:03:11 .. 19:03:16 We should think about if we want run-time wallet creation/loading/unloading or per startup -wallet argument. 19:03:30 jonasschnelli: IMO both eventually, but the latter is a good first stpe 19:03:31 Also,.. what should we do with rescan/zapwallet/salvage/upgrade 19:03:43 yes, in the long term we want both 19:03:56 in the short term just do what is realistic for the (not too long!) timespan until 0.15 19:03:59 i would disable rescan if you have more than one wallet configured 19:04:03 the -wallet= approach seems very confusing. You either -usehd on all wallte, -rescan all wallets, etc. 19:04:04 and use the RPC instead 19:04:38 or better, remove it 19:04:48 We can start with the all or nothing -wallet configuration. But ideally we move it to runtime over RPC 19:05:03 also,... creation-flags can then be passed in. 19:05:10 yes 19:05:11 right, all those options that affect the creation of new wallets ideally go into a new-wallet-creation RPC 19:05:21 yes 19:05:21 /GUI 19:05:24 and rescan and upgrade become wallet-specific RPCs 19:05:25 so the command line options only work for the default wallet 19:05:29 The GUI can be done later 19:05:30 that's fine 19:05:33 yes 19:05:36 sipa: they already are? 19:05:46 luke-jr: they're not RPCs 19:05:47 ? 19:05:58 sipa: rescan is, although maybe not merged in Core yet? 19:06:03 I ack luke-jr current PR but deploying that may cause confusion (because of lack of a concept)= 19:06:14 luke-jr: #7061 19:06:17 https://github.com/bitcoin/bitcoin/issues/7061 | [Wallet] Replace -rescan with a new RPC call "rescanblockchain" by jonasschnelli · Pull Request #7061 · bitcoin/bitcoin · GitHub 19:06:32 * sipa really really really wants to see rescan go away entirely, but fears he cannot win this fight 19:06:49 actually, -rescan might be better with multiwallet 19:06:53 Heh. Its just to handy to remove rescan 19:07:00 since you'd want to rescan all the wallets concurrently 19:07:14 fair point 19:07:38 the overhead for rescanning N wallets vs 1 is minimal IMO 19:07:40 Another point is that we should consider wallet flags combined with the new wallet db format we have introduced with the HD chain split. 19:08:01 wallet flags would probably better allow to store "creation flags" 19:08:07 what do you mean by wallet flags? 19:08:27 labels? 19:08:37 I have first implemented wallet flags here: https://github.com/bitcoin/bitcoin/pull/9662 19:08:52 https://github.com/bitcoin/bitcoin/pull/9662/files#diff-b2bb174788c7409b671c46ccc86034bdR1357 19:09:35 But maybe it's not required for the current feature set. But think like: "is the wallet using HD", "is it using chain split", .. "are pkeys diables"? 19:09:43 yup 19:09:49 eh, the wallet already supports that? 19:10:00 but i think that's orthogonal to the new database format 19:10:20 Yes. But we already do a new wallet-format type in 0.15. Ideally we push in everything that usefull for 0.15+ 19:10:32 a new wallet format in 0.15? 19:10:34 what? 19:10:42 sounds too optimistic 19:10:48 the HD chain-split is not backward compatible 19:10:51 oh! 19:10:52 Not a new database format. 19:10:52 ok 19:10:53 let's not make multiwallet dependent on a new wallet format 19:10:57 nvm 19:11:02 okay, makes sense 19:11:03 i thought you were talking about logdb 19:11:08 nono... 19:11:32 Just saying that the 0.15er wallet.dat files will not be backward comp. 19:11:43 yeah, sure 19:11:46 ideally we push in as much as we can... to avoid the same non -back com. in 0.16 19:11:50 0.15-created*? 19:12:05 0.15 created.. yes 19:12:12 i think breaking backward compatibility in major releases is fine 19:12:35 Yes. But if we can avoid it with little effort we may want to do it. 19:12:40 But lets park this problem for now. 19:12:41 but his point is the more we get in now the less we have to break the next time 19:12:47 luke-jr: if you what to preserve rescan you need to make it faster. I think rescan is already functionally dead for many users: It takes something like 8 hours on my laptop. 19:12:57 Way more important is what we do with -zap/-salvage/-upgrade in multiwallet 19:13:18 jonasschnelli: forbid them with >1 -wallet? 19:13:30 luke-jr: yes. why not. 19:13:45 jonasschnelli: I replied to your comment on that PR: I think zap and salvage should ultimately go away or move to another tool. Upgrade, I dunno. 19:13:45 How would you run a non-hd and a hd-wallet (seems to be a reasonable use case) 19:13:52 gmaxwell: agree with you 19:13:56 * sipa suggest removing zap in favor of abandontransaction, replacing salvage with a standalone tool, and leaving ugprade to apply to all wallets 19:13:58 jonasschnelli: it just works right now.. 19:14:20 luke-jr: Can it work? If you call -usehd on a non-hd wallet is stops during init 19:14:28 jonasschnelli: don't set -usehd 19:14:37 The its 1 by default 19:14:47 no, it's by default, for existing wallets 19:14:51 I guess you can't mix right now 19:15:06 I test multiwallet with a combo of HD and non-HD 19:15:13 Okay. Sorry then. 19:15:14 -usehd should go away and become a parameter of the createnewwallet RPC 19:15:20 yes 19:15:25 what sipa said. 19:15:49 createnewwallet won't make 0.15 IMO 19:15:54 that's fine 19:16:16 I once stared with a standalone wallet tool but had problems with circular dependencies (cfields may know more): https://github.com/bitcoin/bitcoin/pull/8745 19:16:42 Starting with luke-jr's current PR is fine.. 19:16:56 is there interaction between multiwallet and accounts? 19:17:01 kanzure: no 19:17:06 jonasschnelli: i'm sure we could get that worked out 19:17:23 cfields: okay. Great 19:17:34 for the time being, i think that -usehd (if specified) should apply to all wallets, if not specified, every wallet can be whatever it already is 19:17:36 yes, that's fine, let's aim to get at least basic multiwallet support in 0.15 though 19:17:54 agree 19:18:07 not let it slip another release because we want too much from it, or make it conditional on other changes which haven't been done yet 19:18:14 short topic suggestion: variable naming style 19:18:28 sha256 hashes for all variables! 19:18:31 I just think we should have a (the same) concept in the backhead to avoid extra loops 19:18:37 lol 19:18:39 if this is better offline, fine, but sipa, how would we remove rescan? 19:18:45 no abbreviated variable names plzkthx. actually i would take sha256 hashes over abbreviations. 19:18:54 morcos: let's discuss after the meeting 19:18:56 gmaxwell: I was about to suggest xxd on /dev/urandom, but that works for me too :p 19:18:57 k 19:19:00 #topic variable naming style 19:19:04 * cfields would kill for m_ == member 19:19:27 pls don't kill 19:19:32 i've recently seen several people write patches with variable names that look like they're hungarian, but aren't 19:19:45 i don't care personally for that particular style, but i like consistency 19:19:53 the hungerian onvention should die 19:20:03 but what to replace it with? 19:20:05 I particularly dislike hungarian-looking names that don't have the hungarian meaning :p 19:21:13 Greek characters. 19:21:16 i guess the first question is, do we want any convention specified (in developer-notes) at all, and enforce it in new code? 19:21:19 luke-jr: exactly - and that's what happens, because we have abandoned the style a long time ago and don't describe it in the style doc 19:21:21 any convention that ties a variable to a type is broken imo 19:21:22 Unicode var names? 19:21:31 cfields: RIGHT 19:21:36 is this about gArgs ? 19:21:39 no 19:21:43 people mimic the style but don't know what it means 19:21:49 they should stop mimicing the style too 19:22:02 wumpus: the only way that's going to happen is by prescribing a style to use in new code 19:22:06 wumpus: well, it's been common practice to mimic the code around your changes 19:22:32 cfields: yes but mimiking the style of hungarin notation and getting it wrong misses the point of it. :P 19:22:36 i've come to dislike the "mimick the code around you" suggestion - it does not lead to consistency 19:22:43 gmaxwell: haha exactly... something with cargo cults 19:22:50 sipa: okay, let's switch to tabs instead of spaces then 19:22:52 :P 19:23:31 I'm not aware of any evidence supporting any of these highly structured variable name recommendations as actually providing benefits. 19:23:36 sipa: right, people do it naturally, but I don't think it should be a convention 19:23:38 gmaxwell: +1 19:23:54 nah, these TAB/spaces wars: delete all indentation and let editor choose the right indentation! ;-) 19:23:55 gmaxwell: m_foo and g_foo are extremely helpful imo 19:23:59 but not much else 19:24:13 paveljanik: that's what tabs do 19:24:16 (esp since pretty much no one is sadistic to encode the full type into the name.) 19:24:28 nono, tabsonly compress. No TABs/spaces... 19:24:29 sure, including the scope might be reasonably useful, unlike encoding the type 19:24:37 maybe we should use C++ mangled names 19:24:38 but I'm not looking forward to sweeping code style changes 19:24:46 sigh, nobody is talking about encouraging structured variable name recommendations 19:25:09 before you know it there are 10 PRs open for renaming variables (again, after the shadow fiasco) 19:25:23 gmaxwell: I've seen some sadistic java code that was close 19:25:29 I like the "style changes only affect new code" policy 19:25:33 luke-jr: me too 19:25:42 sipa: maybe suggest the kind of style policy you have in mind? you mean simple things like camelCase vs under_score? 19:25:43 and even exclude purely moved code 19:25:46 yes - feel free to write up a style recommendation for new code 19:25:49 would be nice to have style preference mentioned in docs 19:25:50 cfields: either of those is fine 19:25:56 cfields: but one, not both 19:26:19 and consistency is good, but please don't be a jerk about it, especially not to new contributors 19:26:21 ack only one not both 19:26:45 my experience is that code is read far more often than it is written, and especially so if it serves as documentation 19:26:51 if i had to choose, i'd say under_score - that's what STL uses 19:27:05 when code has disjoint styles, people reading it might wonder if it is different for a reason, or just an accident 19:27:13 or maybe camelCaseForVariables, UNDER_SCORE_FOR_CONSTANTS 19:27:22 and i'm also fine m_X and g_X if that considered useful 19:27:32 My only real contribution to this discussion is whatever we decide on should be clearly spelled out in developer documentation, so we can just point to it over and over gain. Otherwise we'll come away with an agreement that means somethign different to each party. 19:27:32 since I believe that's closer to what we have 19:27:44 morcos: yes yes yes 19:27:47 I'm not a fan of the camelcase, because then you get things wrong based just on the case. seems weird. 19:27:53 morcos: now when did that happen recently? 19:27:54 camel case isn't bad, but it creates the hungarian confuson 19:28:02 luke-jr: that too 19:28:05 camelcase also is easily confused with hungarian 19:28:07 what luke-jr said 19:28:29 morcos: most important to get it into a document in the repository, as to make clear reviewrs aren't forcing their personal style preferences 19:28:31 super ack to morcos suggestion, if it's not documented, it is simply not a convention 19:29:05 morcos: ok, so camelCase today, and hard-fork in a month? 19:29:07 :p 19:29:09 my heuristic is, if you can't tell that a body of code was written my multiple authors over time, that's a win 19:29:16 let's simply agree for variable names on bit 4. the rest can be subjective. 19:29:25 so, if i would create a PR that added to the dev documentation "For new code, the following style for variables is encouraged: local_variable for local variables, m_variable for members, g_variable for globals" 19:29:40 local_* seems annoying 19:29:50 luke-jr: oops, i didn't mean that as a prefix 19:29:54 k 19:29:58 I still don't know when to ask someone touching code to fix things per documented style or not. E.g. 10441 cfields introduces both new braced and unbraced iffs in a function that contains both. 19:30:14 variable, a_variable, j, var, bla, foo, ... all good 19:30:26 gmaxwell: he should fix that 19:30:33 okay. I'll nitpick then. 19:30:34 gmaxwell: if it's cfields you should certainly make him aware of it, he's supposed to know better :) 19:31:00 heh, yes. I think that was a mix of matching nearby code and copy/paste 19:31:03 * wumpus ducks 19:31:10 I think moving away from camel case it's the most disruptive option for local variables 19:31:19 but no strong opinion 19:31:37 i'd certainly never make that mistake again if we added "don't attempt to match nearby code" to the style doc 19:31:37 it's already often used for loop variables etc 19:31:44 variables were never camel-case..? 19:31:47 just saying that it would be nicer if the style was as close as possible to what we have now 19:31:57 without that, i'd never add another unbraced if :) 19:31:59 abandoning the camels for the snakes 19:32:02 luke-jr: sure some where, CBlockIndex* pindexBlock = ... 19:32:08 sipa: that's just hungarian 19:32:24 luke-jr: hungarian is just a more constrained camelcase 19:32:34 camelcase is where you use it as a word separater.. 19:32:41 cfields: ack on adding "Do not attempt to match nearby code, unless you're creating a move-only commit" 19:32:52 sipa: +! 19:32:53 1 19:32:54 luke-jr: well if camel case it's less common than underscore for variables then my argument goes away 19:33:16 I really don't know for sure, was just guessing 19:33:20 luke-jr: and hungarian is using case as word separator, plus the requirement that the first word is the type :) 19:33:55 i'll defer to group, but i prefer camel to underscores, but do like at least identifying global variables with g_ or :: or something 19:34:13 gCamel/mCamel wouldn't be terrible 19:34:20 I would ACK doing something consistent for globals. 19:34:36 anyway, any comments on those suggestions? encouraging lowercase + underscore for local variables, and m_ for members, g_ for globals, and a mention to not mimick surrounding code? 19:34:39 I prefer snakecase like sipa 19:34:49 One thing I don't like about C++ is that when there is a variable that isn't local I dunno if its coming from the class or if it's a global... without going and digging in other files. 19:35:24 gmaxwell: hence m_ :) 19:35:26 so if naming helps disambiguate that I would not be unhappy. 19:35:40 for variable names, for method names we should obviously keep sticking to camelcase 19:35:48 are we ok with combining small words without the udnerscore like feerate or blocksize or something? 19:35:51 wumpus: agree, and class names as well 19:35:55 sipa: yes 19:35:56 bit_coin right? 19:35:56 morcos: ack from me 19:36:09 sdaftuar: it's better than BitCoin 19:36:10 one lowercase word is totally fine for local variables 19:36:14 yes 19:36:17 sipa: ack all of the above 19:36:18 I prefer camelcase, except for the annoying conflict w/ hungarian 19:36:35 I don't care strongly tho 19:36:56 oh, what to do with the cs_* variables we have now? 19:37:02 do we want an exception for that? 19:37:07 oh ok, so we're keeping camel for class and method names and snake for variables.. ok someone write it up 19:37:13 I would be fine with an exception for cs_. 19:37:26 cs_ for locks? it's fine with me 19:37:33 so... g_blockindex g_cs_blockindex? 19:37:37 though I still thing the scope is more useful 19:37:44 but no exception for pblockindex ? 19:38:01 that's hungarian - dia 19:38:02 die 19:38:05 ;) 19:38:15 pblockindex could just be block_index 19:38:21 indeed 19:38:23 though we aren't actrually going to rename variables en-messe 19:38:24 [11:17:50] -*- cfields would kill for m_ == member 19:38:24 [11:18:13] pls don't kill 19:38:27 wumpus: indeed 19:38:41 cfields: thou shall not kill 19:38:48 i'll write up a PR, and we discuss there further? 19:38:51 is all I think luke was saying. 19:38:57 yes 19:38:58 sounds good 19:39:01 ok, topic closed 19:39:06 sipa to do all the work, agreed. 19:39:09 I don't want to see any more variable renaming PRs, the Wshadow war made me so tired of that 19:39:13 other topics? 19:39:19 BIP148 19:39:46 next topic 19:39:59 I have nothing to say about that, at least 19:40:25 but i f you insist 19:40:26 #topic BIP148 19:40:27 I guess we have already enough comments on the PRs.. 19:40:32 my opinion is that it would go against our principles to merge BIP148 into core 19:40:40 sipa: how so? 19:40:59 sipa: +100 19:41:08 i've given my opinion more than enough on existing PRs 19:41:25 i strongly disagree with the "less safe" argument 19:41:26 right, I think everyone already had their say on this 19:41:37 and we shouldn't encourage forks in the network 19:41:43 nor is it out place to push for consensus changes 19:41:43 so we should put users at risk by refusing to enforce the new rule? 19:41:44 let's merge BIP149 instead 19:41:51 sipa: refusing to merge is what encourages the fork in this case 19:41:56 luke-jr: i strongly disagree that it puts users more at risk 19:42:26 wumpus: I brought up 149's timeout on the list, but its author hasn't replied, I think it is needlessly long. 19:42:33 My opinion closely matches sdaftuars from : https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2017-May/014377.html 19:42:34 not only does not-merging it encourage a chain split, it also puts users on the side vulnerable to reorg wipeout 19:42:48 gmaxwell: I think it's too early 19:43:01 I'd be in favor of 149, but I think we should start by being a bit more public about the idea and building consensus for it before actually merging 19:43:06 gmaxwell: ack, your proposal of 6 months seemed reasonable to me 19:43:08 And eys I agree we could tweak it a bit 19:43:11 morcos: +1 19:43:16 gmaxwell: yes we need to agree on the timeout at lesat 19:43:19 luke-jr: the only condition under which it helps users avoid a huge reorg is one under which those who didn't upgrade already experienced a (temporary, but long) fork 19:43:53 as said on the mailing list I think bip148 is rushed and that makes it risky, bip8 on the other hand...(although I'm writing suggestions for changing bip8) 19:44:01 sipa: this seems tautological? 19:44:37 we can merge bip8 without merging bip149 yet, although the sooner it is released the more secure it will be 19:44:39 luke-jr: then how is merging it less risky? 19:44:49 luke-jr: it only helps in case a fork already happened! 19:45:06 while at the same time encouraging said fork 19:45:17 luke-jr: I haven't seen the kind of support required to justify your position on that; afaict so far no exchange or payment processor of note has said they would stick with 148. I think you'd have an argument if there was any of that, but right now I think it's hard to distinguish a subsanstive level of support. (And I've seen some clearly malicious parties pumping support for it too.) 19:45:18 sipa: if a fork happens, it puts them on the side that isn't vulnerable to a reorg, and it helps avoid the fork in the first place 19:45:24 not encouraging it seems far safer than slightly reducing the risk in case it does 19:45:36 luke-jr: under the assumption a hashrate majority adopts it 19:45:40 luke-jr: which i think is crazy 19:45:54 My discussions on reddit with people promoting BIP148 seemed to be because they earniestly believed it was the only choice. 19:45:57 sipa: BIP148 only needs about 25% hashrate to be successful 19:45:58 At the end of the day I think most of us have no interest in greatly increasing the risk of a devastating currency split. I think 148 does that.. But 149 has a decent chance of not doing that if there have been no other consensus rule changes in the interim. But will require consensus building. 19:46:10 E.g. someone managed to convince them that the project would never adopt something like BIP149. 19:46:13 morcos: +1 19:46:19 it will require consensus building 19:46:21 not discussions here 19:46:38 yup 19:46:46 gmaxwell: ack on making the period shorter 19:46:47 which seemed really weird to me, because I thought it was pretty obvious that a 149-like thing would be done. 19:47:08 gmaxwell: it's only obvious if people say that 19:48:24 And to be clear, I think we'd all like to activate segwit via UASF before we could do so with BIP149 (and it would be feasible I think to build support in a shorter time frame), but we just don't have the technical bandwidth to code that up safely in time. 19:48:34 I think that wasn't obvioius, no 19:48:36 if businesses get to decide protocol changes, then I guess bit 4 SW it is 19:49:36 luke-jr: there is a big difference between saying 'businesses get to decide' and saying that the fact that virtually no industry participant is resolute with 148 is a strong sign the support isn't significant enough. If 148 and six months or a year on its clock that would be another matter. 19:49:39 gmaxwell: i don't think it's obvious that BIP149 will happen at all 19:49:39 luke-jr: no one even knows what bit 4 SW is? we might like it, what if its compatible with BIP141 segwit... lets not make decisions based on a single line in a medium post. 19:49:40 in the meantime, a sizable portion of the community will be enforcing BIP148, and with success eventually replacing the non-compliant chain 19:50:01 gmaxwell: it's only virtually none if you exclude the ones who have supported it 19:50:24 luke-jr: that's speculation 19:50:29 luke-jr: while technically the result of bip148 may be a reorg, in practice if there is a non-trivial split the result will be two currencies, as someone will launch a currency based on a checkpoint 19:50:30 You can't measure "community" 19:50:33 luke-jr: maybe I'm just not aware then. 19:50:34 luke-jr: i hope you're right, but my expectation is that every economically relevant full node will revert away from bip148 code hours after the hashrate fails to adopts it 19:50:49 luke-jr: I would hope that BIP148 and BIP149 supporters are able to agree at least that they should all support the same thing. 19:51:04 sipa: Bitfury has already agreed to enforce BIP148 if the bit-4 thing doesn't activate Segwit by August 19:51:08 sipa: depends on how much hash rate... lots of incentive for exchanges to support it and let the two coins trade against each other 19:51:24 sipa: I guess they have also agree (among others) to run Classic 19:51:31 (meant luke-jr) 19:51:34 luke-jr: well, i hope you're right 19:51:47 but i'm very skeptical about that 19:52:34 topic suggestion: high-priority PRs? 19:52:38 if we're divided in opinion on this, we should at *least* give users the choice, even if they want to stick to Core releases 19:52:44 If 148 managed to get the kind of support needed to result in avoiding a chain split, I'm fine with that. But I think it's a very poor and needlessly risky approach. 19:52:52 luke-jr: users already have a choice to not run Core 19:52:56 luke-jr: you already have a release process, release Knots with the option. 19:53:01 sipa: many don't want to choose that 19:53:13 maybe for a reason? 19:53:14 luke-jr: for good reasons, because we don't do reckless things 19:53:18 luke-jr: then perhaps because the realize that we've usually had good judgement... 19:53:23 what was the default in the bip148 paramflag pull request? 19:53:29 kanzure: false 19:53:32 off 19:53:34 gmaxwell: and in this case, we disagree on that judgement. 19:53:38 kanzure: I wouldn't have concept acked it otherwise... 19:53:55 alright, next topic 19:53:57 alright, sent suggestions to change bip8 to the mailing list... 19:54:07 deciding what choices users do or do not get seems overly political to me, if core developers want to make a political statement that's fine, but pretending to be neutral and not allowing an optional switch for bip148 seems disingenuous 19:54:14 with context of "default off" some of the above comments make less sense 19:54:39 oh, quick topic suggestion: 0.14.2 19:54:41 sdfkjs23? You can offer it yourself by forking and deploying or patching? 19:54:49 jtimon: I don't think we should change BIP8 generally: the reason we can do a shorter termination with SW is because we've already done one deployment-- so we know what the uptake looks like and how fast it went the first time. 19:54:52 sdfkjs23: there's a multiple of optional switches that we could add to be neutral - we're not going to add them all, thus we have to make some kind of (hopefully conservative) political statement 19:54:59 (sorry, forgot all about it. we can pick it up after the meeting) 19:55:02 jonasschnelli: too many people (and especially companies) refuse to run anything unless Core releases it 19:55:06 jonasschnelli: it sucks, but it's reality 19:55:22 sdfkjs23: Offering users settings we believe will harm third parties and the user is not 'neutral'. 19:55:23 luke-jr: they want default-off merged and that's what will get them interested in bip148? 19:55:27 #topic 0.14.2 19:55:32 gmaxwell: the changes are just for providing warnngs in unkown deployments, like bip9 did 19:55:37 luke-jr: But core is consensus among devs for a reason. And I guess we mostly (never?) merged controversial consensus changes 19:55:37 sdfkjs23: if users want 'neutral' they have a copy of GCC, they can write their own node. 19:55:44 gmaxwell: +1 19:55:46 let's do a 0.14.2 soon, even if just for the UPNP CVE 19:55:47 (want neutral in that sense) 19:55:53 gmaxwell: we don't all believe that in this case. some of us admit that it's riskier to NOT enforce BIP148 19:55:57 (of course we want to include some other fixes as well) 19:56:04 sdfkjs23: sofware worth running is always opinionated in many ways, even if you don't realize it. 19:56:07 jonasschnelli: it's controversial to fail to enforce the softfork now 19:56:26 wumpus: ack on 0.14.2 I think there are a couple other fairly modest fixes that could be backported. 19:56:31 I'd like to suggest a quick 0.14.2 for the upnp and recent peer visibility fix from marcos, along with whatever else has piled up in the meantime 19:56:40 heh, far too slow 19:56:41 sounds good to me 19:56:53 ack 0.14.2 ... there is also an important GUI fix 19:56:54 if that's what the main core developers want to say sure, but it's pretty clear that core is then the implementation as defined by this small group here, it is their vision and not open really to general community. 19:56:58 yes i think we could use more public notice on the peer visibility fix 19:57:13 ok, please mark anything that should be backported to 0,14,2 as such 19:57:19 (or ask us to do it) 19:57:24 * jonasschnelli looking... 19:57:41 thanks, will do 19:57:42 even people who have connections, but are behind NAT are going to want to upgrade b/c eventually they wont' have connections (maybe.. i can't remember now) 19:57:57 incoming connections* 19:58:01 yes sorry 19:58:20 morcos: yes, so for backport the visiblity fix, cfields open PR with the connection stuff.. 19:58:48 wumpus: https://github.com/bitcoin/bitcoin/pull/10231 (closed 0.14.2 milestone... needs backport) 19:58:55 (should apply IMO) 19:59:28 jonasschnelli: ah, good one if it backports cleanly 19:59:34 jonasschnelli: that one is correctly marked, will port those in one go at some point (at lesat the ones that cleanly apply or need only small changes) 19:59:35 sdfkjs23: it's open source, anyone can repackage the software in any way they like, and i encourage everyone to do so (as long as they don't misrepresent the choices made)... but Bitcoin Core as a project has established some practices, and those include not accepting consensus rule changes without broad support and weighing the risks - it seems most people in this room now believe that bar isn't 19:59:38 sdfkjs23: in this case, it seems it's a minority of pessimistic devs holding back a softfork that the community largely wants and most of the devs are okay with merging, putting users who trust us collectively at a risk they shouldn't be :< 19:59:41 sdfkjs23: open-source does not mean the project must "merge anything", it means you can compile whatever patches you want. 19:59:41 met for BIP148 20:00:19 it's time 20:00:21 #endmeeting