remove redundant arg

This commit is contained in:
Florian Dold 2020-01-18 04:12:51 +01:00
parent 22bd615fa9
commit 47698761d0
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B
4 changed files with 1 additions and 10 deletions

View File

@ -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,

View File

@ -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),

View File

@ -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),

View File

@ -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;