summaryrefslogtreecommitdiff
path: root/src/exchange
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-10-31 18:12:54 +0100
committerChristian Grothoff <christian@grothoff.org>2021-10-31 18:12:54 +0100
commit783d07b4765aabee529f889b55f4fb5a27efaa44 (patch)
tree7d83bb5ae4035f304e476d0eeab0d261ee2f1980 /src/exchange
parentb1197c16a4f1034cd4d46902f6a20327ac7a52c4 (diff)
downloadexchange-783d07b4765aabee529f889b55f4fb5a27efaa44.tar.gz
exchange-783d07b4765aabee529f889b55f4fb5a27efaa44.tar.bz2
exchange-783d07b4765aabee529f889b55f4fb5a27efaa44.zip
consistently distinguish blinded/unblinded denomination sigs
Diffstat (limited to 'src/exchange')
-rw-r--r--src/exchange/taler-exchange-httpd_link.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exchange/taler-exchange-httpd_link.c b/src/exchange/taler-exchange-httpd_link.c
index 19a03595f..3393e0683 100644
--- a/src/exchange/taler-exchange-httpd_link.c
+++ b/src/exchange/taler-exchange-httpd_link.c
@@ -84,8 +84,8 @@ handle_link_data (void *cls,
obj = GNUNET_JSON_PACK (
TALER_JSON_pack_denom_pub ("denom_pub",
&pos->denom_pub),
- TALER_JSON_pack_denom_sig ("ev_sig",
- &pos->ev_sig),
+ TALER_JSON_pack_blinded_denom_sig ("ev_sig",
+ &pos->ev_sig),
GNUNET_JSON_pack_data_auto ("link_sig",
&pos->orig_coin_link_sig));
if ( (NULL == obj) ||