4
0
mirror of https://github.com/QuasarApp/QuasarAppCoin.git synced 2025-05-04 05:29:37 +00:00

[verify-commits] Allow revoked keys to expire

Github-Pull: 
Rebased-From: d23be309c2c45f655d5f5405e031833fb4b6bbb4
This commit is contained in:
Matt Corallo 2017-10-20 16:35:16 -04:00 committed by MarcoFalke
parent adbc9d164a
commit 01223a0261

@ -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