commit 34c40f4dc948ff9ec0269fa18fa23dfd6a3dd106
parent f2b90f1b99e49e022d2c53785fb663c12cc49b2d
Author: bohdan-potuzhnyi <bohdan.potuzhnyi@gmail.com>
Date: Thu, 10 Apr 2025 18:00:21 +0200
fixing the consistency of the sign_keys
Diffstat:
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/lib/donau_api_handle.c b/src/lib/donau_api_handle.c
@@ -825,7 +825,7 @@ DONAU_keys_to_json (const struct DONAU_Keys *kd)
kd->version),
GNUNET_JSON_pack_string ("currency",
kd->currency),
- GNUNET_JSON_pack_array_steal ("sign_keys",
+ GNUNET_JSON_pack_array_steal ("signkeys",
signkeys),
GNUNET_JSON_pack_array_steal ("donation_units_group",
donation_units_by_group)
diff --git a/src/testing/testing_api_cmd_charity_post.c b/src/testing/testing_api_cmd_charity_post.c
@@ -112,9 +112,9 @@ charity_status_cb (void *cls,
* @param is the interpreter state.
*/
static void
-status_run (void *cls,
- const struct TALER_TESTING_Command *cmd,
- struct TALER_TESTING_Interpreter *is)
+charity_status_run (void *cls,
+ const struct TALER_TESTING_Command *cmd,
+ struct TALER_TESTING_Interpreter *is)
{
struct StatusState *ss = cls;
@@ -232,7 +232,7 @@ TALER_TESTING_cmd_charity_post (const char *label,
struct TALER_TESTING_Command cmd = {
.cls = ss,
.label = label,
- .run = &status_run,
+ .run = &charity_status_run,
.cleanup = &cleanup,
.traits = &charity_post_traits
};