summaryrefslogtreecommitdiff
path: root/src/json/json_wire.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/json/json_wire.c')
-rw-r--r--src/json/json_wire.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/json/json_wire.c b/src/json/json_wire.c
index c83d52553..63dc6dca6 100644
--- a/src/json/json_wire.c
+++ b/src/json/json_wire.c
@@ -157,8 +157,10 @@ TALER_JSON_exchange_wire_signature_make (const char *payto_url,
&master_sig);
return json_pack ("{s:s, s:o, s:o}",
"url", payto_url,
- "master_sig", GNUNET_JSON_from_data_auto (&master_sig),
- "master_pub", GNUNET_JSON_from_data_auto (&master_pub));
+ "master_sig", GNUNET_JSON_from_data_auto (&master_sig)
+ /* FIXME: #5991: remove this (and s:o above!) once wallet is updated */
+ ,"master_pub", GNUNET_JSON_from_data_auto (&master_pub)
+ );
}