merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit d89d64100d97b8987521b35fc1d869b9cc65979c
parent c2e039bef04ab57d03657ea2bb935b8bd1d0c2fc
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Thu,  3 May 2018 14:06:19 +0200

remove hard-coded config file

Diffstat:
Msrc/lib/testing_api_helpers.c | 18+++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/lib/testing_api_helpers.c b/src/lib/testing_api_helpers.c @@ -162,15 +162,15 @@ TALER_TESTING_prepare_merchant (const char *config_filename) } /* DB preparation */ - if (NULL == - (dbinit_proc = GNUNET_OS_start_process (GNUNET_NO, - GNUNET_OS_INHERIT_STD_ALL, - NULL, NULL, NULL, - "taler-merchant-dbinit", - "taler-merchant-dbinit", - "-c", "test_merchant_api.conf", - "-r", - NULL))) + if (NULL == (dbinit_proc = GNUNET_OS_start_process + (GNUNET_NO, + GNUNET_OS_INHERIT_STD_ALL, + NULL, NULL, NULL, + "taler-merchant-dbinit", + "taler-merchant-dbinit", + "-c", config_filename, + "-r", + NULL))) { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to run taler-merchant-dbinit."