PPCoin: Change checkpoint intervals to smaller intervals
authorSunny King <sunnyking9999@gmail.com>
Mon, 21 May 2012 00:28:47 +0000 (01:28 +0100)
committerSunny King <sunnyking9999@gmail.com>
Mon, 21 May 2012 00:28:47 +0000 (01:28 +0100)
src/checkpoints.h

index f9037a2..c984798 100644 (file)
@@ -8,10 +8,10 @@
 #include <map>
 #include "util.h"
 
-// ppcoin: auto checkpoint min at 1 day; max at 5 days
-#define AUTO_CHECKPOINT_MIN_SPAN   (60 * 60 * 24)
-#define AUTO_CHECKPOINT_MAX_SPAN   (60 * 60 * 24 * 5)
-#define AUTO_CHECKPOINT_TRUST_SPAN (60 * 60 * 24 * 7)
+// ppcoin: auto checkpoint min at 8 hours; max at 16 hours
+#define AUTO_CHECKPOINT_MIN_SPAN   (60 * 60 * 8)
+#define AUTO_CHECKPOINT_MAX_SPAN   (60 * 60 * 16)
+#define AUTO_CHECKPOINT_TRUST_SPAN (60 * 60 * 24)
 
 class uint256;
 class CBlockIndex;