summaryrefslogtreecommitdiff
path: root/src/json/json_helper.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-11-06 00:03:08 +0100
committerChristian Grothoff <christian@grothoff.org>2017-11-06 00:03:08 +0100
commitc5f9c0ca8872b8f2b4d23f3b53d2046e6fd53ef9 (patch)
tree21d3aa0b91178b8608039f8a91c1546f9cab9bd2 /src/json/json_helper.c
parent2ddd4cb3306e8ce7f80118f58716a2720b00d9fa (diff)
downloadexchange-c5f9c0ca8872b8f2b4d23f3b53d2046e6fd53ef9.tar.gz
exchange-c5f9c0ca8872b8f2b4d23f3b53d2046e6fd53ef9.tar.bz2
exchange-c5f9c0ca8872b8f2b4d23f3b53d2046e6fd53ef9.zip
work on making auditor reports nicer (#4962)
Diffstat (limited to 'src/json/json_helper.c')
-rw-r--r--src/json/json_helper.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/json/json_helper.c b/src/json/json_helper.c
index fec637bd..4f966c66 100644
--- a/src/json/json_helper.c
+++ b/src/json/json_helper.c
@@ -57,6 +57,24 @@ TALER_JSON_from_amount (const struct TALER_Amount *amount)
}
+
+/**
+ * Convert a TALER amount to a JSON object.
+ *
+ * @param amount the amount
+ * @return a json object describing the amount
+ */
+json_t *
+TALER_JSON_from_amount_nbo (const struct TALER_AmountNBO *amount)
+{
+ struct TALER_Amount a;
+
+ TALER_amount_ntoh (&a,
+ amount);
+ return TALER_JSON_from_amount (&a);
+}
+
+
/**
* Parse given JSON object to Amount
*