summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/taler_crypto_lib.h2
-rw-r--r--src/mintdb/plugin_mintdb_postgres.c3
2 files changed, 2 insertions, 3 deletions
diff --git a/src/include/taler_crypto_lib.h b/src/include/taler_crypto_lib.h
index 7a4bcb831..16240e5a3 100644
--- a/src/include/taler_crypto_lib.h
+++ b/src/include/taler_crypto_lib.h
@@ -202,7 +202,7 @@ struct TALER_AuditorPublicKeyP
/**
- * @brief Type of the public key used by the auditor.
+ * @brief Type of signatures used by the auditor.
*/
struct TALER_AuditorSignatureP
{
diff --git a/src/mintdb/plugin_mintdb_postgres.c b/src/mintdb/plugin_mintdb_postgres.c
index 62af73c87..0f32cfb8e 100644
--- a/src/mintdb/plugin_mintdb_postgres.c
+++ b/src/mintdb/plugin_mintdb_postgres.c
@@ -332,8 +332,7 @@ postgres_create_tables (void *cls,
SQLEXEC_INDEX ("CREATE INDEX reserves_out_h_blind_ev_index ON "
"reserves_out (h_blind_ev)");
/* Table with coins that have been (partially) spent, used to track
- coin information only once.
- TODO: maybe eliminate, this might be over-normalization (#3811) */
+ coin information only once. */
SQLEXEC("CREATE TABLE IF NOT EXISTS known_coins "
"(coin_pub BYTEA NOT NULL PRIMARY KEY"
",denom_pub BYTEA NOT NULL REFERENCES denominations (pub)"