Revert "Require startingheight >= 230000"

This reverts commit e4330f9be4.
This commit is contained in:
Luke Dashjr 2013-04-15 02:03:25 +00:00
parent e4330f9be4
commit 89fb42ed4c
1 changed files with 2 additions and 6 deletions

View File

@ -7,7 +7,7 @@
#include "uint256.h"
#define BITCOIN_SEED_NONCE 0x0539a019ca550825
#define REQUIRE_HEIGHT 230000
#define REQUIRE_HEIGHT 140700
#define MIN_VERSION 40000
using namespace std;
@ -109,11 +109,7 @@ class CNode {
vRecv >> strSubVer;
if (nVersion >= 209 && !vRecv.empty())
vRecv >> nStartingHeight;
if (nStartingHeight && nStartingHeight < REQUIRE_HEIGHT) {
// give them a day to catch up
ban = 86400;
return true;
}
if (nVersion >= 209) {
BeginMessage("verack");
EndMessage();