summaryrefslogtreecommitdiff
path: root/src/exchange
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-10-27 13:23:14 +0200
committerChristian Grothoff <christian@grothoff.org>2021-10-27 13:23:14 +0200
commitb148a5a81a4b6e96daba8c9fbb0e53afff8dcdca (patch)
treed20f84dcdade08fb44eab547019dd60a1f8265ee /src/exchange
parent3900531e0d1a6644bebe19e451fef907100d77b6 (diff)
downloadexchange-b148a5a81a4b6e96daba8c9fbb0e53afff8dcdca.tar.gz
exchange-b148a5a81a4b6e96daba8c9fbb0e53afff8dcdca.tar.bz2
exchange-b148a5a81a4b6e96daba8c9fbb0e53afff8dcdca.zip
rename fest
Diffstat (limited to 'src/exchange')
-rw-r--r--src/exchange/taler-exchange-httpd_keys.c8
-rw-r--r--src/exchange/taler-exchange-httpd_link.c8
-rw-r--r--src/exchange/taler-exchange-httpd_refreshes_reveal.c4
-rw-r--r--src/exchange/taler-exchange-httpd_withdraw.c4
4 files changed, 12 insertions, 12 deletions
diff --git a/src/exchange/taler-exchange-httpd_keys.c b/src/exchange/taler-exchange-httpd_keys.c
index 2bbdbb34e..e18295c65 100644
--- a/src/exchange/taler-exchange-httpd_keys.c
+++ b/src/exchange/taler-exchange-httpd_keys.c
@@ -1639,8 +1639,8 @@ finish_keys_response (struct TEH_KeyStateHandle *ksh)
dk->meta.expire_deposit),
GNUNET_JSON_pack_time_abs ("stamp_expire_legal",
dk->meta.expire_legal),
- TALER_JSON_pack_denomination_public_key ("denom_pub",
- &dk->denom_pub),
+ TALER_JSON_pack_denom_pub ("denom_pub",
+ &dk->denom_pub),
TALER_JSON_pack_amount ("value",
&dk->meta.value),
TALER_JSON_pack_amount ("fee_withdraw",
@@ -2430,8 +2430,8 @@ add_future_denomkey_cb (void *cls,
meta.expire_deposit),
GNUNET_JSON_pack_time_abs ("stamp_expire_legal",
meta.expire_legal),
- TALER_JSON_pack_denomination_public_key ("denom_pub",
- &hd->denom_pub),
+ TALER_JSON_pack_denom_pub ("denom_pub",
+ &hd->denom_pub),
TALER_JSON_pack_amount ("fee_withdraw",
&meta.fee_withdraw),
TALER_JSON_pack_amount ("fee_deposit",
diff --git a/src/exchange/taler-exchange-httpd_link.c b/src/exchange/taler-exchange-httpd_link.c
index cdad01ab9..19a03595f 100644
--- a/src/exchange/taler-exchange-httpd_link.c
+++ b/src/exchange/taler-exchange-httpd_link.c
@@ -82,10 +82,10 @@ handle_link_data (void *cls,
json_t *obj;
obj = GNUNET_JSON_PACK (
- TALER_JSON_pack_denomination_public_key ("denom_pub",
- &pos->denom_pub),
- TALER_JSON_pack_denomination_signature ("ev_sig",
- &pos->ev_sig),
+ TALER_JSON_pack_denom_pub ("denom_pub",
+ &pos->denom_pub),
+ TALER_JSON_pack_denom_sig ("ev_sig",
+ &pos->ev_sig),
GNUNET_JSON_pack_data_auto ("link_sig",
&pos->orig_coin_link_sig));
if ( (NULL == obj) ||
diff --git a/src/exchange/taler-exchange-httpd_refreshes_reveal.c b/src/exchange/taler-exchange-httpd_refreshes_reveal.c
index 7c891bf32..925f7a094 100644
--- a/src/exchange/taler-exchange-httpd_refreshes_reveal.c
+++ b/src/exchange/taler-exchange-httpd_refreshes_reveal.c
@@ -68,8 +68,8 @@ reply_refreshes_reveal_success (struct MHD_Connection *connection,
json_t *obj;
obj = GNUNET_JSON_PACK (
- TALER_JSON_pack_denomination_signature ("ev_sig",
- &sigs[freshcoin_index]));
+ TALER_JSON_pack_denom_sig ("ev_sig",
+ &sigs[freshcoin_index]));
GNUNET_assert (0 ==
json_array_append_new (list,
obj));
diff --git a/src/exchange/taler-exchange-httpd_withdraw.c b/src/exchange/taler-exchange-httpd_withdraw.c
index e5ba2b2e3..d9c3b9e94 100644
--- a/src/exchange/taler-exchange-httpd_withdraw.c
+++ b/src/exchange/taler-exchange-httpd_withdraw.c
@@ -607,8 +607,8 @@ TEH_handler_withdraw (struct TEH_RequestContext *rc,
ret = TALER_MHD_REPLY_JSON_PACK (
rc->connection,
MHD_HTTP_OK,
- TALER_JSON_pack_denomination_signature ("ev_sig",
- &wc.collectable.sig));
+ TALER_JSON_pack_denom_sig ("ev_sig",
+ &wc.collectable.sig));
TALER_denom_sig_free (&wc.collectable.sig);
return ret;
}