Dannenberg's v3ident needs to change
Hi Nick. On [#17668](https://trac.torproject.org/projects/tor/ticket/17668#comment:19) I mentioned that Dannenberg's v3ident has changed and this needs to be [updated in config.c](https://gitweb.torproject.org/tor.git/tree/src/or/config.c#n899). Trivial change, but this should be corrected soonish since due to it Dannenberg isn't taking part in the consensus... ``` from stem.descriptor import DocumentHandler from stem.descriptor.remote import DescriptorDownloader downloader = DescriptorDownloader() print("Consensus is signed by...\n") query = downloader.get_consensus(document_handler = DocumentHandler.BARE_DOCUMENT) for authority in query.run()[0].directory_authorities: print(' * %s with the v3ident of %s' % (authority.nickname, authority.v3ident)) ``` ``` % python scrap.py Consensus is signed by... * tor26 with the v3ident of 14C131DFC5C6F93646BE72FA1401C02A8DF2E8B4 * longclaw with the v3ident of 23D15D965BC35114467363C165C4F724B64B4F66 * maatuska with the v3ident of 49015F787433103580E3B66A1707A00E60F2D15B * urras with the v3ident of 80550987E1D626E3EBA5E5E75A458DE0626D088C * moria1 with the v3ident of D586D18309DED4CD6D57C18FDB97EFA96D330566 * dizum with the v3ident of E8A9C45EDE6D711294FADF8E7951F4DE6CA56B58 * gabelmoo with the v3ident of ED03BB616EB2F60BEC80151114BB25CEF515B226 * Faravahar with the v3ident of EFCBE720AB3A82B99F9E953CD5BF50F7EEFC7B97 ``` Again, trivial change. Andreas sent a signed email to dir-auth@ on November 18... ``` -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Hello. The new v3ident for dannenberg is '0232AF901C31A04EE9848595AF9BB7620D4C5B2E'. Best Andreas -----BEGIN PGP SIGNATURE----- Comment: Someone you trust is one of us. iQIcBAEBCAAGBQJWTL7WAAoJECXskyqUhQcxB6IP/3K61NqgLbczZPydJfdxiTFK OYbQn4j6Q4i3eIHBEyvqSgwEwMmlOe5cxJy/ean+mOyNmgqRUqJxIRQa/7ASmtqA o/exZI/MKfCltZoSRCk1t1fBYUAlyToI7DLiA0hGBmeVkat9wlkRQUQD3N8XklAh vJeix9CeIgbkpXxo6p7zmue9NZ2VtkCMJvHn0OmXzrzZIvE6X+uXyEhr/VDOzCnF hVenqfGzSOP66xiG+b5aXavPjMj/1siw5cItq0CBsz33hL0O1/a/IlrUDhIjcspK AfBBxmf4rZD0249UpvGoANebRaa+0PVfTqQXzntP4NqXSG6z0O/0bMLvj2Hf1xct CKhhvSaIUFFru902U81ADnXSgbEDmeDVA9pfi17fJbLoRxAdOElDY3nw8YHGw3+n FrmUKlZdw9hdEb9N6RXHfTN+NySjxXIz96Pirjt5WuaQ8GWeEislaWgLDuu+7nki kg6zkmk3qA+i2818aasdN1HSSkuNIYp8NRGf8o6y1HiUdcFnMK2ZybPJfrOT2mUO znLOPtarnqfdk7itOjMZnyR75URGDRFA0vNt7AWAuMhxrW8K1qz3q+wUS7lmBRCc GeKE/OS4NSehTp2CWm48mm8BlO2ydHLg0G84oSTQpZAbPsfOBhg+aDKzJsi44lU8 YRb8Ii9mpPrCAu3QTSIX =j8XS -----END PGP SIGNATURE----- ```
issue