mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 03:47:29 -03:00
[verify-commits] Allow revoked keys to expire
This commit is contained in:
parent
ff92fbf247
commit
d23be309c2
1 changed files with 5 additions and 0 deletions
|
@ -46,6 +46,11 @@ for LINE in $(echo "$GPG_RES"); do
|
|||
REVSIG=true
|
||||
GOODREVSIG="[GNUPG:] GOODSIG ${LINE#* * *}"
|
||||
;;
|
||||
"[GNUPG:] EXPKEYSIG "*)
|
||||
[ "$BITCOIN_VERIFY_COMMITS_ALLOW_REVSIG" != 1 ] && exit 1
|
||||
REVSIG=true
|
||||
GOODREVSIG="[GNUPG:] GOODSIG ${LINE#* * *}"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
if ! $VALID; then
|
||||
|
|
Loading…
Reference in a new issue