aboutsummaryrefslogtreecommitdiff
path: root/src/include/taler_testing_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-02-03 12:57:04 +0100
committerChristian Grothoff <christian@grothoff.org>2023-02-03 12:57:04 +0100
commitf6877449eb6aa994df6cc1a125f983ece1f6ad39 (patch)
tree9779059f00578f30ffd481dbd80415d7a7a16269 /src/include/taler_testing_lib.h
parente0687b90f1f208a4dd72c4a0792334ee54debf03 (diff)
downloadexchange-f6877449eb6aa994df6cc1a125f983ece1f6ad39.tar.xz
implement testing_api_cmd_take_aml_decision.c
Diffstat (limited to 'src/include/taler_testing_lib.h')
-rw-r--r--src/include/taler_testing_lib.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/include/taler_testing_lib.h b/src/include/taler_testing_lib.h
index 50563b9b6..a54e05e53 100644
--- a/src/include/taler_testing_lib.h
+++ b/src/include/taler_testing_lib.h
@@ -2739,7 +2739,9 @@ TALER_TESTING_cmd_set_officer (
* @param ref_operation command that previously created an
* h_payto which to make an AML decision about
* @param new_threshold new threshold to set
- * @param block set to true to block the account
+ * @param justification justification given for the decision
+ * @param new_state new AML state for the account
+ * @param expected_response expected HTTP return status
* @return the command
*/
struct TALER_TESTING_Command
@@ -2748,7 +2750,9 @@ TALER_TESTING_cmd_take_aml_decision (
const char *ref_officer,
const char *ref_operation,
const char *new_threshold,
- bool block);
+ const char *justification,
+ enum TALER_AmlDecisionState new_state,
+ unsigned int expected_response);
/**