summaryrefslogtreecommitdiff
path: root/src/json
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-04-21 00:55:38 +0200
committerChristian Grothoff <christian@grothoff.org>2020-04-21 00:55:38 +0200
commit8148c1e8af096bf41bf2eef0889df3a972c7c6db (patch)
tree649affe1a48f0509d24a66044ab774758598a1c3 /src/json
parent638d97c348343819343dc0b5b831b61c3a76b52c (diff)
downloadexchange-8148c1e8af096bf41bf2eef0889df3a972c7c6db.tar.gz
exchange-8148c1e8af096bf41bf2eef0889df3a972c7c6db.tar.bz2
exchange-8148c1e8af096bf41bf2eef0889df3a972c7c6db.zip
fix #6186
Diffstat (limited to 'src/json')
-rw-r--r--src/json/json_wire.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/json/json_wire.c b/src/json/json_wire.c
index f05808194..837263c1e 100644
--- a/src/json/json_wire.c
+++ b/src/json/json_wire.c
@@ -399,7 +399,9 @@ TALER_JSON_merchant_wire_signature_hash (const json_t *wire_s,
struct GNUNET_HashCode *hc)
{
const char *payto_uri;
- const char *salt;
+ const char *salt; /* Current merchant backend will always make the salt
+ a `struct GNUNET_HashCode`, but *we* do not insist
+ on that. */
struct GNUNET_JSON_Specification spec[] = {
GNUNET_JSON_spec_string ("payto_uri", &payto_uri),
GNUNET_JSON_spec_string ("salt", &salt),