summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-08-08 21:19:54 +0200
committerChristian Grothoff <christian@grothoff.org>2015-08-08 21:19:54 +0200
commit493f541c201addad50a1e35a44d3548f0731189a (patch)
treebfcdfa26daf48ba32702e6e5d55a730b2210c5e4
parenteec485b322e9da3152df5455e4b108a3229ea6dc (diff)
downloadexchange-493f541c201addad50a1e35a44d3548f0731189a.tar.gz
exchange-493f541c201addad50a1e35a44d3548f0731189a.tar.bz2
exchange-493f541c201addad50a1e35a44d3548f0731189a.zip
use _ instead of - for consistency
-rw-r--r--src/mint/taler-mint-httpd_responses.c20
1 files changed, 13 insertions, 7 deletions
diff --git a/src/mint/taler-mint-httpd_responses.c b/src/mint/taler-mint-httpd_responses.c
index 57b233e73..48c0a748d 100644
--- a/src/mint/taler-mint-httpd_responses.c
+++ b/src/mint/taler-mint-httpd_responses.c
@@ -713,13 +713,19 @@ TMH_RESPONSE_reply_refresh_melt_insufficient_funds (struct MHD_Connection *conne
return TMH_RESPONSE_reply_json_pack (connection,
MHD_HTTP_NOT_FOUND,
"{s:s, s:o, s:o, s:o, s:o, s:o}",
- "error", "insufficient funds",
- "coin-pub", TALER_json_from_data (coin_pub,
- sizeof (struct TALER_CoinSpendPublicKeyP)),
- "original-value", TALER_json_from_amount (&coin_value),
- "residual-value", TALER_json_from_amount (&residual),
- "requested-value", TALER_json_from_amount (&requested),
- "history", history);
+ "error",
+ "insufficient funds",
+ "coin_pub",
+ TALER_json_from_data (coin_pub,
+ sizeof (struct TALER_CoinSpendPublicKeyP)),
+ "original_value",
+ TALER_json_from_amount (&coin_value),
+ "residual_value",
+ TALER_json_from_amount (&residual),
+ "requested_value",
+ TALER_json_from_amount (&requested),
+ "history",
+ history);
}