summaryrefslogtreecommitdiff
path: root/src/include/taler_testing_bank_lib.h
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-04-09 18:01:10 +0200
committerMarcello Stanisci <stanisci.m@gmail.com>2019-04-10 17:07:13 +0200
commit75ac6b80634be292f7b681a7b20a1faedd32b48f (patch)
treeed4c5eda4ebb5324b01ecd60eb14a9f175fb8642 /src/include/taler_testing_bank_lib.h
parentf3d80b58f68e308a6abac304994fd040ecb91eda (diff)
downloadexchange-75ac6b80634be292f7b681a7b20a1faedd32b48f.tar.gz
exchange-75ac6b80634be292f7b681a7b20a1faedd32b48f.tar.bz2
exchange-75ac6b80634be292f7b681a7b20a1faedd32b48f.zip
minor fixes
Diffstat (limited to 'src/include/taler_testing_bank_lib.h')
-rw-r--r--src/include/taler_testing_bank_lib.h15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/include/taler_testing_bank_lib.h b/src/include/taler_testing_bank_lib.h
index 6bd1026f7..5beaf97f6 100644
--- a/src/include/taler_testing_bank_lib.h
+++ b/src/include/taler_testing_bank_lib.h
@@ -124,10 +124,6 @@ TALER_TESTING_cmd_bank_history
* of "/history-range".
* @param end_date value for the 'end' argument
* of "/history-range".
- * @param num_results how many results we want from the bank; NOTE,
- * this value is NOT used to issue any "delta" parameter in
- * the HTTP request. Rather, it is only checked against
- * the results returned by the bank.
* @return the command.
*/
struct TALER_TESTING_Command
@@ -138,8 +134,7 @@ TALER_TESTING_cmd_bank_history_range_with_dates
enum TALER_BANK_Direction direction,
unsigned int ascending,
struct GNUNET_TIME_Absolute start_date,
- struct GNUNET_TIME_Absolute end_date,
- long long num_results);
+ struct GNUNET_TIME_Absolute end_date);
/**
@@ -158,11 +153,6 @@ TALER_TESTING_cmd_bank_history_range_with_dates
* @param end_row_reference reference to a command that can
* offer a absolute time to use as the 'end' argument
* for "/history-range".
- * @param num_results how many results we want from the bank; NOTE,
- * this value is NOT used to issue any "delta" parameter in
- * the HTTP request. Rather, it is only checked against
- * the results returned by the bank.
- *
* @return the command.
*/
struct TALER_TESTING_Command
@@ -173,8 +163,7 @@ TALER_TESTING_cmd_bank_history_range
enum TALER_BANK_Direction direction,
unsigned int ascending,
const char *start_row_reference,
- const char *end_row_reference,
- long long num_results);
+ const char *end_row_reference);
/**