commit c541307441f8e50770919c0105264f4cf6676619
parent 4ba9ffaaeef83a05964bee764c419d9006a6767d
Author: priscilla <priscilla.huang@efrei.net>
Date: Mon, 23 Jan 2023 08:39:44 -0500
update
Diffstat:
2 files changed, 3 insertions(+), 16 deletions(-)
diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c
@@ -7800,19 +7800,11 @@ postgres_lookup_all_webhooks (void *cls,
* @param next_attempt when we should make the next request to the webhook
* @return database result code
*/
-<<<<<<< HEAD
static enum GNUNET_DB_QueryStatus
-postgres_update_pending_webhook (void *cls,
- uint64_t webhook_serial,
- struct GNUNET_TIME_Absolute next_attempt)
-// maybe add: http status of failure?
-=======
- static enum GNUNET_DB_QueryStatus
- postgres_update_pending_webhook(void *cls,
- uint64_t webhook_serial,
- const struct TALER_MERCHANTDB_PendingWebhookDetails *pwb)
+postgres_update_pending_webhook(void *cls,
+ uint64_t webhook_serial,
+ const struct TALER_MERCHANTDB_PendingWebhookDetails *pwb)
// maybe add: http status of failure?
->>>>>>> ee56051c (backend for pending webhook)
{
struct PostgresClosure *pg = cls;
struct GNUNET_PQ_QueryParam params[] = {
diff --git a/src/include/taler_merchantdb_plugin.h b/src/include/taler_merchantdb_plugin.h
@@ -2828,13 +2828,8 @@ struct TALER_MERCHANTDB_Plugin
enum GNUNET_DB_QueryStatus
(*update_pending_webhook)(void *cls,
uint64_t webhook_serial,
-<<<<<<< HEAD
- struct GNUNET_TIME_Absolute next_attempt);
- // maybe add: http status of failure?
-=======
const struct TALER_MERCHANTDB_PendingWebhookDetails *pwb);
// maybe add: http status of failure?
->>>>>>> ee56051c (backend for pending webhook)
/**