exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit ec1dde17ffd66433024f16f5ca83394738cb4baa
parent 9959918480a5e03af69aed91e9dfe88d0b2cfc7c
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun, 29 Oct 2023 12:36:30 +0100

init pub_key_hash when fetching from DB

Diffstat:
Msrc/pq/pq_result_helper.c | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/src/pq/pq_result_helper.c b/src/pq/pq_result_helper.c @@ -482,6 +482,9 @@ extract_denom_pub (void *cls, return GNUNET_SYSERR; } pk->bsign_pub_key = bpk; + GNUNET_CRYPTO_hash (res, + len, + &bpk->pub_key_hash); return GNUNET_OK; case GNUNET_CRYPTO_BSA_CS: if (sizeof (bpk->details.cs_public_key) != len) @@ -494,6 +497,9 @@ extract_denom_pub (void *cls, res, len); pk->bsign_pub_key = bpk; + GNUNET_CRYPTO_hash (res, + len, + &bpk->pub_key_hash); return GNUNET_OK; } GNUNET_break (0);