Skip to content

Commit d23be30

Browse files
committed
[verify-commits] Allow revoked keys to expire
1 parent ff92fbf commit d23be30

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

contrib/verify-commits/gpg.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ for LINE in $(echo "$GPG_RES"); do
4646
REVSIG=true
4747
GOODREVSIG="[GNUPG:] GOODSIG ${LINE#* * *}"
4848
;;
49+
"[GNUPG:] EXPKEYSIG "*)
50+
[ "$BITCOIN_VERIFY_COMMITS_ALLOW_REVSIG" != 1 ] && exit 1
51+
REVSIG=true
52+
GOODREVSIG="[GNUPG:] GOODSIG ${LINE#* * *}"
53+
;;
4954
esac
5055
done
5156
if ! $VALID; then

0 commit comments

Comments
 (0)