note on where to change exchange code once wallet is done for #5991

This commit is contained in:
Christian Grothoff 2019-12-12 16:03:46 +01:00
parent d5f4f6ff4c
commit b999a6b2c5
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC

View File

@ -157,8 +157,10 @@ TALER_JSON_exchange_wire_signature_make (const char *payto_url,
&master_sig); &master_sig);
return json_pack ("{s:s, s:o, s:o}", return json_pack ("{s:s, s:o, s:o}",
"url", payto_url, "url", payto_url,
"master_sig", GNUNET_JSON_from_data_auto (&master_sig), "master_sig", GNUNET_JSON_from_data_auto (&master_sig)
"master_pub", GNUNET_JSON_from_data_auto (&master_pub)); /* FIXME: #5991: remove this (and s:o above!) once wallet is updated */
,"master_pub", GNUNET_JSON_from_data_auto (&master_pub)
);
} }