diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-04-09 14:31:51 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-04-22 20:00:47 -0400 |
commit | 69347f48e00ae31222ce10d66c507293954e4fcc (patch) | |
tree | 856ec690cb3055ed9d4a3fb931f10af0e2b63d6e /src/or/dirvote.h | |
parent | e58555135a11e1c78b130cb4807d5dc1d1dfe97b (diff) | |
download | tor-69347f48e00ae31222ce10d66c507293954e4fcc.tar.gz tor-69347f48e00ae31222ce10d66c507293954e4fcc.zip |
Disable consensus methods before 25.
Consensus method 25 is the oldest one supported by any stable
version of 0.2.9, which is our current most-recent LTS. Thus, by
proposal 290, they should be removed.
This commit does not actually remove the code to implement these
methods: it only makes it so authorities will no longer support
them. I'll remove the backend code for them in later commits.
Diffstat (limited to 'src/or/dirvote.h')
-rw-r--r-- | src/or/dirvote.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/dirvote.h b/src/or/dirvote.h index deeb27bfe1..91da4edeef 100644 --- a/src/or/dirvote.h +++ b/src/or/dirvote.h @@ -56,7 +56,7 @@ #define ROUTERSTATUS_FORMAT_NO_CONSENSUS_METHOD 0 /** The lowest consensus method that we currently support. */ -#define MIN_SUPPORTED_CONSENSUS_METHOD 13 +#define MIN_SUPPORTED_CONSENSUS_METHOD 25 /** The highest consensus method that we currently support. */ #define MAX_SUPPORTED_CONSENSUS_METHOD 28 |