< dcousens> wc
< sharkattack1999> is virwox safe
< GitHub69> [bitcoin] jonasschnelli pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/0fa88ef784dd...3798e5de334c
< GitHub69> bitcoin/master ce7413f Luv Khemani: Add autocomplete to bitcoin-qt's console window....
< GitHub69> bitcoin/master 3798e5d Jonas Schnelli: Merge #7613: Add autocomplete to bitcoin-qt's console window....
< GitHub94> [bitcoin] jonasschnelli closed pull request #7613: Add autocomplete to bitcoin-qt's console window. (master...autocomplete) https://github.com/bitcoin/bitcoin/pull/7613
< GitHub88> [bitcoin] jonasschnelli pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/3798e5de334c...b24266c20748
< GitHub88> bitcoin/master 21e45a0 Andrew C: Fix history deletion bug after font change...
< GitHub88> bitcoin/master b24266c Jonas Schnelli: Merge #7668: Fix history deletion bug after font size change...
< GitHub180> [bitcoin] jonasschnelli closed pull request #7668: Fix history deletion bug after font size change (master...rpcconsole-hist-fix) https://github.com/bitcoin/bitcoin/pull/7668
< jonasschnelli> Hmm... getting a new warning:
< jonasschnelli> torcontrol.cpp:365:24: warning: private field 'base' is not used [-Wunused-private-field]
< jonasschnelli> But seems to be used in TorController::TorController constructor... strange..
< paveljanik> there is a global base
< paveljanik> it can be removed from TorController::TorController and commented out around l. 365
< paveljanik> I do not know if the global should be prefer or the private one there.
< paveljanik> let's wait for wumpus
< wumpus> we should probably rename the global one
< wumpus> (I'd like to go without it completely, but I don't think that's possible)
< wumpus> it would work if our initialization sequence was structured differently, and StartTorControl would return an instance instead, but with the global StartTorControl/InterruptTorControl/StopTorControl flow, some state needs to be global
< wumpus> it shouldn't be called the same as an instance variable though
< GitHub154> [bitcoin] laanwj opened pull request #7676: torcontrol: rename global base, avoid overlap with field (master...2016_03_torcontrol_rename_base) https://github.com/bitcoin/bitcoin/pull/7676
< wumpus> eventually we could want to move toward having one libevent base, instead of having separate ones for RPC and torcontrol, but best to do this after cfields_' net refactor
< wumpus> (which will introduce a third one for the P2P)
< wumpus> so, it looks like 0.12 finally broke windows XP compatibility (https://github.com/bitcoin/bitcoin/issues/7639, https://github.com/bitcoin/bitcoin/issues/7674)
< wumpus> I'd almost say 'congratulations', if it wasn't that I'm afraid that it's some kind of race that may be hiding on other platforms as well
< wumpus> on the other hand this could be simply the new mingw (from ubuntu 14.04 i.s.o 12.04)
< NicolasDorier> I would appreciate some feedback on https://github.com/bitcoin/bitcoin/issues/7677
< GitHub107> [bitcoin] laanwj closed pull request #7676: torcontrol: rename global base, avoid overlap with field (master...2016_03_torcontrol_rename_base) https://github.com/bitcoin/bitcoin/pull/7676
< GitHub42> [bitcoin] laanwj pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/b24266c20748...56d2c4e0fee3
< GitHub42> bitcoin/master 393b22e Mustafa: Add a source file for unit test utils.
< GitHub42> bitcoin/master 2fdaa25 Mustafa: Move GetTempPath() to testutil.
< GitHub42> bitcoin/master 56d2c4e Wladimir J. van der Laan: Merge #7667: Move GetTempPath() to testutil...
< GitHub100> [bitcoin] laanwj closed pull request #7667: Move GetTempPath() to testutil (master...patch-gettemppath) https://github.com/bitcoin/bitcoin/pull/7667
< GitHub97> [bitcoin] laanwj pushed 4 new commits to master: https://github.com/bitcoin/bitcoin/compare/56d2c4e0fee3...f1ca8915bb22
< GitHub97> bitcoin/master b0ff857 Wladimir J. van der Laan: test: Move non-generated script_invalid test to the correct place...
< GitHub97> bitcoin/master 2317ad7 Wladimir J. van der Laan: test: Re-introduce JSON pretty printing in test builder
< GitHub97> bitcoin/master 0ecb340 Wladimir J. van der Laan: test: Script_error checking in script_invalid tests...
< GitHub32> [bitcoin] laanwj closed pull request #7517: test: script_error checking in script_invalid tests (master...2016_02_test_script_errors) https://github.com/bitcoin/bitcoin/pull/7517
< wumpus> paveljanik: I don't like that warning - it's correct, after #7637 we don't need to keep `base` around at all in TorController right now because we only use it in the constructor. But I think it's good practice to do so anyway, in case it's needed again in later changes...
< GitHub160> [bitcoin] laanwj pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/f1ca8915bb22...5b3b5a7d711c
< GitHub160> bitcoin/master fc7c60d Jonas Schnelli: [Wallet] move "load wallet phase" to CWallet
< GitHub160> bitcoin/master 15e6e13 Jonas Schnelli: [Wallet] optimize return value of InitLoadWallet()
< GitHub160> bitcoin/master 5b3b5a7 Wladimir J. van der Laan: Merge #7577: [Wallet] move "load wallet phase" to CWallet...
< GitHub41> [bitcoin] laanwj closed pull request #7577: [Wallet] move "load wallet phase" to CWallet (master...2016/02/wallet_ref2) https://github.com/bitcoin/bitcoin/pull/7577
< GitHub130> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/5b3b5a7d711c...11c769966ad7
< GitHub130> bitcoin/master 8d1de43 Leviathn: Remove internal miner...
< GitHub130> bitcoin/master 11c7699 Wladimir J. van der Laan: Merge #7507: Remove internal miner...
< GitHub30> [bitcoin] laanwj closed pull request #7507: Remove internal miner (master...master) https://github.com/bitcoin/bitcoin/pull/7507
< GitHub155> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/11c769966ad7...c87f51e55bc3
< GitHub155> bitcoin/master 8a253b3 Pieter Wuille: Make the generate RPC call function for non-regtest
< GitHub155> bitcoin/master c87f51e Wladimir J. van der Laan: Merge #7663: Make the generate RPC call function for non-regtest...
< GitHub3> [bitcoin] laanwj closed pull request #7663: Make the generate RPC call function for non-regtest (master...generatenonreg) https://github.com/bitcoin/bitcoin/pull/7663
< paveljanik> wumpus, 8) When it is needed in later changes, it can be resurrected from git history 8)
< wumpus> paveljanik: of course, but I think the warning is over-eager
< paveljanik> every warning is disturbing, hides probles etc. But I know you have a different opinion :-)
< paveljanik> and I respect that.
< wumpus> sure, they're annoying, but in some cases it makes more sense to disable the warning than change the code
< paveljanik> I agree with that - in some cases. Like known compiler bug etc...
< wumpus> it's not up to compiler authors to decide about our code style
< wumpus> looks like they're making the compiler behave like a nanny with too much time on their hands
< paveljanik> I agree with that completely ;-)
< wumpus> all time spent on 'fixing' the code to be as acceptable as possible to the compiler is not spent on facing user-facing issues, ok and that concludes my rant on this
< GitHub102> [bitcoin] laanwj closed pull request #7655: [qt] Add .clang-format (master...Mf1603-qt-clang-format-0.12) https://github.com/bitcoin/bitcoin/pull/7655
< GitHub7> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/c87f51e55bc3...c9a12657545f
< GitHub7> bitcoin/master a6ee0ca Pavel Vasin: use cached block hash in blockToJSON()
< GitHub7> bitcoin/master c9a1265 Wladimir J. van der Laan: Merge #7670: use cached block hash in blockToJSON()...
< GitHub70> [bitcoin] laanwj closed pull request #7670: use cached block hash in blockToJSON() (master...patch) https://github.com/bitcoin/bitcoin/pull/7670
< GitHub199> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/c9a12657545f...c15eb2824184
< GitHub199> bitcoin/master ce41cf0 BtcDrak: Add curl to Gitian setup instrustions...
< GitHub199> bitcoin/master c15eb28 Wladimir J. van der Laan: Merge #7658: Add curl to Gitian setup instructions...
< GitHub192> [bitcoin] laanwj closed pull request #7658: Add curl to Gitian setup instructions (master...curl) https://github.com/bitcoin/bitcoin/pull/7658
< GitHub32> [bitcoin] laanwj opened pull request #7680: qt: Remove reflection from `about` icon (master...2016_03_image_optimize) https://github.com/bitcoin/bitcoin/pull/7680
< GitHub195> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/c15eb2824184...41d2dfa9e73b
< GitHub195> bitcoin/master 322a7a2 Wladimir J. van der Laan: qt: Remove reflection from `about` icon...
< GitHub195> bitcoin/master 41d2dfa Wladimir J. van der Laan: Merge #7680: qt: Remove reflection from `about` icon...
< GitHub2> [bitcoin] laanwj closed pull request #7680: qt: Remove reflection from `about` icon (master...2016_03_image_optimize) https://github.com/bitcoin/bitcoin/pull/7680
< GitHub179> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/41d2dfa9e73b...0735c0ca7c22
< GitHub179> bitcoin/master fa19b18 MarcoFalke: [wallet] Move hardcoded file name out of log messages
< GitHub179> bitcoin/master 0735c0c Wladimir J. van der Laan: Merge #7608: [wallet] Move hardcoded file name out of log messages...
< GitHub194> [bitcoin] laanwj closed pull request #7608: [wallet] Move hardcoded file name out of log messages (master...Mf1602-walletFileName) https://github.com/bitcoin/bitcoin/pull/7608
< GitHub98> [bitcoin] MarcoFalke opened pull request #7682: [0.11.3] Backports (0.11...Mf1603-011wallet) https://github.com/bitcoin/bitcoin/pull/7682
< MarcoFalke> wumpus, what is the plan for 0.10.4 and 0.11.3?
< wumpus> no plan at this moment
< wumpus> another 0.10.x would require a critical reason, we could do a 0.11.x if there's good reason
< btcdrak> the next maint release should be the CSV softfork imo
< wumpus> sure, well, to be honest I don't really keep track of 0.11 backports, may make sense to appoint another release manager for backport releases
< wumpus> (e.g. as linux has)
< MarcoFalke> 0.11 currently has my "[dbwrapper] Detect obfuscation" patch and the wallet issues
< MarcoFalke> Though, it also includes the "paytxfee changed behavior without warning"
< wumpus> possibly Luke-Jr, though maybe he is a bit too trigger-happy with backporting
< wumpus> the list in https://github.com/bitcoin/bitcoin/pull/7047 is pretty scary :)
< MarcoFalke> Jup, preferrably only changes that the end user can see should be backported.
< wumpus> the changed fee behavior is backported to 0.11?
< wumpus> ah yeah: * 7d0a05f - Default fPayAtLeastCustomFee to false
< wumpus> going to revert that one, I don't want to do that on th 0.11 branch
< GitHub35> [bitcoin] laanwj pushed 1 new commit to 0.11: https://github.com/bitcoin/bitcoin/commit/b6f59048d33a360246e000fc45daf26d08a693de
< GitHub35> bitcoin/0.11 b6f5904 Wladimir J. van der Laan: Revert "Default fPayAtLeastCustomFee to false"...
< MarcoFalke> Don't forget to revert 5f09cda0bf4cddc7d33989717a97ae53e85a7a00 as well.
< MarcoFalke> The unit tests will fail now because the wallet pays too much.
< wumpus> good point
< GitHub97> [bitcoin] laanwj pushed 1 new commit to 0.11: https://github.com/bitcoin/bitcoin/commit/d49f72420b86cff446961f007dce050b84594373
< GitHub97> bitcoin/0.11 d49f724 Wladimir J. van der Laan: Revert "[wallet] Add rpc tests to verify fee calculations"...
< jonasschnelli> wumpus: this fixes the torcontrol warning for me: https://github.com/bitcoin/bitcoin/compare/master...jonasschnelli:2016/03/torctrl?expand=1
< jonasschnelli> But the current constructor should be "legal" -> base(base)
< jonasschnelli> Not sure why it does fix the clang warning...
< GitHub147> [bitcoin] jonasschnelli opened pull request #7683: Fix torcontrol.cpp unused private field warning (master...2016/03/torctrl) https://github.com/bitcoin/bitcoin/pull/7683
< jonasschnelli> paveljanik maybe verify https://github.com/bitcoin/bitcoin/pull/7683?
< paveljanik> will do
< paveljanik> hmm
< paveljanik> I'd like to see a mix of your and Wladimir's solution ;-)
< paveljanik> it is not clear now, what is the concept behind two variables, named the same.
< paveljanik> it is not clear what "base" is used from the first review of the source.
< paveljanik> but I'll confirm if it fixes the warning
< GitHub148> [bitcoin] MarcoFalke opened pull request #7684: [qa] Extend tests (master...Mf1603-qaCleanup1) https://github.com/bitcoin/bitcoin/pull/7684
< jonasschnelli> paveljanik: I agree the var names should be different... but no strong opinion. The struct event_base *base; at L662 should not interfere the private struct event_base* base; of TorController (not even shadow).
< paveljanik> jonasschnelli, and this is what your and wumpus 's change does :-)
< paveljanik> but anyway, warning gone with your PR
< jonasschnelli> +1
< jonasschnelli> paveljanik: thanks for testing...
< paveljanik> it was done almost without me, automagically 8)
< GitHub73> [bitcoin] jonasschnelli opened pull request #7685: [WIP] Add bloom filter usage statistics (master...2016/03/bf_stats) https://github.com/bitcoin/bitcoin/pull/7685
< GitHub16> [bitcoin] MarcoFalke opened pull request #7686: [qt] Remove 0-fee from send dialog (master...Mf1603-qt-0-fee) https://github.com/bitcoin/bitcoin/pull/7686
< MarcoFalke> spring-cleaning. Let's remove all the code!
< GitHub33> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/0735c0ca7c22...48f39058315c
< GitHub33> bitcoin/master 3d7e973 Jonas Schnelli: Fix torcontrol.cpp unused private field warning
< GitHub33> bitcoin/master 48f3905 Wladimir J. van der Laan: Merge #7683: Fix torcontrol.cpp unused private field warning...
< GitHub32> [bitcoin] laanwj closed pull request #7683: Fix torcontrol.cpp unused private field warning (master...2016/03/torctrl) https://github.com/bitcoin/bitcoin/pull/7683
< morcos> btcdrak: ok, i submitted a PR to your repo for my new RPC test. it's a handful, but i think it now tests much much more of the consensus logic.
< GitHub177> [bitcoin] sipa opened pull request #7687: Stop treating importaddress'ed scripts as change (master...fixscriptimport) https://github.com/bitcoin/bitcoin/pull/7687
< btcdrak> morcos: thank you very much! I'll take a look after dinner.
< GitHub73> [bitcoin] sipa opened pull request #7688: List solvability in listunspent output and improve help (master...helpspendsolv) https://github.com/bitcoin/bitcoin/pull/7688
< GitHub87> [bitcoin] sipa opened pull request #7689: Replace OpenSSL AES with our own constant-time version (edit of #5949) (master...const_aes) https://github.com/bitcoin/bitcoin/pull/7689