Make authorities start accepting (and advertising their acceptance of) consensus method 2. If all goes well, we'll have a working Unnamed flag. Otherwise, we'll have a fun backtrace.
svn:r12113
tor_snprintf(status, len,
"network-status-version 3\n"
"vote-status vote\n"
- "consensus-methods 1\n"
+ "consensus-methods 1 2\n"
"published %s\n"
"valid-after %s\n"
"fresh-until %s\n"
static int
consensus_method_is_supported(int method)
{
- return (method == 1);
+ return (method >= 1) && (method <= 2);
}
/** Given a list of vote networkstatus_vote_t in <b>votes</b>, our public