aboutsummaryrefslogtreecommitdiff
path: root/src/json
diff options
context:
space:
mode:
authorChristian Blättler <blatc2@bfh.ch>2024-04-25 10:25:25 +0200
committerChristian Blättler <blatc2@bfh.ch>2024-04-25 10:25:25 +0200
commit8fb9b71939248c9323962e06f03768b34f8fa108 (patch)
treee5c09b8d895f020fcb7624bca6d0f5cda5dca600 /src/json
parent8b159830567006f8faad263bd3084acacd2d72cd (diff)
downloadexchange-8fb9b71939248c9323962e06f03768b34f8fa108.tar.xz
add token use signature functions
Diffstat (limited to 'src/json')
-rw-r--r--src/json/json_helper.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/json/json_helper.c b/src/json/json_helper.c
index f58d5fa5c..ad5b8d5a3 100644
--- a/src/json/json_helper.c
+++ b/src/json/json_helper.c
@@ -546,7 +546,7 @@ parse_token_issue_sig (void *cls,
json_t *root,
struct GNUNET_JSON_Specification *spec)
{
- struct TALER_TokenIssueSignature *issue_sig = spec->ptr;
+ struct TALER_TokenIssueSignatureP *issue_sig = spec->ptr;
struct GNUNET_CRYPTO_UnblindedSignature *unblinded_sig;
const char *cipher;
struct GNUNET_JSON_Specification dspec[] = {
@@ -638,7 +638,7 @@ static void
clean_token_issue_sig (void *cls,
struct GNUNET_JSON_Specification *spec)
{
- struct TALER_TokenIssueSignature *issue_sig = spec->ptr;
+ struct TALER_TokenIssueSignatureP *issue_sig = spec->ptr;
(void) cls;
TALER_token_issue_sig_free (issue_sig);
@@ -647,7 +647,7 @@ clean_token_issue_sig (void *cls,
struct GNUNET_JSON_Specification
TALER_JSON_spec_token_issue_sig (const char *field,
- struct TALER_TokenIssueSignature *sig)
+ struct TALER_TokenIssueSignatureP *sig)
{
struct GNUNET_JSON_Specification ret = {
.parser = &parse_token_issue_sig,