Skip to content

Commit

Permalink
missed lockin constant
Browse files Browse the repository at this point in the history
  • Loading branch information
vinced committed May 26, 2011
1 parent 0fa7d43 commit 13c6e08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1764,7 +1764,7 @@ bool CBlock::AcceptBlock()
if (hashBestChain == hash)
CRITICAL_BLOCK(cs_vNodes)
foreach(CNode* pnode, vNodes)
if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : 118000))
if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : hooks->LockinHeight()))
pnode->PushInventory(CInv(MSG_BLOCK, hash));

return true;
Expand Down
2 changes: 1 addition & 1 deletion serialize.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class CDataStream;
class CAutoFile;
static const unsigned int MAX_SIZE = 0x02000000;

static const int VERSION = 32200;
static const int VERSION = 32150;
static const char* pszSubVer = "";
static const bool VERSION_IS_BETA = true;

Expand Down

0 comments on commit 13c6e08

Please sign in to comment.