diff options
author | Christian Grothoff <christian@grothoff.org> | 2018-01-21 19:21:45 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2018-01-21 19:21:45 +0100 |
commit | 3f930c0f6aadc68c98fbe5f2b4824db9a61fc62a (patch) | |
tree | 6ab227f0e632b2c7d992a453d68180f12fe95ec6 /src/include/taler_testing_lib.h | |
parent | a252daa6a1b3fe5b22757e7aeffc502e7f098261 (diff) |
more wire transfer variants
Diffstat (limited to 'src/include/taler_testing_lib.h')
-rw-r--r-- | src/include/taler_testing_lib.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/include/taler_testing_lib.h b/src/include/taler_testing_lib.h index 5643572ff..48259bc8d 100644 --- a/src/include/taler_testing_lib.h +++ b/src/include/taler_testing_lib.h @@ -231,6 +231,34 @@ TALER_TESTING_cmd_fakebank_transfer (const char *label, /** + * Create fakebank_transfer command with custom subject. + * + */ +struct TALER_TESTING_Command +TALER_TESTING_cmd_fakebank_transfer_with_subject (const char *label, + const char *amount, + uint64_t debit_account_no, + uint64_t credit_account_no, + const char *auth_username, + const char *auth_password, + const char *subject); + + +/** + * Create fakebank_transfer command with custom subject. + * + */ +struct TALER_TESTING_Command +TALER_TESTING_cmd_fakebank_transfer_with_ref (const char *label, + const char *amount, + uint64_t debit_account_no, + uint64_t credit_account_no, + const char *auth_username, + const char *auth_password, + const char *ref); + + +/** * Execute taler-exchange-wirewatch process. * */ |