commit d3fdd7d2d092d032d1888aaa2a9de6e98e638d9d
parent 049b705ced531c787671fc2e8c183bd03667c24e
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 26 Dec 2025 22:31:35 +0100
update gana
Diffstat:
2 files changed, 17 insertions(+), 1 deletion(-)
diff --git a/src/include/taler/taler_error_codes.h b/src/include/taler/taler_error_codes.h
@@ -2672,6 +2672,14 @@ enum TALER_ErrorCode
/**
+ * The report ID provided to the backend is not known to the backend.
+ * Returned with an HTTP status code of #MHD_HTTP_NOT_FOUND (404).
+ * (A value of 0 indicates that the error is generated client-side).
+ */
+ TALER_EC_MERCHANT_GENERIC_REPORT_UNKNOWN = 2034,
+
+
+ /**
* The exchange failed to provide a valid answer to the tracking request, thus those details are not in the response.
* Returned with an HTTP status code of #MHD_HTTP_OK (200).
* (A value of 0 indicates that the error is generated client-side).
diff --git a/src/util/taler_error_codes.c b/src/util/taler_error_codes.c
@@ -2655,6 +2655,14 @@ static const struct ErrorCodeAndHint code_hint_pairs[] = {
},
{
+ /* 2034 */
+ .ec = TALER_EC_MERCHANT_GENERIC_REPORT_UNKNOWN,
+ .hint = gettext_noop (
+ "The report ID provided to the backend is not known to the backend."),
+ .http_code = MHD_HTTP_NOT_FOUND
+ },
+
+ {
/* 2100 */
.ec = TALER_EC_MERCHANT_GET_ORDERS_EXCHANGE_TRACKING_FAILURE,
.hint = gettext_noop (
@@ -5507,7 +5515,7 @@ static const struct ErrorCodeAndHint code_hint_pairs[] = {
/**
* The length of @e code_hint_pairs.
*/
-static const unsigned int code_hint_pairs_length = 689;
+static const unsigned int code_hint_pairs_length = 690;
const char *