diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-09-12 15:34:38 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-09-12 15:34:38 +0200 |
commit | 7aa23a39bd844e5fab4f82c66741fa584e2f6074 (patch) | |
tree | 00e5d999d71fd2e15a0d3eb8847d7f78abe349c6 /src/include | |
parent | 7d21331d5ffff65659a766149812ce654bbe5fd0 (diff) |
add support for #4840 (/keys cherry picking) to libtalerexchange
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_exchange_service.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/include/taler_exchange_service.h b/src/include/taler_exchange_service.h index 487304c59..c4c41c027 100644 --- a/src/include/taler_exchange_service.h +++ b/src/include/taler_exchange_service.h @@ -213,7 +213,7 @@ struct TALER_EXCHANGE_Keys struct GNUNET_TIME_Absolute last_issue_date; /** - * Length of the @e sign_keys array. + * Length of the @e sign_keys array (number of valid entries). */ unsigned int num_sign_keys; @@ -227,6 +227,16 @@ struct TALER_EXCHANGE_Keys */ unsigned int num_auditors; + /** + * Actual length of the @e sign_keys array (size of allocation). + */ + unsigned int sign_keys_size; + + /** + * Actual length of the @e denom_keys array (size of allocation). + */ + unsigned int denom_keys_size; + }; |