From 8a825694be1bb5b1ac4e507bb95ff51daa2e8949 Mon Sep 17 00:00:00 2001 From: cryptorex Date: Tue, 24 Aug 2021 21:34:49 -0500 Subject: [PATCH] update dep height past halving; binaries will follow --- src/deprecation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deprecation.h b/src/deprecation.h index 9f49a5191..8c8be3eca 100644 --- a/src/deprecation.h +++ b/src/deprecation.h @@ -9,7 +9,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 = 775000; +static const int APPROX_RELEASE_HEIGHT = 925000; static const int WEEKS_UNTIL_DEPRECATION = 16; static const int DEPRECATION_HEIGHT = APPROX_RELEASE_HEIGHT + (WEEKS_UNTIL_DEPRECATION * 7 * 24 * 24);