summaryrefslogtreecommitdiff
path: root/src/util/offline_signatures.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-05-09 23:52:57 +0200
committerChristian Grothoff <christian@grothoff.org>2023-05-09 23:53:02 +0200
commit4e79967f9ba980b64e89a453efbb9ed4bfa4cc37 (patch)
tree2316f68161dad3b016773d3c77daaef4533d8049 /src/util/offline_signatures.c
parentdc5b0fb0d35b9758f6eac7b0bd144db00eef7216 (diff)
downloadexchange-4e79967f9ba980b64e89a453efbb9ed4bfa4cc37.tar.gz
exchange-4e79967f9ba980b64e89a453efbb9ed4bfa4cc37.tar.bz2
exchange-4e79967f9ba980b64e89a453efbb9ed4bfa4cc37.zip
-consistency
Diffstat (limited to 'src/util/offline_signatures.c')
-rw-r--r--src/util/offline_signatures.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/util/offline_signatures.c b/src/util/offline_signatures.c
index 40ccfbc21..fbff850df 100644
--- a/src/util/offline_signatures.c
+++ b/src/util/offline_signatures.c
@@ -1005,9 +1005,9 @@ TALER_exchange_offline_global_fee_sign (
const struct TALER_MasterPrivateKeyP *master_priv,
struct TALER_MasterSignatureP *master_sig)
{
- struct TALER_MasterGlobalFeePS kv = {
+ struct TALER_MasterGlobalFeePS wf = {
.purpose.purpose = htonl (TALER_SIGNATURE_MASTER_GLOBAL_FEES),
- .purpose.size = htonl (sizeof (kv)),
+ .purpose.size = htonl (sizeof (wf)),
.start_date = GNUNET_TIME_timestamp_hton (start_time),
.end_date = GNUNET_TIME_timestamp_hton (end_time),
.purse_timeout = GNUNET_TIME_relative_hton (purse_timeout),
@@ -1015,10 +1015,10 @@ TALER_exchange_offline_global_fee_sign (
.purse_account_limit = htonl (purse_account_limit)
};
- TALER_global_fee_set_hton (&kv.fees,
+ TALER_global_fee_set_hton (&wf.fees,
fees);
GNUNET_CRYPTO_eddsa_sign (&master_priv->eddsa_priv,
- &kv,
+ &wf,
&master_sig->eddsa_signature);
}