commit 323c183899060762f6c812041ddb20e28846f5f1
parent c68788d0898579bd2e710af5061fd781878159d6
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Wed, 9 May 2018 14:35:11 +0200
User loging.
Paygen user gets their user/pass hardcoded. To be made
command line argument.
Diffstat:
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/merchant-tools/taler-merchant-generate-payments_new.c b/src/merchant-tools/taler-merchant-generate-payments_new.c
@@ -43,10 +43,10 @@
#define MISSING_BANK_URL 4
#define FAILED_TO_LAUNCH_BANK 5
-#define USER_ACCOUNT_NO 62
+#define USER_ACCOUNT_NO 3
#define EXCHANGE_ACCOUNT_NO 2
-#define USER_LOGIN_NAME "user42"
-#define USER_LOGIN_PASS "pass42"
+#define USER_LOGIN_NAME "Tor"
+#define USER_LOGIN_PASS "x"
#define EXCHANGE_URL "http://example.com/"
#define CMD_TRANSFER_TO_EXCHANGE(label,amount) \
@@ -260,6 +260,7 @@ main (int argc,
default_config_file);
terminate_process (merchantd);
+ terminate_process (bankd);
return (GNUNET_OK == result) ? 0 : result;
}