Compare commits
No commits in common. "17001e445db8ca9b5490880bef18dacddc072258" and "b87d1112ea479537bda5e1ba1e1100ee53315315" have entirely different histories.
17001e445d
...
b87d1112ea
@ -91,11 +91,7 @@ free_age_withdraw_context_resources (struct AgeWithdrawContext *awc)
|
|||||||
GNUNET_free (awc->denom_hs);
|
GNUNET_free (awc->denom_hs);
|
||||||
GNUNET_free (awc->coin_evs);
|
GNUNET_free (awc->coin_evs);
|
||||||
GNUNET_free (awc->commitment.denom_serials);
|
GNUNET_free (awc->commitment.denom_serials);
|
||||||
/*
|
/* commitment.denom_serials and .h_coin_evs are stack allocated */
|
||||||
* Note:
|
|
||||||
* awc->commitment.denom_sigs and .h_coin_evs were stack allocated and
|
|
||||||
* .denom_pub_hashes is NULL for this context.
|
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -424,6 +420,8 @@ are_denominations_valid (
|
|||||||
struct TEH_KeyStateHandle *ksh;
|
struct TEH_KeyStateHandle *ksh;
|
||||||
uint64_t *serials;
|
uint64_t *serials;
|
||||||
|
|
||||||
|
GNUNET_assert (*denom_serials == NULL);
|
||||||
|
|
||||||
ksh = TEH_keys_get_state ();
|
ksh = TEH_keys_get_state ();
|
||||||
if (NULL == ksh)
|
if (NULL == ksh)
|
||||||
{
|
{
|
||||||
|
@ -586,7 +586,6 @@ TEH_handler_age_withdraw_reveal (
|
|||||||
|
|
||||||
} while(0);
|
} while(0);
|
||||||
|
|
||||||
GNUNET_JSON_parse_free (spec);
|
|
||||||
GNUNET_free (actx.disclosed_coin_secrets);
|
GNUNET_free (actx.disclosed_coin_secrets);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -1245,7 +1245,7 @@ struct TALER_EXCHANGEDB_AgeWithdraw
|
|||||||
uint64_t *denom_serials;
|
uint64_t *denom_serials;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* [out]-Array of @a num_coins hashes of the public keys of the denominations
|
* Array of @a num_coins hashes of the public keys of the denominations
|
||||||
* identified by @e denom_serials. This field is set when calling
|
* identified by @e denom_serials. This field is set when calling
|
||||||
* get_age_withdraw
|
* get_age_withdraw
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user