summaryrefslogtreecommitdiff
path: root/src/exchange-tools
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-01-19 20:39:27 +0100
committerChristian Grothoff <christian@grothoff.org>2020-01-19 20:39:27 +0100
commit6f3c6827221fae6da47a113af4172e8f269bd38c (patch)
treeb0bae70bd662cbc1e88b7347f7194d951b852be2 /src/exchange-tools
parentbc812a0a514f80f062d0d5db2a9b1b257080d9dc (diff)
downloadexchange-6f3c6827221fae6da47a113af4172e8f269bd38c.tar.gz
exchange-6f3c6827221fae6da47a113af4172e8f269bd38c.tar.bz2
exchange-6f3c6827221fae6da47a113af4172e8f269bd38c.zip
rename: TALER_config_get_denom->amount
Diffstat (limited to 'src/exchange-tools')
-rw-r--r--src/exchange-tools/taler-exchange-keyup.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/exchange-tools/taler-exchange-keyup.c b/src/exchange-tools/taler-exchange-keyup.c
index ae7d37d33..71ccace91 100644
--- a/src/exchange-tools/taler-exchange-keyup.c
+++ b/src/exchange-tools/taler-exchange-keyup.c
@@ -676,10 +676,10 @@ get_cointype_params (const char *ct,
}
params->rsa_keysize = (unsigned int) rsa_keysize;
if (GNUNET_OK !=
- TALER_config_get_denom (kcfg,
- ct,
- "value",
- &params->value))
+ TALER_config_get_amount (kcfg,
+ ct,
+ "value",
+ &params->value))
{
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
ct,
@@ -687,10 +687,10 @@ get_cointype_params (const char *ct,
return GNUNET_SYSERR;
}
if (GNUNET_OK !=
- TALER_config_get_denom (kcfg,
- ct,
- "fee_withdraw",
- &params->fee_withdraw))
+ TALER_config_get_amount (kcfg,
+ ct,
+ "fee_withdraw",
+ &params->fee_withdraw))
{
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
ct,
@@ -698,10 +698,10 @@ get_cointype_params (const char *ct,
return GNUNET_SYSERR;
}
if (GNUNET_OK !=
- TALER_config_get_denom (kcfg,
- ct,
- "fee_deposit",
- &params->fee_deposit))
+ TALER_config_get_amount (kcfg,
+ ct,
+ "fee_deposit",
+ &params->fee_deposit))
{
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
ct,
@@ -709,10 +709,10 @@ get_cointype_params (const char *ct,
return GNUNET_SYSERR;
}
if (GNUNET_OK !=
- TALER_config_get_denom (kcfg,
- ct,
- "fee_refresh",
- &params->fee_refresh))
+ TALER_config_get_amount (kcfg,
+ ct,
+ "fee_refresh",
+ &params->fee_refresh))
{
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
ct,
@@ -720,10 +720,10 @@ get_cointype_params (const char *ct,
return GNUNET_SYSERR;
}
if (GNUNET_OK !=
- TALER_config_get_denom (kcfg,
- ct,
- "fee_refund",
- &params->fee_refund))
+ TALER_config_get_amount (kcfg,
+ ct,
+ "fee_refund",
+ &params->fee_refund))
{
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
ct,