summaryrefslogtreecommitdiff
path: root/src/testing/testing_api_cmd_offline_sign_global_fees.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testing/testing_api_cmd_offline_sign_global_fees.c')
-rw-r--r--src/testing/testing_api_cmd_offline_sign_global_fees.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/testing/testing_api_cmd_offline_sign_global_fees.c b/src/testing/testing_api_cmd_offline_sign_global_fees.c
index 7c9032255..db3916258 100644
--- a/src/testing/testing_api_cmd_offline_sign_global_fees.c
+++ b/src/testing/testing_api_cmd_offline_sign_global_fees.c
@@ -52,11 +52,6 @@ struct OfflineSignState
const char *history_fee_s;
/**
- * The KYC fee to sign.
- */
- const char *kyc_fee_s;
-
- /**
* The account fee to sign.
*/
const char *account_fee_s;
@@ -72,11 +67,6 @@ struct OfflineSignState
struct GNUNET_TIME_Relative purse_timeout;
/**
- * How long does a user have to complete the KYC?
- */
- struct GNUNET_TIME_Relative kyc_timeout;
-
- /**
* How long do we keep the history?
*/
struct GNUNET_TIME_Relative history_expiration;
@@ -104,7 +94,6 @@ offlinesign_run (void *cls,
char num_purses[12];
char history_expiration[32];
char purse_timeout[32];
- char kyc_timeout[32];
GNUNET_snprintf (num_purses,
sizeof (num_purses),
@@ -120,11 +109,6 @@ offlinesign_run (void *cls,
"%s",
GNUNET_TIME_relative2s (ks->purse_timeout,
false));
- GNUNET_snprintf (kyc_timeout,
- sizeof (kyc_timeout),
- "%s",
- GNUNET_TIME_relative2s (ks->kyc_timeout,
- false));
ks->offlinesign_proc
= GNUNET_OS_start_process (
GNUNET_OS_INHERIT_STD_ALL,
@@ -136,11 +120,9 @@ offlinesign_run (void *cls,
"global-fee",
"now",
ks->history_fee_s,
- ks->kyc_fee_s,
ks->account_fee_s,
ks->purse_fee_s,
purse_timeout,
- kyc_timeout,
history_expiration,
num_purses,
"upload",
@@ -215,11 +197,9 @@ TALER_TESTING_cmd_exec_offline_sign_global_fees (
const char *label,
const char *config_filename,
const char *history_fee,
- const char *kyc_fee,
const char *account_fee,
const char *purse_fee,
struct GNUNET_TIME_Relative purse_timeout,
- struct GNUNET_TIME_Relative kyc_timeout,
struct GNUNET_TIME_Relative history_expiration,
unsigned int num_purses)
{
@@ -228,11 +208,9 @@ TALER_TESTING_cmd_exec_offline_sign_global_fees (
ks = GNUNET_new (struct OfflineSignState);
ks->config_filename = config_filename;
ks->history_fee_s = history_fee;
- ks->kyc_fee_s = kyc_fee;
ks->account_fee_s = account_fee;
ks->purse_fee_s = purse_fee;
ks->purse_timeout = purse_timeout;
- ks->kyc_timeout = kyc_timeout;
ks->history_expiration = history_expiration;
ks->num_purses = num_purses;
{