aboutsummaryrefslogtreecommitdiff
path: root/src/lib/testing_api_cmd_bank_history_debit.c
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-01-18 04:20:29 +0100
committerFlorian Dold <florian.dold@gmail.com>2020-01-18 04:20:29 +0100
commit0cebe32fc69324e3a656b58a528115b44e88b51c (patch)
tree0a0ff687dbe58f6267c993b4714eb3ffdbff0cbe /src/lib/testing_api_cmd_bank_history_debit.c
parent47698761d03b9de3cace8c58e814667444a7b73b (diff)
downloadexchange-0cebe32fc69324e3a656b58a528115b44e88b51c.tar.xz
dce: redundant arg
Diffstat (limited to 'src/lib/testing_api_cmd_bank_history_debit.c')
-rw-r--r--src/lib/testing_api_cmd_bank_history_debit.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/testing_api_cmd_bank_history_debit.c b/src/lib/testing_api_cmd_bank_history_debit.c
index 6b06fcd98..671c79d33 100644
--- a/src/lib/testing_api_cmd_bank_history_debit.c
+++ b/src/lib/testing_api_cmd_bank_history_debit.c
@@ -566,8 +566,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 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
@@ -577,7 +575,6 @@ history_cleanup (void *cls,
*/
struct TALER_TESTING_Command
TALER_TESTING_cmd_bank_debits (const char *label,
- const char *account_url,
const struct TALER_BANK_AuthenticationData *auth,
const char *start_row_reference,
long long num_results)
@@ -585,7 +582,7 @@ TALER_TESTING_cmd_bank_debits (const char *label,
struct HistoryState *hs;
hs = GNUNET_new (struct HistoryState);
- hs->account_url = account_url;
+ hs->account_url = auth->wire_gateway_url;
hs->start_row_reference = start_row_reference;
hs->num_results = num_results;
hs->auth = *auth;