diff options
Diffstat (limited to 'src/backend/taler-merchant-httpd_private-get-pending-webhooks.c')
-rw-r--r-- | src/backend/taler-merchant-httpd_private-get-pending-webhooks.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backend/taler-merchant-httpd_private-get-pending-webhooks.c b/src/backend/taler-merchant-httpd_private-get-pending-webhooks.c index 690b0c14..d5160476 100644 --- a/src/backend/taler-merchant-httpd_private-get-pending-webhooks.c +++ b/src/backend/taler-merchant-httpd_private-get-pending-webhooks.c @@ -26,8 +26,9 @@ * * @param cls a `json_t *` JSON array to build * @param webhook_serial reference of the webhook + * @param next_attempt when will this hook be attempted next */ -static voidX +static void add_pending_webhook (void *cls, uint64_t *webhook_serial, struct GNUNET_TIME_Absolute *next_attempt) @@ -42,7 +43,7 @@ add_pending_webhook (void *cls, webhook_serial), GNUNET_JSON_pack_string ("next_attempt", next_attempt) - ))); + ))); } @@ -75,4 +76,4 @@ TMH_private_get_pending_webhooks (const struct TMH_RequestHandler *rh, } -/* end of taler-merchant-httpd_private-get-webhooks.c */ +/* end of taler-merchant-httpd_private-get-pending-webhooks.c */ |