summaryrefslogtreecommitdiff
path: root/src/util/test_helper_eddsa.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-11-25 09:54:23 +0100
committerChristian Grothoff <christian@grothoff.org>2021-11-25 09:54:23 +0100
commit414237c335dd0f960ee07de92ff20c92b5c7afd5 (patch)
tree7f085f13c340f0a0e3c606eaf9493d4c0d807ebe /src/util/test_helper_eddsa.c
parentbab213e7945b03bf595bf7c36ef61421cf202ff3 (diff)
downloadexchange-414237c335dd0f960ee07de92ff20c92b5c7afd5.tar.gz
exchange-414237c335dd0f960ee07de92ff20c92b5c7afd5.tar.bz2
exchange-414237c335dd0f960ee07de92ff20c92b5c7afd5.zip
handle double-revoke gracefully
Diffstat (limited to 'src/util/test_helper_eddsa.c')
-rw-r--r--src/util/test_helper_eddsa.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/util/test_helper_eddsa.c b/src/util/test_helper_eddsa.c
index 97800e2ca..d0d3d433d 100644
--- a/src/util/test_helper_eddsa.c
+++ b/src/util/test_helper_eddsa.c
@@ -197,8 +197,9 @@ test_revocation (struct TALER_CRYPTO_ExchangeSignHelper *esh)
}
keys[j].revoked = true;
fprintf (stderr,
- "Revoking key %s ...",
- TALER_B2S (&keys[j].exchange_pub));
+ "Revoking key %s (%u) ...",
+ TALER_B2S (&keys[j].exchange_pub),
+ j);
TALER_CRYPTO_helper_esign_revoke (esh,
&keys[j].exchange_pub);
for (unsigned int k = 0; k<1000; k++)