doxygen fixes / redundant parameter elimination

This commit is contained in:
Florian Dold 2020-01-18 20:03:54 +01:00
parent 6bdccb5c7b
commit 34e6425f9d
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B
5 changed files with 4 additions and 19 deletions

View File

@ -165,7 +165,7 @@ TALER_BANK_admin_add_incoming_cancel (struct
/** /**
* Prepare for exeuction of a wire transfer. * Prepare for exeuction of a wire transfer.
* *
* @param destination_account_uri payto:// URL identifying where to send the money * @param destination_account_payto_uri payto:// URL identifying where to send the money
* @param amount amount to transfer, already rounded * @param amount amount to transfer, already rounded
* @param exchange_base_url base URL of this exchange (included in subject * @param exchange_base_url base URL of this exchange (included in subject
* to facilitate use of tracking API by merchant backend) * to facilitate use of tracking API by merchant backend)
@ -426,9 +426,7 @@ typedef int
* Request the wire credit history of an exchange's bank account. * Request the wire credit history of an exchange's bank account.
* *
* @param ctx curl context for the event loop * @param ctx curl context for the event loop
* @param bank_base_url URL of the base INCLUDING account number
* @param auth authentication data to use * @param auth authentication data to use
* @param account_number which account number should we query
* @param start_row from which row on do we want to get results, use UINT64_MAX for the latest; exclusive * @param start_row from which row on do we want to get results, use UINT64_MAX for the latest; exclusive
* @param num_results how many results do we want; negative numbers to go into the past, * @param num_results how many results do we want; negative numbers to go into the past,
* positive numbers to go into the future starting at @a start_row; * positive numbers to go into the future starting at @a start_row;

View File

@ -1024,8 +1024,6 @@ TALER_TESTING_cmd_admin_add_incoming (const char *label,
* *
* @param label command label. * @param label command label.
* @param amount the amount to transfer. * @param amount the amount to transfer.
* @param account_base_url base URL of the account that implements this
* wire transer (which account receives money).
* @param payto_debit_account which account sends money. * @param payto_debit_account which account sends money.
* @param auth authentication data * @param auth authentication data
* @param ref reference to a command that can offer a reserve * @param ref reference to a command that can offer a reserve
@ -1035,7 +1033,6 @@ TALER_TESTING_cmd_admin_add_incoming (const char *label,
struct TALER_TESTING_Command struct TALER_TESTING_Command
TALER_TESTING_cmd_admin_add_incoming_with_ref (const char *label, TALER_TESTING_cmd_admin_add_incoming_with_ref (const char *label,
const char *amount, const char *amount,
const char *account_base_url,
const struct const struct
TALER_BANK_AuthenticationData * TALER_BANK_AuthenticationData *
auth, auth,
@ -1052,8 +1049,6 @@ TALER_TESTING_cmd_admin_add_incoming_with_ref (const char *label,
* *
* @param label command label. * @param label command label.
* @param amount amount to transfer. * @param amount amount to transfer.
* @param account_base_url base URL of the account that implements this
* wire transer (which account receives money).
* @param payto_debit_account which account sends money. * @param payto_debit_account which account sends money.
* @param auth authentication data * @param auth authentication data
* @param instance the instance that runs the tipping. Under this * @param instance the instance that runs the tipping. Under this
@ -1066,7 +1061,6 @@ TALER_TESTING_cmd_admin_add_incoming_with_ref (const char *label,
struct TALER_TESTING_Command struct TALER_TESTING_Command
TALER_TESTING_cmd_admin_add_incoming_with_instance (const char *label, TALER_TESTING_cmd_admin_add_incoming_with_instance (const char *label,
const char *amount, const char *amount,
const char *account_base_url,
const struct const struct
TALER_BANK_AuthenticationData TALER_BANK_AuthenticationData
*auth, *auth,

View File

@ -521,7 +521,6 @@ struct TALER_TESTING_Command
TALER_TESTING_cmd_admin_add_incoming_with_ref TALER_TESTING_cmd_admin_add_incoming_with_ref
(const char *label, (const char *label,
const char *amount, const char *amount,
const char *account_base_url,
const struct TALER_BANK_AuthenticationData *auth, const struct TALER_BANK_AuthenticationData *auth,
const char *payto_debit_account, const char *payto_debit_account,
const char *ref) const char *ref)
@ -529,7 +528,7 @@ TALER_TESTING_cmd_admin_add_incoming_with_ref
struct AdminAddIncomingState *fts; struct AdminAddIncomingState *fts;
fts = make_fts (amount, fts = make_fts (amount,
account_base_url, auth->wire_gateway_url,
auth, auth,
payto_debit_account); payto_debit_account);
fts->reserve_reference = ref; fts->reserve_reference = ref;
@ -547,8 +546,6 @@ TALER_TESTING_cmd_admin_add_incoming_with_ref
* *
* @param label command label. * @param label command label.
* @param amount amount to transfer. * @param amount amount to transfer.
* @param account_bank_url base URL of the exchange bank account
* that receives the wire transfer
* @param payto_debit_account which account (expressed as a number) * @param payto_debit_account which account (expressed as a number)
* gives money * gives money
* @param auth authentication data * @param auth authentication data
@ -563,7 +560,6 @@ struct TALER_TESTING_Command
TALER_TESTING_cmd_admin_add_incoming_with_instance TALER_TESTING_cmd_admin_add_incoming_with_instance
(const char *label, (const char *label,
const char *amount, const char *amount,
const char *account_base_url,
const struct TALER_BANK_AuthenticationData *auth, const struct TALER_BANK_AuthenticationData *auth,
const char *payto_debit_account, const char *payto_debit_account,
const char *instance, const char *instance,
@ -572,7 +568,7 @@ TALER_TESTING_cmd_admin_add_incoming_with_instance
struct AdminAddIncomingState *fts; struct AdminAddIncomingState *fts;
fts = make_fts (amount, fts = make_fts (amount,
account_base_url, auth->wire_gateway_url,
auth, auth,
payto_debit_account); payto_debit_account);
fts->instance = instance; fts->instance = instance;

View File

@ -233,10 +233,6 @@ reserve_withdraw_cb (void *cls,
/** /**
* Run the command. * Run the command.
*
* @param cls closure.
* @param cmd the command being run, NULL when called from #do_retry()
* @param is interpreter state.
*/ */
static void static void
withdraw_run (void *cls, withdraw_run (void *cls,

View File

@ -219,6 +219,7 @@ TALER_TESTING_run_bank (const char *config_filename,
* and reset database. * and reset database.
* *
* @param config_filename configuration file name. * @param config_filename configuration file name.
* @param config_section section of the configuration with the exchange's account
* @param[out] bc set to the bank's configuration data * @param[out] bc set to the bank's configuration data
* @return the base url, or NULL upon errors. Must be freed * @return the base url, or NULL upon errors. Must be freed
* by the caller. * by the caller.