From 66a9fd8b72103aa4ad907faf8c277f4c5b970f52 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Wed, 15 Nov 2017 00:37:02 +0000 Subject: [PATCH] Change auto-senescence cycle to 16 weeks Closes #2686 --- doc/release-notes/release-notes-1.0.13-rc1.md | 1 + src/deprecation.h | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/release-notes/release-notes-1.0.13-rc1.md b/doc/release-notes/release-notes-1.0.13-rc1.md index 0f6056470..90e2306ad 100644 --- a/doc/release-notes/release-notes-1.0.13-rc1.md +++ b/doc/release-notes/release-notes-1.0.13-rc1.md @@ -50,6 +50,7 @@ Jack Grigg (36): Fix NPE in rpc_wallet_tests make-release.py: Versioning changes for 1.0.13-rc1. make-release.py: Updated manpages for 1.0.13-rc1. + Change auto-senescence cycle to 16 weeks Jason Davies (1): Replace "bitcoin" with "Zcash". diff --git a/src/deprecation.h b/src/deprecation.h index 3b0dc5a40..7ef715539 100644 --- a/src/deprecation.h +++ b/src/deprecation.h @@ -6,10 +6,10 @@ #define ZCASH_DEPRECATION_H // Deprecation policy: -// * Shut down 18 weeks' worth of blocks after the estimated release block height. +// * 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 = 219700; -static const int WEEKS_UNTIL_DEPRECATION = 18; +static const int WEEKS_UNTIL_DEPRECATION = 16; static const int DEPRECATION_HEIGHT = APPROX_RELEASE_HEIGHT + (WEEKS_UNTIL_DEPRECATION * 7 * 24 * 24); // Number of blocks before deprecation to warn users