summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_responses.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-08-01 15:36:38 +0200
committerChristian Grothoff <christian@grothoff.org>2021-08-01 15:36:38 +0200
commitd45774ccecaed85f45c2eebe641e2d2f8c8673af (patch)
tree7c15d023eed2b7f47c0496ddc982d881cb398d6d /src/exchange/taler-exchange-httpd_responses.c
parentf1f0bf637bcfd7d10d3acdb328d016ccf2cc4ffb (diff)
downloadexchange-d45774ccecaed85f45c2eebe641e2d2f8c8673af.tar.gz
exchange-d45774ccecaed85f45c2eebe641e2d2f8c8673af.tar.bz2
exchange-d45774ccecaed85f45c2eebe641e2d2f8c8673af.zip
introduce TALER_JSON_pack_ec
Diffstat (limited to 'src/exchange/taler-exchange-httpd_responses.c')
-rw-r--r--src/exchange/taler-exchange-httpd_responses.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/exchange/taler-exchange-httpd_responses.c b/src/exchange/taler-exchange-httpd_responses.c
index e05b537ec..72d1ddb75 100644
--- a/src/exchange/taler-exchange-httpd_responses.c
+++ b/src/exchange/taler-exchange-httpd_responses.c
@@ -450,8 +450,7 @@ TEH_RESPONSE_reply_unknown_denom_pub_hash (
return TALER_MHD_REPLY_JSON_PACK (
connection,
MHD_HTTP_NOT_FOUND,
- GNUNET_JSON_pack_uint64 ("code",
- TALER_EC_EXCHANGE_GENERIC_DENOMINATION_KEY_UNKNOWN),
+ TALER_JSON_pack_ec (TALER_EC_EXCHANGE_GENERIC_DENOMINATION_KEY_UNKNOWN),
GNUNET_JSON_pack_time_abs ("timestamp",
now),
GNUNET_JSON_pack_data_auto ("exchange_pub",
@@ -501,8 +500,7 @@ TEH_RESPONSE_reply_expired_denom_pub_hash (
return TALER_MHD_REPLY_JSON_PACK (
connection,
MHD_HTTP_GONE,
- GNUNET_JSON_pack_uint64 ("code",
- ec),
+ TALER_JSON_pack_ec (ec),
GNUNET_JSON_pack_string ("oper",
oper),
GNUNET_JSON_pack_time_abs ("timestamp",
@@ -550,10 +548,7 @@ TEH_RESPONSE_reply_coin_insufficient_funds (
return TALER_MHD_REPLY_JSON_PACK (
connection,
MHD_HTTP_CONFLICT,
- GNUNET_JSON_pack_string ("hint",
- TALER_ErrorCode_get_hint (ec)),
- GNUNET_JSON_pack_uint64 ("code",
- ec),
+ TALER_JSON_pack_ec (ec),
GNUNET_JSON_pack_array_steal ("history",
history));
}