Merge #9561: Wake message handling thread when we receive a new block

241d893 Wake message handling thread when we receive a new block (Matt Corallo)
f13914a Make WakeMessageHandler public (Matt Corallo)
This commit is contained in:
Pieter Wuille 2017-01-16 19:47:35 -08:00 committed by Alexander Block
parent 2adb35533f
commit 3bd155bd5c
2 changed files with 3 additions and 2 deletions

View File

@ -391,6 +391,8 @@ public:
CSipHasher GetDeterministicRandomizer(uint64_t id);
unsigned int GetReceiveFloodSize() const;
void WakeMessageHandler();
private:
struct ListenSocket {
SOCKET socket;
@ -410,8 +412,6 @@ private:
uint64_t CalculateKeyedNetGroup(const CAddress& ad);
void WakeMessageHandler();
CNode* FindNode(const CNetAddr& ip);
CNode* FindNode(const CSubNet& subNet);
CNode* FindNode(const std::string& addrName);

View File

@ -718,6 +718,7 @@ void PeerLogicValidation::UpdatedBlockTip(const CBlockIndex *pindexNew, const CB
}
}
});
connman->WakeMessageHandler();
}
nTimeBestReceived = GetTime();