summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-07-29 18:21:56 +0200
committerFlorian Dold <florian@dold.me>2021-07-29 18:21:56 +0200
commit2432c593854b555e408bc72d47235c84efff7b6b (patch)
treeb1e420c29ffe5199e74b348f34b165cddb9b55f0 /src
parent4fd1937729447a299aef562044c2d703abb80f5c (diff)
downloadexchange-2432c593854b555e408bc72d47235c84efff7b6b.tar.gz
exchange-2432c593854b555e408bc72d47235c84efff7b6b.tar.bz2
exchange-2432c593854b555e408bc72d47235c84efff7b6b.zip
keydir doesn't exist anymore
Diffstat (limited to 'src')
-rw-r--r--src/exchange/exchange.conf5
-rw-r--r--src/exchange/taler-exchange-httpd.c16
2 files changed, 0 insertions, 21 deletions
diff --git a/src/exchange/exchange.conf b/src/exchange/exchange.conf
index ae7ac25aa..69930fab6 100644
--- a/src/exchange/exchange.conf
+++ b/src/exchange/exchange.conf
@@ -2,11 +2,6 @@
#
[exchange]
-# Where do we store the private keys the exchange needs at
-# runtime? (Denomination and signing keys are then stored
-# in respective subdirectories.)
-KEYDIR = ${TALER_DATA_HOME}/exchange/live-keys/
-
# Directory where the exchange expects to find revocation
# certificates (and where taler-exchange-keyup will write them).
REVOCATION_DIR = ${TALER_DATA_HOME}/exchange/revocations/
diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c
index a0e9de8a4..76a71d703 100644
--- a/src/exchange/taler-exchange-httpd.c
+++ b/src/exchange/taler-exchange-httpd.c
@@ -79,11 +79,6 @@ struct ExchangeHttpRequestClosure
/**
- * Base directory of the exchange (global)
- */
-char *TEH_exchange_directory;
-
-/**
* Directory where revocations are stored (global)
*/
char *TEH_revocation_directory;
@@ -1154,17 +1149,6 @@ exchange_serve_process_config (void)
if (GNUNET_OK !=
GNUNET_CONFIGURATION_get_value_filename (TEH_cfg,
"exchange",
- "KEYDIR",
- &TEH_exchange_directory))
- {
- GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
- "exchange",
- "KEYDIR");
- return GNUNET_SYSERR;
- }
- if (GNUNET_OK !=
- GNUNET_CONFIGURATION_get_value_filename (TEH_cfg,
- "exchange",
"REVOCATION_DIR",
&TEH_revocation_directory))
{