< wumpus> interesting, I have a bitcoind that hangs at "Loading banlist..."
< wumpus> well it responds to RPC requests with that
< wumpus> it does actually seem to be syncing with the network
< wumpus> ok initialization completed now, seems to be a case of misreporting what it is doing
< GitHub101> [bitcoin] jonasnick opened pull request #8118: Reduce unnecessary hashing in signrawtransaction (master...faster-signraw) https://github.com/bitcoin/bitcoin/pull/8118
< GitHub154> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/6ff2c8d29f6b...61b86848b163
< GitHub154> bitcoin/master 619d569 Pieter Wuille: Benchmark SipHash
< GitHub154> bitcoin/master 61b8684 Wladimir J. van der Laan: Merge #8111: Benchmark SipHash...
< GitHub166> [bitcoin] laanwj closed pull request #8111: Benchmark SipHash (master...benchsiphash) https://github.com/bitcoin/bitcoin/pull/8111
< GitHub141> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/61b86848b163...989df7ecf3a1
< GitHub141> bitcoin/master fc95f6e Chris Moore: fix typo in help text...
< GitHub141> bitcoin/master 989df7e Wladimir J. van der Laan: Merge #7896: fix typo in help text...
< GitHub103> [bitcoin] laanwj closed pull request #7896: fix typo in help text (master...patch-1) https://github.com/bitcoin/bitcoin/pull/7896
< GitHub29> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/989df7ecf3a1...52b803e09b16
< GitHub29> bitcoin/master 5fac1f3 Yuri Zhykin: bench: Added base58 encoding/decoding benchmarks
< GitHub29> bitcoin/master 52b803e Wladimir J. van der Laan: Merge #8107: bench: Added base58 encoding/decoding benchmarks...
< GitHub51> [bitcoin] laanwj closed pull request #8107: bench: Added base58 encoding/decoding benchmarks (master...benchmarks) https://github.com/bitcoin/bitcoin/pull/8107
< GitHub138> [bitcoin] fanquake opened pull request #8119: [trivial] Add .DSYM to .gitignore (master...ignore_debug) https://github.com/bitcoin/bitcoin/pull/8119
< GitHub15> [bitcoin] fanquake opened pull request #8121: [Doc] Update implemented BIPs list (master...missing_bips) https://github.com/bitcoin/bitcoin/pull/8121
< GitHub73> [bitcoin] sipa opened pull request #8123: Use std::atomic for fRequestShutdown and fReopenDebugLog (master...notsigbutatomic) https://github.com/bitcoin/bitcoin/pull/8123
< GitHub196> [bitcoin] sipa pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/52b803e09b16...950be19727a5
< GitHub196> bitcoin/master fa2637a Pieter Wuille: Always require OS randomness when generating secret keys
< GitHub196> bitcoin/master 628cf14 Pieter Wuille: Don't use assert for catching randomness failures
< GitHub196> bitcoin/master 950be19 Pieter Wuille: Merge #7891: Always require OS randomness when generating secret keys...
< GitHub132> [bitcoin] sipa closed pull request #7891: Always require OS randomness when generating secret keys (master...betterrng) https://github.com/bitcoin/bitcoin/pull/7891
< gmaxwell> \O/ (randomness)
< GitHub170> [bitcoin] sipa opened pull request #8126: std::shared_ptr based CTransaction storage in mempool (master...sharedmempool) https://github.com/bitcoin/bitcoin/pull/8126
< gmaxwell> \O/
< luke-jr> O.o
< sipa> ^^
< sipa> gmaxwell: it also conflicts with a few of your PRs, but it should simplify them
< gmaxwell> I don't mind.
< btcdrak> a rebase is a small price to pay for randomness
< btcdrak> the new currency shall be called rebases.
< gmaxwell> sipa: Is CTxMempool::CompareDepthAndScore dead code after the change that puts int in the Comparitor directly?
< luke-jr> might be useful to have a typedef though?
< gmaxwell> btcdrak: Sipa and I were commenting there about the shared_ptr change.
< luke-jr> CTransactionRef or something?
< gmaxwell> I kinda like knowing that its a shared_ptr, but... nevermind my taste.
< luke-jr> I don't feel strongly about this, was mainly thinking if we ever had to go back to pre-C++11 for some reason
< luke-jr> which seems unlikely
< sipa> luke-jr: sounds fine... std::shared_ptr<const Ctransaction> is a bit awkward to type
< sipa> on the aother hand... auto works well :)
< sipa> gmaxwell: no, still used from the heapifier in message handling
< luke-jr> 'auto' certainly tells even less that it is a shared_ptr :P
< luke-jr> so if the long type is going to encourage using auto everywhere, perhaps gmaxwell's goal is actually better suited by a typedef as well
< gmaxwell> I think I'm going to have to give up on editing this code using an editor that can't go and read faraway prototypes. Auto for return types is pretty useful, but it currently results in me grepping to go find out what the type actually is.
< * sipa> abandons his rewrite to increase usage of auto
< gmaxwell> I hope not. Don't change what you're doing because of my very C-like preferences.
< sipa> it's a valid argument
< gmaxwell> I think it is best when the return type is obvious. E.g. functions that give you an iterator.
< sipa> we could of course go back to strict hungarian notation :D
< * luke-jr> understood that as abandoning "a PR intentionally doing nothing but changing stuff to 'auto' where possible"
< sipa> luke-jr: oh, no, i mean improving my current shared_ptr PR
< luke-jr> oh, ok
< gmaxwell> sipa: is there something we can do at shutdown to tell if all the txn have been freed? even in just some debugging build?
< sipa> gmaxwell: how could they not?
< luke-jr> CTx constructor could increment a global, and destructor decrement it?
< sipa> luke-jr: yup
< sipa> an atomic global :)
< sipa> and on every decrement, print to stderr
< gmaxwell> in the current code, they couldn't AFAICT. But if we leaked some object with a shared ptr we'd leak the transaction. It's generally pretty hard to leak shared_ptr... but seems prudent to check for.
< gmaxwell> Yea, that would work.
< sipa> also: the glibc implementation of std::shared_ptr is not readable
< gmaxwell> BlueMatt: thoughts on #8126 ? would you like to rebase compactblocks on that?
< sipa> with --patience i get much more readable diffs often
< gmaxwell> http://blog.invisiblethings.org/2016/05/30/build-security.html < on build enviroment security.
< BlueMatt> gmaxwell: I probably will after its merged, sure
< btcdrak> BlueMatt: could you say so on the ticket so people arent waiting for it?
< BlueMatt> btcdrak: who's waiting for what?
< sipa> it shouldn't interfere with review of compact blocks otherwise
< sipa> just the refcounting in the mempool can go away
< gmaxwell> BlueMatt: you might want to review sipa's patch (or try the rebase) to make sure it won't get in your way.
< sipa> i'll do the rebase for you, if it helps things forward
< gmaxwell> sipa: might be a good review excercise even if matt doesn't want to use the result.
< gmaxwell> Opinion piece against most uses of unit tests that I think makes some nice points: http://rbcs-us.com/documents/Why-Most-Unit-Testing-is-Waste.pdf (the biggest exceptions he makes are cases where there is a clear formal defintion of correctness that can be tested against for the function, and also when the tests are realistically able to completely test the function; otherwise he favors system
< gmaxwell> tests and gives arguments from a number of angles).