diff options
| author | Christian Grothoff <christian@grothoff.org> | 2022-04-05 17:15:50 +0200 | 
|---|---|---|
| committer | Christian Grothoff <christian@grothoff.org> | 2022-04-05 17:15:50 +0200 | 
| commit | f3a4b00907410444055f47d4ff2074b44f981ad3 (patch) | |
| tree | cb8f191a285152649e0b780aad8154f5b819f924 /src/exchange/taler-exchange-httpd_recoup.c | |
| parent | 71916414069d18ec5b7d5901d52d62a2aaa1403d (diff) | |
adapt to latest GNUnet API: GNUNET_JSON_spec_mark_optional() changed
Diffstat (limited to 'src/exchange/taler-exchange-httpd_recoup.c')
| -rw-r--r-- | src/exchange/taler-exchange-httpd_recoup.c | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/src/exchange/taler-exchange-httpd_recoup.c b/src/exchange/taler-exchange-httpd_recoup.c index 101e7bff..6bda8af9 100644 --- a/src/exchange/taler-exchange-httpd_recoup.c +++ b/src/exchange/taler-exchange-httpd_recoup.c @@ -403,10 +403,12 @@ TEH_handler_recoup (struct MHD_Connection *connection,                                   &coin_sig),      GNUNET_JSON_spec_mark_optional (        GNUNET_JSON_spec_fixed_auto ("h_age_commitment", -                                   &coin.h_age_commitment)), +                                   &coin.h_age_commitment), +      &coin.no_age_commitment),      GNUNET_JSON_spec_mark_optional (        GNUNET_JSON_spec_fixed_auto ("cs_nonce", -                                   &nonce)), +                                   &nonce), +      NULL),      GNUNET_JSON_spec_end ()    };  | 
