diff options
-rw-r--r-- | src/auditordb/plugin_auditordb_postgres.c | 2 | ||||
-rw-r--r-- | src/bank-lib/fakebank.c | 4 |
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)); |