diff options
author | Florian Dold <florian.dold@gmail.com> | 2020-01-18 04:12:51 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2020-01-18 04:12:51 +0100 |
commit | 47698761d03b9de3cace8c58e814667444a7b73b (patch) | |
tree | 756521b1601d5d029c616954d03af8c92163cfaa /src | |
parent | 22bd615fa973eef25438fa609c3605f33e927817 (diff) |
remove redundant arg
Diffstat (limited to 'src')
-rw-r--r-- | src/include/taler_testing_lib.h | 3 | ||||
-rw-r--r-- | src/lib/test_bank_api.c | 2 | ||||
-rw-r--r-- | src/lib/test_bank_api_twisted.c | 1 | ||||
-rw-r--r-- | src/lib/testing_api_cmd_bank_history_credit.c | 5 |
4 files changed, 1 insertions, 10 deletions
diff --git a/src/include/taler_testing_lib.h b/src/include/taler_testing_lib.h index 781f1b133..4c723def4 100644 --- a/src/include/taler_testing_lib.h +++ b/src/include/taler_testing_lib.h @@ -811,8 +811,6 @@ TALER_TESTING_has_in_name (const char *prog, * Make a credit "history" CMD. * * @param label command label. - * @param account_url base URL of the account offering the "history" - * operation. * @param auth login data to use * @param start_row_reference reference to a command that can * offer a row identifier, to be used as the starting row @@ -823,7 +821,6 @@ TALER_TESTING_has_in_name (const char *prog, */ struct TALER_TESTING_Command TALER_TESTING_cmd_bank_credits (const char *label, - const char *account_url, const struct TALER_BANK_AuthenticationData *auth, const char *start_row_reference, diff --git a/src/lib/test_bank_api.c b/src/lib/test_bank_api.c index bbb957bd5..6e34399a8 100644 --- a/src/lib/test_bank_api.c +++ b/src/lib/test_bank_api.c @@ -69,7 +69,6 @@ run (void *cls, { struct TALER_TESTING_Command commands[] = { TALER_TESTING_cmd_bank_credits ("history-0", - bc.exchange_auth.wire_gateway_url, &bc.exchange_auth, NULL, 1), @@ -79,7 +78,6 @@ run (void *cls, &bc.exchange_auth, bc.user42_payto), TALER_TESTING_cmd_bank_credits ("history-1c", - bc.exchange_auth.wire_gateway_url, &bc.exchange_auth, NULL, 5), diff --git a/src/lib/test_bank_api_twisted.c b/src/lib/test_bank_api_twisted.c index e0014880f..2ec95ec03 100644 --- a/src/lib/test_bank_api_twisted.c +++ b/src/lib/test_bank_api_twisted.c @@ -91,7 +91,6 @@ run (void *cls, TALER_TESTING_cmd_wait_service ("wait-service", twister_url), TALER_TESTING_cmd_bank_credits ("history-0", - bc.exchange_auth.wire_gateway_url, &bc.exchange_auth, NULL, 5), diff --git a/src/lib/testing_api_cmd_bank_history_credit.c b/src/lib/testing_api_cmd_bank_history_credit.c index bb86a9b44..85a67f9d7 100644 --- a/src/lib/testing_api_cmd_bank_history_credit.c +++ b/src/lib/testing_api_cmd_bank_history_credit.c @@ -564,8 +564,6 @@ history_cleanup (void *cls, * Make a "history" CMD. * * @param label command label. - * @param account_url base URL of the account offering the "history" - * operation. * @param start_row_reference reference to a command that can * offer a row identifier, to be used as the starting row * to accept in the result. @@ -574,7 +572,6 @@ history_cleanup (void *cls, */ struct TALER_TESTING_Command TALER_TESTING_cmd_bank_credits (const char *label, - const char *account_url, const struct TALER_BANK_AuthenticationData *auth, const char *start_row_reference, @@ -583,7 +580,7 @@ TALER_TESTING_cmd_bank_credits (const char *label, struct HistoryState *hs; hs = GNUNET_new (struct HistoryState); - hs->account_url = GNUNET_strdup (account_url); + hs->account_url = GNUNET_strdup (auth->wire_gateway_url); hs->start_row_reference = start_row_reference; hs->num_results = num_results; hs->auth = *auth; |