gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-anastasis] branch master updated: payment


From: gnunet
Subject: [taler-anastasis] branch master updated: payment
Date: Fri, 20 Nov 2020 15:59:58 +0100

This is an automated email from the git hooks/post-receive script.

ds-meister pushed a commit to branch master
in repository anastasis.

The following commit(s) were added to refs/heads/master by this push:
     new c71a96f  payment
c71a96f is described below

commit c71a96f7da6ad9e788982c3603cf73b5ef646f3d
Author: Dominik Meister <dominik.meister@hotmail.ch>
AuthorDate: Fri Nov 20 15:59:48 2020 +0100

    payment
---
 src/backend/anastasis-httpd_truth.c    | 16 ----------------
 src/stasis/plugin_anastasis_postgres.c | 16 ++++++++++++++++
 2 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/src/backend/anastasis-httpd_truth.c 
b/src/backend/anastasis-httpd_truth.c
index a281e50..76574d2 100644
--- a/src/backend/anastasis-httpd_truth.c
+++ b/src/backend/anastasis-httpd_truth.c
@@ -878,22 +878,6 @@ AH_handler_truth_get (struct MHD_Connection *connection,
     }
   }
 
-  /* check if the client insists on paying */
-  {
-    const char *order_req;
-
-    order_req = MHD_lookup_connection_value (connection,
-                                             MHD_GET_ARGUMENT_KIND,
-                                             "pay");
-    if (NULL != order_req)
-    {
-      GNUNET_log (GNUNET_ERROR_TYPE_INFO,
-                  "Payment requested, starting payment process\n");
-      return begin_payment (gc,
-                            GNUNET_YES);
-    }
-  }
-
   if (0 == strcmp ("question",
                    method))
   {
diff --git a/src/stasis/plugin_anastasis_postgres.c 
b/src/stasis/plugin_anastasis_postgres.c
index c10b57d..a0f97be 100644
--- a/src/stasis/plugin_anastasis_postgres.c
+++ b/src/stasis/plugin_anastasis_postgres.c
@@ -1154,6 +1154,22 @@ postgres_check_challenge_payment (void *cls,
                                                  "challenge_payment_select",
                                                  params,
                                                  rs);
+  switch (qs)
+  {
+  case GNUNET_DB_STATUS_SOFT_ERROR:
+    GNUNET_break (0);
+    return ANASTASIS_DB_STATUS_SOFT_ERROR;
+  case GNUNET_DB_STATUS_SUCCESS_NO_RESULTS:
+    return ANASTASIS_DB_STATUS_NO_RESULTS;
+  case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
+    return ANASTASIS_DB_STATUS_SUCCESS_ONE_RESULT;
+  case GNUNET_DB_STATUS_HARD_ERROR:
+    GNUNET_break (0);
+    return ANASTASIS_DB_STATUS_HARD_ERROR;
+  default:
+    GNUNET_break (0);
+    return ANASTASIS_DB_STATUS_HARD_ERROR;
+  }
   return qs;
 }
 

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]