Closes #3616. Document revoked key error when upgrading on Debian.

This commit is contained in:
Simon 2018-10-25 11:30:22 -07:00
parent 186874bb83
commit 30fc0d3c06
1 changed files with 23 additions and 0 deletions

View File

@ -4,3 +4,26 @@ release-notes at release time)
Notable changes
===============
Other issues
============
Revoked key error when upgrading on Debian
------------------------------------------
If you see the following error when updating to a new version of zcashd:
`The following signatures were invalid: REVKEYSIG AEFD26F966E279CD`
Remove the key marked as revoked:
`sudo apt-key del AEFD26F966E279CD`
Then retrieve the updated key:
`wget -qO - https://apt.z.cash/zcash.asc | sudo apt-key add -`
Then update the package lists:
`sudo apt-get update`
[Issue](https://github.com/zcash/zcash/issues/3612)