Browse Source

Merge pull request #6172

a1ba077 Ignore getheaders requests when not synced. (Suhas Daftuar)
0.13
Wladimir J. van der Laan 9 years ago
parent
commit
88a7ead5de
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 3
      src/main.cpp

3
src/main.cpp

@ -4255,6 +4255,9 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, @@ -4255,6 +4255,9 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv,
LOCK(cs_main);
if (IsInitialBlockDownload())
return true;
CBlockIndex* pindex = NULL;
if (locator.IsNull())
{

Loading…
Cancel
Save