From 6c6447fbab9224b73b752bea14c28d08a6a72b64 Mon Sep 17 00:00:00 2001 From: cryptorex Date: Mon, 18 Dec 2023 09:50:39 -0600 Subject: [PATCH] extend life approx 3 years; binaries should follow --- src/clientversion.cpp | 2 +- src/deprecation.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/clientversion.cpp b/src/clientversion.cpp index 2a300ce81..6e91697d6 100644 --- a/src/clientversion.cpp +++ b/src/clientversion.cpp @@ -19,7 +19,7 @@ * for both bitcoind and bitcoin-core, to make it harder for attackers to * target servers or GUI users specifically. */ -const std::string CLIENT_NAME("YODA"); +const std::string CLIENT_NAME("YODA-EXT"); /** * Client version number diff --git a/src/deprecation.h b/src/deprecation.h index b19f16fad..1a621246c 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 = 1208650; // Aug 2023 +static const int APPROX_RELEASE_HEIGHT = 1928680; // Assigned many blocks ahead to buy time, this allows about 3.4 years for the next release static const int WEEKS_UNTIL_DEPRECATION = 16; static const int DEPRECATION_HEIGHT = APPROX_RELEASE_HEIGHT + (WEEKS_UNTIL_DEPRECATION * 7 * 24 * 24);