diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-01-15 15:20:48 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-01-15 15:20:55 +0100 |
commit | e83015c8a3ee37ef2c8eb3d5236a6bbbdcab95df (patch) | |
tree | d863a3ca9fa469cc9913f8019740b7b0b845d392 /src/include/taler_testing_lib.h | |
parent | da5b3ba8aeb9d47e4f99cd22847c9b539ff8ee2b (diff) |
fix payto URI conversion
Diffstat (limited to 'src/include/taler_testing_lib.h')
-rw-r--r-- | src/include/taler_testing_lib.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/taler_testing_lib.h b/src/include/taler_testing_lib.h index 7e097ff13..9f638bd66 100644 --- a/src/include/taler_testing_lib.h +++ b/src/include/taler_testing_lib.h @@ -1359,16 +1359,16 @@ TALER_TESTING_cmd_track_transfer (const char *label, * @param exchange_base_url base url of the exchange involved in * the wire transfer. * @param amount the amount expected to be transferred. - * @param debit_account the account that gave money. - * @param credit_account the account that received money. + * @param debit_payto the account that gave money. + * @param credit_payto the account that received money. * @return the command */ struct TALER_TESTING_Command TALER_TESTING_cmd_check_bank_transfer (const char *label, const char *exchange_base_url, const char *amount, - const char *debit_account, - const char *credit_account); + const char *debit_payto, + const char *credit_payto); /** |