diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-12-20 17:10:09 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-12-20 17:10:09 +0100 |
commit | 699916056b7aae5f8afda12968e0046e9cc7003e (patch) | |
tree | 03a0e11b0f7575026d1c9b4096c00b90fcc1d7cb /src/exchangedb | |
parent | 6a73629aee0f04c0ab9c26329250299d3457c97e (diff) |
misc doxygen fixes
Diffstat (limited to 'src/exchangedb')
-rw-r--r-- | src/exchangedb/exchangedb.conf | 8 | ||||
-rw-r--r-- | src/exchangedb/plugin_exchangedb_postgres.c | 13 |
2 files changed, 5 insertions, 16 deletions
diff --git a/src/exchangedb/exchangedb.conf b/src/exchangedb/exchangedb.conf index 6853b8d18..77748bf5a 100644 --- a/src/exchangedb/exchangedb.conf +++ b/src/exchangedb/exchangedb.conf @@ -26,11 +26,3 @@ IDLE_RESERVE_EXPIRATION_TIME = 4 weeks # After how long do we forget about reserves? Should be above # the legal expiration timeframe of withdrawn coins. LEGAL_RESERVE_EXPIRATION_TIME = 7 years - - -# How long should generated coins overlap in their validity -# periods. Should be long enough to avoid problems with -# wallets picking one key and then due to network latency -# another key being valid. The DURATION_WITHDRAW period -# must be longer than this value. -DURATION_OVERLAP = 5 minutes
\ No newline at end of file diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c index f71a6773d..0e5ded47e 100644 --- a/src/exchangedb/plugin_exchangedb_postgres.c +++ b/src/exchangedb/plugin_exchangedb_postgres.c @@ -2186,7 +2186,7 @@ struct SignkeysIteratorContext /** - * Helper function for #postgres_active_signkeys(). + * Helper function for #postgres_iterate_active_signkeys(). * Calls the callback with each signkey. * * @param cls a `struct SignkeysIteratorContext` @@ -2294,7 +2294,7 @@ struct AuditorsIteratorContext /** - * Helper function for #postgres_active_auditors(). + * Helper function for #postgres_iterate_active_auditors(). * Calls the callback with each auditor. * * @param cls a `struct SignkeysIteratorContext` @@ -5226,7 +5226,6 @@ postgres_get_coin_transactions ( *tlp = chc.head; if (NULL == chc.head) return GNUNET_DB_STATUS_SUCCESS_NO_RESULTS; - GNUNET_break (chc.have_deposit_or_melt); return GNUNET_DB_STATUS_SUCCESS_ONE_RESULT; } @@ -8519,15 +8518,13 @@ postgres_lookup_denomination_key ( /** - * Activate future denomination key, turning it into a "current" or "valid" - * denomination key by adding the master signature. Deletes the - * denomination key from the 'future' table an inserts the data into the - * main denominations table. Because this function will trigger multiple SQL - * statements, it must be run within a transaction. + * Activate denomination key, turning it into a "current" or "valid" + * denomination key by adding the master signature. * * @param cls closure * @param session a session * @param h_denom_pub hash of the denomination public key + * @param denom_pub the actual denomination key * @param meta meta data about the denomination * @param master_pub master public key * @param master_sig master signature to add |