From 5edc59bfd185a894ae2b72984e87b480531963a4 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 5 Oct 2023 08:11:41 -0400 Subject: [PATCH] Increment MIN_SUPPORTED_CONSENSUS_METHOD to 32. Per proposal 290, all earlier consensus methods are obsolete, since 32 is the highest method supported by 0.4.7.7. --- src/feature/dirauth/dirvote.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/feature/dirauth/dirvote.h b/src/feature/dirauth/dirvote.h index 6d02ef3635..9faea988d0 100644 --- a/src/feature/dirauth/dirvote.h +++ b/src/feature/dirauth/dirvote.h @@ -50,7 +50,7 @@ ((MIN_VOTE_SECONDS_TESTING)+(MIN_DIST_SECONDS_TESTING)+1) /** The lowest consensus method that we currently support. */ -#define MIN_SUPPORTED_CONSENSUS_METHOD 28 +#define MIN_SUPPORTED_CONSENSUS_METHOD 32 /** The highest consensus method that we currently support. */ #define MAX_SUPPORTED_CONSENSUS_METHOD 34