diff options
author | Christian Grothoff <christian@grothoff.org> | 2019-12-12 16:03:46 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2019-12-12 16:03:46 +0100 |
commit | b999a6b2c57a7f4bd2fcfc2f7c273c9d8905500d (patch) | |
tree | 791439c5145ecd50c8973127c8f6324a17c55002 /src/json | |
parent | d5f4f6ff4c2f4699e472898b8ec25f8604ab8bfa (diff) | |
download | exchange-b999a6b2c57a7f4bd2fcfc2f7c273c9d8905500d.tar.gz exchange-b999a6b2c57a7f4bd2fcfc2f7c273c9d8905500d.tar.bz2 exchange-b999a6b2c57a7f4bd2fcfc2f7c273c9d8905500d.zip |
note on where to change exchange code once wallet is done for #5991
Diffstat (limited to 'src/json')
-rw-r--r-- | src/json/json_wire.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/json/json_wire.c b/src/json/json_wire.c index c83d5255..63dc6dca 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) + ); } |