From 9c2aefaa515ce8d493bfe4de4eab9edc09d5447e Mon Sep 17 00:00:00 2001 From: Gian Demarmels Date: Sun, 9 Jan 2022 16:49:27 +0100 Subject: removed varargs --- src/benchmark/taler-aggregator-benchmark.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/benchmark') diff --git a/src/benchmark/taler-aggregator-benchmark.c b/src/benchmark/taler-aggregator-benchmark.c index 47314abe9..3584c811b 100644 --- a/src/benchmark/taler-aggregator-benchmark.c +++ b/src/benchmark/taler-aggregator-benchmark.c @@ -490,7 +490,7 @@ run (void *cls, struct TALER_CoinPubHash c_hash; struct TALER_PlanchetDetail pd; struct TALER_BlindedDenominationSignature bds; - union TALER_DenominationBlindingKeyP bks; + struct TALER_PlanchetSecretsP ps; struct TALER_CoinSpendPublicKeyP coin_pub; RANDOMIZE (&coin_pub); @@ -518,10 +518,11 @@ run (void *cls, return; } - TALER_blinding_secret_create (&bks, TALER_DENOMINATION_RSA); + + TALER_planchet_blinding_secret_create (&ps, TALER_DENOMINATION_RSA); GNUNET_assert (GNUNET_OK == TALER_denom_blind (&denom_pub, - &bks, + &ps.blinding_key, NULL, /* FIXME-oec */ &coin_pub, &c_hash, @@ -534,7 +535,7 @@ run (void *cls, GNUNET_assert (GNUNET_OK == TALER_denom_sig_unblind (&denom_sig, &bds, - &bks, + &ps.blinding_key, &denom_pub)); TALER_blinded_denom_sig_free (&bds); TALER_denom_pub_free (&denom_pub); -- cgit v1.2.3