diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-12-22 18:13:46 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-12-22 18:13:46 +0100 |
commit | a644355c44ec08c6e0691c8e308bba69619fdccd (patch) | |
tree | b9b2deb85999a803483805076cf7dcd27758a0f6 /src/auditor | |
parent | f17d886753fae3148afbfd3e267da30548f71ad4 (diff) |
address FIXME: pass session when iterating over denominations
Diffstat (limited to 'src/auditor')
-rw-r--r-- | src/auditor/report-lib.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/auditor/report-lib.c b/src/auditor/report-lib.c index 19a8ed7dc..e7d20dc53 100644 --- a/src/auditor/report-lib.c +++ b/src/auditor/report-lib.c @@ -164,10 +164,10 @@ TALER_ARL_report (json_t *array, * @param validity issuing information with value, fees and other info about the denomination. */ static void -add_denomination (void *cls, - const struct TALER_DenominationPublicKey *denom_pub, - const struct - TALER_EXCHANGEDB_DenominationKeyInformationP *validity) +add_denomination ( + void *cls, + const struct TALER_DenominationPublicKey *denom_pub, + const struct TALER_EXCHANGEDB_DenominationKeyInformationP *validity) { const struct TALER_DenominationKeyValidityPS *issue = &validity->properties; @@ -292,7 +292,7 @@ TALER_ARL_get_denomination_info_by_hash ( denominations = GNUNET_CONTAINER_multihashmap_create (256, GNUNET_NO); qs = TALER_ARL_edb->iterate_denomination_info (TALER_ARL_edb->cls, - // FIXME: change API to pass session!? + TALER_ARL_esession, &add_denomination, NULL); if (0 > qs) |