diff options
author | Christian Grothoff <grothoff@gnunet.org> | 2021-10-26 11:02:11 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-10-27 09:23:14 +0200 |
commit | 7ac57acb18e4b4644afab2adc61e1b0c6607464c (patch) | |
tree | 7cbd47e40884a48314fcb425a32d08ff653013eb /src/auditor/taler-helper-auditor-reserves.c | |
parent | f1237f1923513f1de4a78c1ee21564b622b541b7 (diff) |
fix auditor FTBFS
Diffstat (limited to 'src/auditor/taler-helper-auditor-reserves.c')
-rw-r--r-- | src/auditor/taler-helper-auditor-reserves.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/auditor/taler-helper-auditor-reserves.c b/src/auditor/taler-helper-auditor-reserves.c index c27574d12..6a355ea79 100644 --- a/src/auditor/taler-helper-auditor-reserves.c +++ b/src/auditor/taler-helper-auditor-reserves.c @@ -487,10 +487,10 @@ handle_reserve_in (void *cls, * @param amount_with_fee amount that was withdrawn * @return #GNUNET_OK to continue to iterate, #GNUNET_SYSERR to stop */ -static int +static enum GNUNET_GenericReturnValue handle_reserve_out (void *cls, uint64_t rowid, - const struct GNUNET_HashCode *h_blind_ev, + const struct TALER_BlindedCoinHash *h_blind_ev, const struct TALER_DenominationPublicKey *denom_pub, const struct TALER_ReservePublicKeyP *reserve_pub, const struct TALER_ReserveSignatureP *reserve_sig, @@ -739,7 +739,7 @@ handle_recoup_by_reserve ( /* check that the coin was eligible for recoup!*/ rev = GNUNET_CONTAINER_multihashmap_get (rc->revoked, - &coin->denom_pub_hash); + &coin->denom_pub_hash.hash); if (NULL == rev) { qs = TALER_ARL_edb->get_denomination_revocation (TALER_ARL_edb->cls, @@ -777,7 +777,8 @@ handle_recoup_by_reserve ( } GNUNET_assert (GNUNET_OK == GNUNET_CONTAINER_multihashmap_put (rc->revoked, - &coin->denom_pub_hash, + &coin->denom_pub_hash. + hash, (void *) rev, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY)); } |