]> Git Repo - VerusCoin.git/blobdiff - src/deprecation.h
merge dev; tests broken, need to use wallet for block rewards
[VerusCoin.git] / src / deprecation.h
index f109384a91b305e94f276dc0b116ff97247b5368..78ed8ebdac742249ce54762d481428b6bc26c9d5 100644 (file)
@@ -5,13 +5,15 @@
 #ifndef ZCASH_DEPRECATION_H
 #define ZCASH_DEPRECATION_H
 
-// Deprecation policy is 4th third-Tuesday after a release
-static const int APPROX_RELEASE_HEIGHT = 115000;
-static const int WEEKS_UNTIL_DEPRECATION = 18;
+// Deprecation policy:
+// * Shut down 16 weeks' worth of blocks after the estimated release block height.
+// * A warning is shown during the 2 weeks' worth of blocks prior to shut down.
+static const int APPROX_RELEASE_HEIGHT = 800000;
+static const int WEEKS_UNTIL_DEPRECATION = 52;
 static const int DEPRECATION_HEIGHT = APPROX_RELEASE_HEIGHT + (WEEKS_UNTIL_DEPRECATION * 7 * 24 * 24);
 
 // Number of blocks before deprecation to warn users
-static const int DEPRECATION_WARN_LIMIT = 14 * 24 * 24; // 2 weeks
+static const int DEPRECATION_WARN_LIMIT = 60 * 24 * 60; // 2 months
 
 /**
  * Checks whether the node is deprecated based on the current block height, and
This page took 0.023702 seconds and 4 git commands to generate.