summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-12-22 12:43:33 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2019-12-22 12:43:33 +0100
commitd36700ed984415b37a7af418d4c820fe6730d7be (patch)
treeec245f3bfea71959d23bed290d1e85c59f725679
parent672a76e9e33a420898b39931a261c5d5830540a4 (diff)
downloadexchange-d36700ed984415b37a7af418d4c820fe6730d7be.tar.gz
exchange-d36700ed984415b37a7af418d4c820fe6730d7be.tar.bz2
exchange-d36700ed984415b37a7af418d4c820fe6730d7be.zip
Fix auditordb.
Include (forgotten) table within the "drop_tables()" command.
-rw-r--r--src/auditordb/plugin_auditordb_postgres.c2
-rw-r--r--src/bank-lib/fakebank.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/src/auditordb/plugin_auditordb_postgres.c b/src/auditordb/plugin_auditordb_postgres.c
index 19714e129..c90c261c8 100644
--- a/src/auditordb/plugin_auditordb_postgres.c
+++ b/src/auditordb/plugin_auditordb_postgres.c
@@ -125,6 +125,8 @@ postgres_drop_tables (void *cls,
"DROP TABLE IF EXISTS wire_auditor_account_progress;"),
GNUNET_PQ_make_execute (
"DROP TABLE IF EXISTS auditor_historic_reserve_summary CASCADE;"),
+ GNUNET_PQ_make_execute (
+ "DROP TABLE IF EXISTS auditor_denominations CASCADE;"),
GNUNET_PQ_EXECUTE_STATEMENT_END
};
struct GNUNET_PQ_ExecuteStatement esx[] = {
diff --git a/src/bank-lib/fakebank.c b/src/bank-lib/fakebank.c
index 5b388f668..d8ea392b5 100644
--- a/src/bank-lib/fakebank.c
+++ b/src/bank-lib/fakebank.c
@@ -467,10 +467,10 @@ handle_admin_add_incoming (struct TALER_FAKEBANK_Handle *h,
void *json_str;
size_t json_len;
- json = json_pack ("{s:I, s:s}",
+ json = json_pack ("{s:I, s:o}",
"row_id",
(json_int_t) row_id,
- "timestamp", "/Date(0)/"); /*dummy tmp */
+ "timestamp", GNUNET_JSON_from_time_abs (GNUNET_TIME_UNIT_ZERO_ABS)); /*dummy tmp */
json_str = json_dumps (json,
JSON_INDENT (2));