another sync code

This commit is contained in:
Christian Grothoff 2019-11-24 17:20:13 +01:00
parent 287a8dec9b
commit b7a5af7fd4
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC

View File

@ -1852,7 +1852,7 @@ enum TALER_ErrorCode
/** /**
* The sync service failed to access its database. * The sync service failed to access its database.
* This response is provided with HTTP status code * This response is provided with HTTP status code
* MHD_HTTP_INTERNAL_ERROR. * MHD_HTTP_INTERNAL_SERVER_ERROR.
*/ */
TALER_EC_SYNC_DB_FETCH_ERROR = 6000, TALER_EC_SYNC_DB_FETCH_ERROR = 6000,
@ -1967,17 +1967,23 @@ enum TALER_ErrorCode
/** /**
* Sync could not store order data in its own database. * Sync could not store order data in its own database.
* This response is provided with HTTP status code * This response is provided with HTTP status code
* MHD_HTTP_INTERNAL_ERROR. * MHD_HTTP_INTERNAL_SERVER_ERROR.
*/ */
TALER_EC_SYNC_PAYMENT_CREATE_DB_ERROR = 6015, TALER_EC_SYNC_PAYMENT_CREATE_DB_ERROR = 6015,
/** /**
* Sync could not store payment confirmation in its own database. * Sync could not store payment confirmation in its own database.
* This response is provided with HTTP status code * This response is provided with HTTP status code
* MHD_HTTP_INTERNAL_ERROR. * MHD_HTTP_INTERNAL_SERVER_ERROR.
*/ */
TALER_EC_SYNC_PAYMENT_CONFIRM_DB_ERROR = 6016, TALER_EC_SYNC_PAYMENT_CONFIRM_DB_ERROR = 6016,
/**
* Sync could check for payment confirmation in its own database.
* This response is provided with HTTP status code
* MHD_HTTP_INTERNAL_SERVER_ERROR.
*/
TALER_EC_SYNC_PAYMENT_CHECK_ORDER_DB_ERROR = 6017,
/** /**
* End of error code range. * End of error code range.