added missing currency in ser/deser, see #6744

This commit is contained in:
Sebastian 2021-02-15 17:03:44 -03:00
parent 471fc11663
commit c1a58ef343
No known key found for this signature in database
GPG Key ID: BE4FF68352439FC1
2 changed files with 11 additions and 2 deletions

View File

@ -252,6 +252,11 @@ struct TALER_EXCHANGE_Keys
*/
char *version;
/**
* Supported currency of the exchange.
*/
char *currency;
/**
* How long after a reserve went idle will the exchange close it?
* This is an approximate number, not cryptographically signed by

View File

@ -690,6 +690,8 @@ decode_keys_json (const json_t *resp_obj,
&key_data->list_issue_date),
TALER_JSON_spec_relative_time ("reserve_closing_delay",
&key_data->reserve_closing_delay),
GNUNET_JSON_spec_string ("currency",
&key_data->currency),
GNUNET_JSON_spec_end ()
};
@ -1743,11 +1745,13 @@ TALER_EXCHANGE_serialize_data (struct TALER_EXCHANGE_Handle *exchange)
return NULL;
}
}
keys = json_pack ("{s:s, s:o, s:o, s:o, s:o"
keys = json_pack ("{s:s, s:s, s:o, s:o, s:o, s:o"
",s:o, s:o}",
/* 1 */
"version",
kd->version,
"currency",
kd->currency,
"master_public_key",
GNUNET_JSON_from_data_auto (&kd->master_pub),
"reserve_closing_delay",
@ -1756,7 +1760,7 @@ TALER_EXCHANGE_serialize_data (struct TALER_EXCHANGE_Handle *exchange)
GNUNET_JSON_from_time_abs (kd->list_issue_date),
"signkeys",
signkeys,
/* #6 */
/* #7 */
"denoms",
denoms,
"auditors",