exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit d7faa8391578b53ad12b5d904f844fcd57f2a6f7
parent 5fa4a0e7e1c40bb07e28edc98ca2072ae7fcfacf
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Thu,  5 Sep 2019 11:41:56 +0200

fix tests

Diffstat:
Msrc/auditordb/plugin_auditordb_postgres.c | 2++
Msrc/wire-plugins/test_wire_plugin_transactions_taler-bank.c | 10----------
2 files changed, 2 insertions(+), 10 deletions(-)

diff --git a/src/auditordb/plugin_auditordb_postgres.c b/src/auditordb/plugin_auditordb_postgres.c @@ -189,6 +189,8 @@ postgres_drop_tables (void *cls, "DROP TABLE IF EXISTS wire_auditor_account_progress;"), GNUNET_PQ_make_execute ( "DROP TABLE IF EXISTS deposit_confirmations CASCADE;"), + GNUNET_PQ_make_execute ( + "DROP TABLE IF EXISTS auditor_historic_reserve_summary CASCADE;"), GNUNET_PQ_EXECUTE_STATEMENT_END }; struct GNUNET_PQ_ExecuteStatement esx[] = { diff --git a/src/wire-plugins/test_wire_plugin_transactions_taler-bank.c b/src/wire-plugins/test_wire_plugin_transactions_taler-bank.c @@ -274,16 +274,6 @@ confirmation_cb (void *cls, 5, &history_result_cb, NULL); - - GNUNET_assert - (NULL != (hhr = plugin->get_history_range - (plugin->cls, - my_account, - TALER_BANK_DIRECTION_BOTH, - GNUNET_TIME_UNIT_ZERO_ABS, - GNUNET_TIME_UNIT_FOREVER_ABS, - &history_result_cb, - NULL))); }