diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-01-12 23:00:57 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-01-12 23:00:57 +0100 |
commit | 52513dcc2690716bb88cba506088b0422a53eb4a (patch) | |
tree | ce757d8674aede7754d2bd9f2522ef55fcdb51ae /src/exchangedb/irbt_callbacks.c | |
parent | 8f887a215e115d7e5f10a558b465521a6da0133c (diff) |
bugfixes in auditor-sync logic
Diffstat (limited to 'src/exchangedb/irbt_callbacks.c')
-rw-r--r-- | src/exchangedb/irbt_callbacks.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/exchangedb/irbt_callbacks.c b/src/exchangedb/irbt_callbacks.c index 891bd2601..127ac6d51 100644 --- a/src/exchangedb/irbt_callbacks.c +++ b/src/exchangedb/irbt_callbacks.c @@ -38,12 +38,13 @@ irbt_cb_table_denominations (struct PostgresClosure *pg, const struct TALER_EXCHANGEDB_TableData *td) { struct GNUNET_HashCode denom_hash; + static struct TALER_MasterPublicKeyP master_pub; struct GNUNET_PQ_QueryParam params[] = { GNUNET_PQ_query_param_uint64 (&td->serial), GNUNET_PQ_query_param_auto_from_type (&denom_hash), GNUNET_PQ_query_param_rsa_public_key ( td->details.denominations.denom_pub.rsa_public_key), - // GNUNET_PQ_query_param_auto_from_type (&master_pub), // FIXME: !? + GNUNET_PQ_query_param_auto_from_type (&master_pub), // FIXME: !? GNUNET_PQ_query_param_auto_from_type ( &td->details.denominations.master_sig), TALER_PQ_query_param_absolute_time ( |