summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-04-17 14:19:12 +0200
committerChristian Grothoff <christian@grothoff.org>2020-04-17 14:19:12 +0200
commitf934a81d49274938a19f3db1b0829647133eb1fc (patch)
tree8ee87b1822913a43b2d6cc37983ee549d4e486a4 /src
parentb93fba2cc1fca4cb1d0bfd1954b324c99e8ec23a (diff)
downloadexchange-f934a81d49274938a19f3db1b0829647133eb1fc.tar.gz
exchange-f934a81d49274938a19f3db1b0829647133eb1fc.tar.bz2
exchange-f934a81d49274938a19f3db1b0829647133eb1fc.zip
fix ftbfs
Diffstat (limited to 'src')
-rw-r--r--src/util/test_crypto.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/util/test_crypto.c b/src/util/test_crypto.c
index 8135dfe35..99d197b61 100644
--- a/src/util/test_crypto.c
+++ b/src/util/test_crypto.c
@@ -90,6 +90,7 @@ test_planchets (void)
struct TALER_PlanchetDetail pd;
struct GNUNET_CRYPTO_RsaSignature *blind_sig;
struct TALER_FreshCoin coin;
+ struct GNUNET_HashCode c_hash;
dk_priv.rsa_private_key = GNUNET_CRYPTO_rsa_private_key_create (1024);
dk_pub.rsa_public_key = GNUNET_CRYPTO_rsa_private_key_get_public (
@@ -98,6 +99,7 @@ test_planchets (void)
GNUNET_assert (GNUNET_OK ==
TALER_planchet_prepare (&dk_pub,
&ps,
+ &c_hash,
&pd));
blind_sig = GNUNET_CRYPTO_rsa_sign_blinded (dk_priv.rsa_private_key,
pd.coin_ev,
@@ -107,7 +109,7 @@ test_planchets (void)
TALER_planchet_to_coin (&dk_pub,
blind_sig,
&ps,
- &pd.c_hash,
+ &c_hash,
&coin));
GNUNET_CRYPTO_rsa_signature_free (blind_sig);
GNUNET_CRYPTO_rsa_signature_free (coin.sig.rsa_signature);