From cc862fb2795aefed25b1a7b4d1dcac750f648f1b Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Fri, 17 Jan 2020 02:23:38 +0100 Subject: payto fixes WIP --- src/bank-lib/bank_api_parse.c | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'src/bank-lib/bank_api_parse.c') diff --git a/src/bank-lib/bank_api_parse.c b/src/bank-lib/bank_api_parse.c index 5423d01b7..384019542 100644 --- a/src/bank-lib/bank_api_parse.c +++ b/src/bank-lib/bank_api_parse.c @@ -98,27 +98,6 @@ TALER_BANK_auth_parse_cfg (const struct GNUNET_CONFIGURATION_Handle *cfg, { NULL, TALER_BANK_AUTH_NONE } }; char *method; - unsigned long long fakebank_port; - - if (GNUNET_OK == - GNUNET_CONFIGURATION_get_value_number (cfg, - section, - "FAKEBANK_PORT", - &fakebank_port)) - { - auth->method = TALER_BANK_AUTH_FAKEBANK; - auth->details.fakebank.fb_port = (uint16_t) fakebank_port; - // FIXME: we should not hardcode exchange account number "2" - GNUNET_asprintf (&auth->wire_gateway_url, - "http://localhost:%u/2/", - (unsigned int) fakebank_port); - - GNUNET_log (GNUNET_ERROR_TYPE_INFO, - "Using fakebank %s on port %u\n", - auth->wire_gateway_url, - (unsigned int) fakebank_port); - return GNUNET_OK; - } if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (cfg, @@ -187,8 +166,6 @@ TALER_BANK_auth_parse_cfg (const struct GNUNET_CONFIGURATION_Handle *cfg, auth->method = TALER_BANK_AUTH_BASIC; GNUNET_free (method); return GNUNET_OK; - case TALER_BANK_AUTH_FAKEBANK: - GNUNET_assert (0); } } } @@ -222,8 +199,6 @@ TALER_BANK_auth_free (struct TALER_BANK_AuthenticationData *auth) auth->details.basic.password = NULL; } break; - case TALER_BANK_AUTH_FAKEBANK: - break; } GNUNET_free (auth->wire_gateway_url); } -- cgit v1.2.3