version bump related to #5777 implementation

This commit is contained in:
Christian Grothoff 2019-07-24 00:34:06 +02:00
parent 5844a20f15
commit 80ff186648
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC

View File

@ -39,7 +39,7 @@
* release version, and the format is NOT the same that semantic * release version, and the format is NOT the same that semantic
* versioning uses either. * versioning uses either.
*/ */
#define TALER_PROTOCOL_VERSION "4:0:0" #define TALER_PROTOCOL_VERSION "5:0:1"
/** /**
@ -105,7 +105,7 @@ struct DenominationKeyEntry
struct GNUNET_HashCode denom_key_hash; struct GNUNET_HashCode denom_key_hash;
#ifdef OPTIMIZE_5777_AUDITOR_BY_COUNT_REALTIME_DETECTION #ifdef OPTIMIZE_5777_AUDITOR_BY_COUNT_REALTIME_DETECTION
/** /**
* Mutex that must be held before threads may access or update * Mutex that must be held before threads may access or update
* @e known_coin_counter or @e known_coin_counter_db. * @e known_coin_counter or @e known_coin_counter_db.
@ -117,7 +117,7 @@ struct DenominationKeyEntry
* @e issued_coin_counter or @e issued_coin_counter_db. * @e issued_coin_counter or @e issued_coin_counter_db.
*/ */
pthread_mutex_t issued_coin_counter_mutex; pthread_mutex_t issued_coin_counter_mutex;
/** /**
* How many coins of this denomination have been redeemed so far (according * How many coins of this denomination have been redeemed so far (according
* to only this process)? * to only this process)?
@ -141,9 +141,9 @@ struct DenominationKeyEntry
* last time we synchronized the value with our database)? * last time we synchronized the value with our database)?
*/ */
uint64_t issued_coin_counter_db; uint64_t issued_coin_counter_db;
#endif #endif
}; };