< bitcoin-git>
[bitcoin] fanquake closed pull request #13741: Only allocate a LevelDB block cache if LevelDB will actually use it (master...eklitzke-buffer-cache-rebased) https://github.com/bitcoin/bitcoin/pull/13741
< nelsonhb>
The Greater Yuezhi initially migrated northwest into the Ili Valley (on the modern borders of China and Kazakhstan), where they reportedly displaced elements of the Sakas. They were driven from the Ili Valley by the Wusun and migrated southward to Sogdia and later settled in Bactria, where they then defeated the Greco-Bactrian Kingdom.
< bitcoin-git>
bitcoin/master 2196c51 Chun Kuan Lee: refactor: Use boost::scoped_connection in signal/slot, also prefer range-based loop instead of std::transform
< bitcoin-git>
bitcoin/master cb53b82 Chun Kuan Lee: scripted-diff: Replace boost::bind with std::bind...
< bitcoin-git>
[bitcoin] emilengler opened pull request #15061: [Trivial] Update license year range to 2019 (master...update-license-to-2019) https://github.com/bitcoin/bitcoin/pull/15061
< luke-jr>
either way, #bitcoin is the place for this
< meshcollider>
Oh no, here comes the flood of copyright year updates already
< luke-jr>
XD
< eugene9999>
Hello I asked this question before about fuzzing. Now I'm asking a slightly different question. This q is aimed at anybody well-versed in the fuzzing of bitcoin core and of fuzzing in general (@sipa, @gmaxwell, others?). So bitcoin core currently has a fuzzing harness where a switch is done based on the input to determine the message type to be fuzzed.
< eugene9999>
There was a PR (https://github.com/bitcoin/bitcoin/issues/11045) that sought to change this but never got merged. So the switching can "confuse" the fuzzer and gmaxwell said that by hashing the branch targets, the fuzzer may not take certain code paths. Is this because of the known "edge collision" in AFL?
< eugene9999>
Because in that case if you are fuzzing a target with lots of branches, wouldn't this problem make fuzzing a lot less efficient? I think that's what he was referencing, but I'm not entirely sure