diff options
| author | Christian Grothoff <christian@grothoff.org> | 2022-02-07 10:55:07 +0100 | 
|---|---|---|
| committer | Christian Grothoff <christian@grothoff.org> | 2022-02-07 10:55:07 +0100 | 
| commit | 031e365814edd8bde4e4216c83f435a6915a06ab (patch) | |
| tree | 107790d605e434745fb016134135de13c5d43c0b /src/benchmark | |
| parent | 2164c36f0fc9335d540a42db733131976b8d805d (diff) | |
fix FTBFS of main logic
Diffstat (limited to 'src/benchmark')
| -rw-r--r-- | src/benchmark/taler-aggregator-benchmark.c | 9 | 
1 files changed, 6 insertions, 3 deletions
diff --git a/src/benchmark/taler-aggregator-benchmark.c b/src/benchmark/taler-aggregator-benchmark.c index 062cb1da..bace7002 100644 --- a/src/benchmark/taler-aggregator-benchmark.c +++ b/src/benchmark/taler-aggregator-benchmark.c @@ -493,6 +493,7 @@ run (void *cls,      struct TALER_PlanchetSecretsP ps;      struct TALER_ExchangeWithdrawValues alg_values;      struct TALER_CoinSpendPublicKeyP coin_pub; +    union TALER_DenominationBlindingKeyP bks;      RANDOMIZE (&coin_pub);      GNUNET_assert (GNUNET_OK == @@ -500,6 +501,7 @@ run (void *cls,                                              &denom_pub,                                              TALER_DENOMINATION_RSA,                                              1024)); +    alg_values.cipher = TALER_DENOMINATION_RSA;      TALER_denom_pub_hash (&denom_pub,                            &h_denom_pub);      make_amountN (2, 0, &issue.properties.value); @@ -521,10 +523,11 @@ run (void *cls,      TALER_planchet_blinding_secret_create (&ps, -                                           &alg_values); +                                           &alg_values, +                                           &bks);      GNUNET_assert (GNUNET_OK ==                     TALER_denom_blind (&denom_pub, -                                      &ps.blinding_key, +                                      &bks,                                        NULL, /* FIXME-oec */                                        &coin_pub,                                        &alg_values, @@ -538,7 +541,7 @@ run (void *cls,      GNUNET_assert (GNUNET_OK ==                     TALER_denom_sig_unblind (&denom_sig,                                              &bds, -                                            &ps.blinding_key, +                                            &bks,                                              &denom_pub));      TALER_blinded_denom_sig_free (&bds);      TALER_denom_pub_free (&denom_pub);  | 
