summaryrefslogtreecommitdiff
path: root/src/include/taler_testing_bank_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/taler_testing_bank_lib.h')
-rw-r--r--src/include/taler_testing_bank_lib.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/src/include/taler_testing_bank_lib.h b/src/include/taler_testing_bank_lib.h
index 27db9d599..6b407197f 100644
--- a/src/include/taler_testing_bank_lib.h
+++ b/src/include/taler_testing_bank_lib.h
@@ -127,63 +127,6 @@ TALER_TESTING_cmd_bank_history (const char *label,
/**
- * Make a "history-range" CMD, picking dates from the arguments.
- *
- * @param label command label.
- * @param bank_url base URL of the bank offering the "history"
- * operation.
- * @param account_no bank account number to ask the history for.
- * @param direction which direction this operation is interested.
- * @param ascending if GNUNET_YES, the bank will return the rows
- * in ascending (= chronological) order.
- * @param start_date value for the 'start' argument
- * of "/history-range".
- * @param end_date value for the 'end' argument
- * of "/history-range".
- * @return the command.
- */
-struct TALER_TESTING_Command
-TALER_TESTING_cmd_bank_history_range_with_dates (const char *label,
- const char *bank_url,
- uint64_t account_no,
- enum TALER_BANK_Direction
- direction,
- unsigned int ascending,
- struct GNUNET_TIME_Absolute
- start_date,
- struct GNUNET_TIME_Absolute
- end_date);
-
-
-/**
- * Make a "history-range" CMD, picking dates from traits.
- *
- * @param label command label.
- * @param bank_url base URL of the bank offering the "history"
- * operation.
- * @param account_no bank account number to ask the history for.
- * @param direction which direction this operation is interested.
- * @param ascending if GNUNET_YES, the bank will return the rows
- * in ascending (= chronological) order.
- * @param start_row_reference reference to a command that can
- * offer a absolute time to use as the 'start' argument
- * for "/history-range".
- * @param end_row_reference reference to a command that can
- * offer a absolute time to use as the 'end' argument
- * for "/history-range".
- * @return the command.
- */
-struct TALER_TESTING_Command
-TALER_TESTING_cmd_bank_history_range (const char *label,
- const char *bank_url,
- uint64_t account_no,
- enum TALER_BANK_Direction direction,
- unsigned int ascending,
- const char *start_row_reference,
- const char *end_row_reference);
-
-
-/**
* Create a "reject" CMD.
*
* @param label command label.