diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-10-27 13:42:54 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-10-27 13:42:54 +0200 |
commit | 77142acbe800d6f8fe0d8f65374403353ede5d30 (patch) | |
tree | 82b827d26040a2ba2f38a1cf356946479d38428a /src/include | |
parent | b148a5a81a4b6e96daba8c9fbb0e53afff8dcdca (diff) |
fix lib/ FTBFS
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_exchange_service.h | 5 | ||||
-rw-r--r-- | src/include/taler_json_lib.h | 8 |
2 files changed, 5 insertions, 8 deletions
diff --git a/src/include/taler_exchange_service.h b/src/include/taler_exchange_service.h index 91395540f..72c233258 100644 --- a/src/include/taler_exchange_service.h +++ b/src/include/taler_exchange_service.h @@ -1590,8 +1590,6 @@ struct TALER_EXCHANGE_RefreshesRevealHandle; * prior to calling this function. * * @param exchange the exchange handle; the exchange must be ready to operate - * @param refresh_data_length size of the @a refresh_data (returned - * in the `res_size` argument from #TALER_EXCHANGE_refresh_prepare()) * @param refresh_data the refresh data as returned from #TALER_EXCHANGE_refresh_prepare()) * @param noreveal_index response from the exchange to the @@ -1605,8 +1603,7 @@ struct TALER_EXCHANGE_RefreshesRevealHandle; struct TALER_EXCHANGE_RefreshesRevealHandle * TALER_EXCHANGE_refreshes_reveal ( struct TALER_EXCHANGE_Handle *exchange, - size_t refresh_data_length, - const char *refresh_data, + const json_t *refresh_data, uint32_t noreveal_index, TALER_EXCHANGE_RefreshesRevealCallback reveal_cb, void *reveal_cb_cls); diff --git a/src/include/taler_json_lib.h b/src/include/taler_json_lib.h index a4b17297f..42c3669d2 100644 --- a/src/include/taler_json_lib.h +++ b/src/include/taler_json_lib.h @@ -311,8 +311,8 @@ TALER_JSON_spec_relative_time (const char *name, * @return corresponding field spec */ struct GNUNET_JSON_Specification -TALER_JSON_spec_denomination_public_key (const char *field, - struct TALER_DenominationPublicKey *pk); +TALER_JSON_spec_denom_pub (const char *field, + struct TALER_DenominationPublicKey *pk); /** @@ -323,8 +323,8 @@ TALER_JSON_spec_denomination_public_key (const char *field, * @return corresponding field spec */ struct GNUNET_JSON_Specification -TALER_JSON_spec_denomination_signature (const char *field, - struct TALER_DenominationSignature *sig); +TALER_JSON_spec_denom_sig (const char *field, + struct TALER_DenominationSignature *sig); /** |