aboutsummaryrefslogtreecommitdiff
path: root/src/include/taler_testing_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/taler_testing_lib.h')
-rw-r--r--src/include/taler_testing_lib.h18
1 files changed, 10 insertions, 8 deletions
diff --git a/src/include/taler_testing_lib.h b/src/include/taler_testing_lib.h
index acc218ac5..6a4fa024a 100644
--- a/src/include/taler_testing_lib.h
+++ b/src/include/taler_testing_lib.h
@@ -1903,6 +1903,7 @@ TALER_TESTING_cmd_connect_with_state (const char *label,
1903 * @param dbc collects plugin and session handles 1903 * @param dbc collects plugin and session handles
1904 * @param merchant_name Human-readable name of the merchant. 1904 * @param merchant_name Human-readable name of the merchant.
1905 * @param merchant_account merchant's account name (NOT a payto:// URI) 1905 * @param merchant_account merchant's account name (NOT a payto:// URI)
1906 * @param exchange_timestamp when did the exchange receive the deposit
1906 * @param wire_deadline point in time where the aggregator should have 1907 * @param wire_deadline point in time where the aggregator should have
1907 * wired money to the merchant. 1908 * wired money to the merchant.
1908 * @param amount_with_fee amount to deposit (inclusive of deposit fee) 1909 * @param amount_with_fee amount to deposit (inclusive of deposit fee)
@@ -1910,14 +1911,15 @@ TALER_TESTING_cmd_connect_with_state (const char *label,
1910 * @return the command. 1911 * @return the command.
1911 */ 1912 */
1912struct TALER_TESTING_Command 1913struct TALER_TESTING_Command
1913TALER_TESTING_cmd_insert_deposit (const char *label, 1914TALER_TESTING_cmd_insert_deposit (
1914 const struct 1915 const char *label,
1915 TALER_TESTING_DatabaseConnection *dbc, 1916 const struct TALER_TESTING_DatabaseConnection *dbc,
1916 const char *merchant_name, 1917 const char *merchant_name,
1917 const char *merchant_account, 1918 const char *merchant_account,
1918 struct GNUNET_TIME_Relative wire_deadline, 1919 struct GNUNET_TIME_Absolute exchange_timestamp,
1919 const char *amount_with_fee, 1920 struct GNUNET_TIME_Relative wire_deadline,
1920 const char *deposit_fee); 1921 const char *amount_with_fee,
1922 const char *deposit_fee);
1921 1923
1922 1924
1923/** 1925/**