< GitHub126> [bitcoin] laanwj closed pull request #7682: [0.11.3] Fix "Unclear error when starting Bitcoin Core" (0.11...Mf1603-011wallet) https://github.com/bitcoin/bitcoin/pull/7682
< GitHub138> [bitcoin] laanwj closed pull request #5949: Replace openssl aes encryption/decryption/key creation implementations with our own (master...aes-keys) https://github.com/bitcoin/bitcoin/pull/5949
< jonasschnelli> sipa, wumpus: Why is https://github.com/bitcoin/bitcoin/pull/7689 labeled with prio high?
< jonasschnelli> Side channel attacks? Or did I miss a openssl CVS?
< midnightmagic> when was the planned date for that CVE release anyway?
< jonasschnelli> SPV Info: during the last 12h, one of my nodes (where I collecting stats), served 4.5 GB of filtered blocks (12h!).
< GitHub62> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/48f39058315c...a6a860796a44
< GitHub62> bitcoin/master 0040118 mrbandrews: Fixes ZMQ startup with bad arguments.
< GitHub62> bitcoin/master a6a8607 Wladimir J. van der Laan: Merge #7621: Fixes ZMQ startup with bad arguments....
< GitHub34> [bitcoin] laanwj closed pull request #7621: Fixes ZMQ startup with bad arguments. (master...ba-fix-zmq) https://github.com/bitcoin/bitcoin/pull/7621
< jonasschnelli> And during the same 12h, the node got 5688 filtered mempool requests
< jonasschnelli> Which took: 73min to process (in total)?! can that be possible?
< GitHub139> [bitcoin] jonasschnelli opened pull request #7691: [Wallet] refactor wallet/init interaction (master...2016/03/wallet_mod) https://github.com/bitcoin/bitcoin/pull/7691
< GitHub69> [bitcoin] btcdrak opened pull request #7692: Remove p2p alert system (master...remove_alert) https://github.com/bitcoin/bitcoin/pull/7692
< MarcoFalke> btcdrak, there is an issue with the recent cherry-pick: https://bitcoincore.org/en/2016/01/26/segwit-benefits/
< btcdrak> weird, fixing.
< MarcoFalke> jonasschnelli, blame qtcreator for the 104px. ;) I assume the program did this because I removed the widget.
< MarcoFalke> There were other changes introduced by qtcreator but I was unsure what to do with them
< jonasschnelli> MarcoFalke: Yes. But it might be good to rearrange that height. Maybe 70 or 80px.
< MarcoFalke> - <string>total at least</string>
< MarcoFalke> - <string>total at least</string>
< MarcoFalke> - <string>total at least</string>
< MarcoFalke> - <string>total at least</string>
< MarcoFalke> - <string>total at least</string>
< MarcoFalke> - <string>total at least</string>
< MarcoFalke> - <string>total at least</string>
< MarcoFalke> Right, we want to make sure the default size can still hold all widgets when expanded ( https://github.com/bitcoin/bitcoin/issues/6601#issuecomment-196464704 )
< MarcoFalke> (sry for junk, I should get a proper IRC client)
< MarcoFalke> The only issue with this pull is probably when someone has "-sendfreetransactions" set in their conf.
< MarcoFalke> IIRC this will "overwrite" the GUI settings done at run time.
< sipa> jonasschnelli: cory's pull request was also priority high
< MarcoFalke> jonasschenlli, 7691 looks really neat.
< MarcoFalke> But it seems you forgot to remove parameter interaction from init?
< morcos> sipa: ping
< morcos> sipa: I'm just trying to reason through whether your new warning logic is sufficient or not for BIP 9.
< morcos> It's unclear what should be fixed in this PR and what should be fixed in a separate PR which cleans up alert logic (for instance making sure the RPC getinfo returns the warnings probably belongs there)
< morcos> But part of what concerns me about your PR is the if (!fWarned) guard, it seems like its too easy to accidentally miss whatever warning has happened, especially due to the buggy alert logic where strMiscWarning could be overwritten by too many blocks than expected or something silly
< morcos> What do you think it is that we are trying to avoid happening more than once with that guard? The Notify? perhaps we should just guard that.
< morcos> I'd like to make sure that before we release this code we have something in place such that 0.12.1 code with this released won't accidentally miss future upgrades of either known or unknown type if the user isn't paying very close attention.
< morcos> I'm not sure we're quite there yet.
< sipa> morcos: i tried to leave as much of the way warnings are issued untouched
< morcos> sipa: yeah, but i think the fact that the elegant way your warnings checker doesn't need to run during IBD (which i'd missed before) is a bit hampered by that !fWarned guard.
< morcos> which might be a problem with the existing code honestly
< sipa> morcos: and i missed that that fWarned flag was a static, so i had removed it in an earlier version
< sipa> i think the whole warning system is broken (not visible enough, no way to have multiple parallel warnings, not having transient warnings, ...)
< sipa> but i don't feel that should be fixed in this PR
< sipa> maybe it does need fixing separately before we release any bip9 code
< morcos> sipa: yeah i was just looking at that
< morcos> thats what i think
< morcos> i don't think it has to be that hard
< morcos> but i'm just a bit hesitant b/c i'm not familiar with the statusBar/GUI stuff
< morcos> but for the RPC warnings, it seems we could just concatenate any active warnings
< morcos> but i think its worth fixing at least to some degree before release
< morcos> but if you dont' want to do that, i'd say an alternative
< sipa> i think you want warnings to be a set of strings, that is constructed by merging the warning sets computed by different subsystems
< morcos> is to put the !fWarned guard on Notify and strMiscWarning, but keep logprintf's happening period
< sipa> each subsystem is responsible for caching its own warnings for as long as they are applicable
< morcos> so then at the very least the debug log will be constantly telling you if your version is out of date
< morcos> sipa: yes agree
< morcos> the problem is do we want to back port all those changes to .11 and .12?
< morcos> It seems like its the case now that anybody running .11.2 or .12.0 might miss warnings of the upgrade to BIP9 right? they'll have that warning set once, but then it might be wiped out by one of the frivolous warnings
< morcos> brb
< morcos> sipa: heh, shows how much i know. that strRPC is only for determining whether safeMode is required for RPC commands. strStatusBar is what is returned by RPC commands, so that does get updated.
< morcos> but we still have the problem of transient warnings
< dgenr8> morcos: is it silly to warn the user if some miner breaks sha256 and starts issuing a block per 10s?
< morcos> dgenr8: i called them silly because they happen all the time as false positives now, not that the idea is silly
< morcos> although maybe that just got fixed?
< dgenr8> oh ok. i think #7568 fixes it
< morcos> sipa: i think we should just do the quick and dirty fix for backports. which in my mind is only use the !fWarned guard on calling Notify.
< morcos> This means that unknown block versions will always overwrite partition checks
< morcos> But LargeWorkForks will overwrite either of those
< morcos> Then we can clean up the Alert system for 0.13 properly, but right now there is no locking around any of these variables used in alerts and it seems a bit invasive to do it properly
< morcos> thoughts?
< sipa> seems reasonable
< GitHub2> [bitcoin] btcdrak closed pull request #7544: Backport BIP112 implementation for 0.12 (0.12...dot12_backport_bip112) https://github.com/bitcoin/bitcoin/pull/7544
< GitHub85> [bitcoin] btcdrak closed pull request #7561: IsSuperMajority() softfork for BIPs 68,112 and 113 (master...softfork) https://github.com/bitcoin/bitcoin/pull/7561
< GitHub97> [bitcoin] btcdrak opened pull request #7693: [0.11 backport] BIP112 CHECKSEQUENCEVERIFY mempool-only (0.11...bip112-backport-0.11) https://github.com/bitcoin/bitcoin/pull/7693
< GitHub175> [bitcoin] pstratem opened pull request #7694: Rename AcceptBlock/AcceptBlockHeader to StoreBlock/StoreBlockHeader (master...2016-03-15-naming) https://github.com/bitcoin/bitcoin/pull/7694
< GitHub72> [bitcoin] morcos opened pull request #7695: [0.11] Backport BIP 68 mempool only (0.11...68backport) https://github.com/bitcoin/bitcoin/pull/7695