Skip to content
Snippets Groups Projects
Commit 9e6064ec authored by Roger Dingledine's avatar Roger Dingledine Committed by David Goulet
Browse files

dir auths write consensuses to disk after creation

This step happens after we make each consensus flavor, and before we
worry about sigs or anything. That way if Tor crashes, or if we fail to
get enough sigs, we still have a chance to know what consensus we wanted
to make.
parent 0b00f79c
No related branches found
No related tags found
No related merge requests found
......@@ -3462,6 +3462,15 @@ dirvote_compute_consensuses(void)
pending[flav].body = consensus_body;
pending[flav].consensus = consensus;
n_generated++;
/* Write it out to disk too, for dir auth debugging purposes */
{
char *filename;
tor_asprintf(&filename, "my-consensus-%s", flavor_name);
write_str_to_file(get_datadir_fname(filename), consensus_body, 0);
tor_free(filename);
}
consensus_body = NULL;
consensus = NULL;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment