diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2012-04-02 11:22:11 -0700 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2012-04-02 11:22:11 -0700 |
commit | 85ea8b4f4380dac803d43cd0b7829b107cc09e38 (patch) | |
tree | 1174947cc5c9c5ca75bbe10b1b91796b78dffa56 | |
parent | 91c5132ab5274396d79a0a6931efe6404dc2d2be (diff) | |
parent | ecf07f2729ebc0a8af969de9c8e936b72dd3fde8 (diff) |
Merge pull request #951 from TheBlueMatt/headerslimit
Limit getheaders to a hard 2000.
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index d795ca1df9..ca75b9fdbf 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2504,8 +2504,8 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) } vector<CBlock> vHeaders; - int nLimit = 2000 + locator.GetDistanceBack(); - printf("getheaders %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit); + int nLimit = 2000; + printf("getheaders %d to %s\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str()); for (; pindex; pindex = pindex->pnext) { vHeaders.push_back(pindex->GetBlockHeader()); |