From c290f8f263c9259da390e448ec0e707a338bd249 Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 24 May 2018 23:09:02 -0700 Subject: [PATCH] Update release height to block 332000. --- src/deprecation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deprecation.h b/src/deprecation.h index ec023946d..8835e7ccf 100644 --- a/src/deprecation.h +++ b/src/deprecation.h @@ -8,7 +8,7 @@ // 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 = 329250; +static const int APPROX_RELEASE_HEIGHT = 332000; static const int WEEKS_UNTIL_DEPRECATION = 16; static const int DEPRECATION_HEIGHT = APPROX_RELEASE_HEIGHT + (WEEKS_UNTIL_DEPRECATION * 7 * 24 * 24);