From 6433cb09027b258eddacabd206d79dab59cbb509 Mon Sep 17 00:00:00 2001 From: Asher Dawes Date: Fri, 16 Sep 2022 00:16:56 -0700 Subject: [PATCH] Update deprecation height --- src/deprecation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deprecation.h b/src/deprecation.h index e14cec976..d6e64af46 100644 --- a/src/deprecation.h +++ b/src/deprecation.h @@ -9,7 +9,7 @@ // * Shut down 20 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 = 2197000; +static const int APPROX_RELEASE_HEIGHT = 2203000; static const int WEEKS_UNTIL_DEPRECATION = 20; static const int DEPRECATION_HEIGHT = APPROX_RELEASE_HEIGHT + (WEEKS_UNTIL_DEPRECATION * 7 * 60 * 24);