< bitcoin-git>
[bitcoin] MarcoFalke reopened pull request #7522: Bugfix: Only use git for build info if the repository is actually the right one (master...bugfix_gitdir) https://github.com/bitcoin/bitcoin/pull/7522
< morcos>
BlueMatt: The issue of a block request coming in before you've updated the tip is what's causing the Travis failure in 9447, it's not clear to me why it happens reliably there and not in 9375 as it seems like it should in 9375
< morcos>
in the sendheaders.py test, you announce a reorg and then FindNextBlocksToDownload kicks in when you've announced enough blocks on the new chain to match nChainWork of your tip
< morcos>
it turns out that the block requests generated by FindNextBlocksToDownload can actually arrive before tip is updated in the peer announcing the reorg.. it might be as simple as checking the cached block in ProcessGetData as well..