Force one week max offset for testNet.
authorCryptoManiac <balthazar@yandex.ru>
Tue, 23 Feb 2016 20:20:39 +0000 (23:20 +0300)
committerCryptoManiac <balthazar@yandex.ru>
Tue, 23 Feb 2016 20:20:39 +0000 (23:20 +0300)
src/main.cpp

index 54b852d..f8af9df 100644 (file)
@@ -2348,8 +2348,8 @@ bool CBlock::AcceptBlock()
 
     int64_t nMedianTimePast = pindexPrev->GetMedianTimePast();
     int nMaxOffset = 12 * 3600; // 12 hours
-    if (pindexPrev->nTime < 1450569600)
-        nMaxOffset = 7 * 86400; // One week until 20 Dec, 2015
+    if (fTestNet || pindexPrev->nTime < 1450569600)
+        nMaxOffset = 7 * 86400; // One week (permanently on testNet or until 20 Dec, 2015 on mainNet)
 
     // Check timestamp against prev
     if (GetBlockTime() <= nMedianTimePast || FutureDrift(GetBlockTime()) < pindexPrev->GetBlockTime())