gnunet-svn
[Top][All Lists]
Advanced

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

[taler-anastasis] branch master updated: use GNUNET for abs time PQ hand


From: gnunet
Subject: [taler-anastasis] branch master updated: use GNUNET for abs time PQ handling as we do not want to have to round the timestaps
Date: Mon, 06 Apr 2020 11:03:21 +0200

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

grothoff pushed a commit to branch master
in repository anastasis.

The following commit(s) were added to refs/heads/master by this push:
     new b0ae5a0  use GNUNET for abs time PQ handling as we do not want to have 
to round the timestaps
b0ae5a0 is described below

commit b0ae5a00591e05255230ded9fde394cffe43da45
Author: Christian Grothoff <address@hidden>
AuthorDate: Mon Apr 6 11:03:19 2020 +0200

    use GNUNET for abs time PQ handling as we do not want to have to round the 
timestaps
---
 src/stasis/plugin_anastasis_postgres.c | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/stasis/plugin_anastasis_postgres.c 
b/src/stasis/plugin_anastasis_postgres.c
index d4047e6..78fecff 100644
--- a/src/stasis/plugin_anastasis_postgres.c
+++ b/src/stasis/plugin_anastasis_postgres.c
@@ -240,11 +240,11 @@ postgres_gc (void *cls,
 {
   struct PostgresClosure *pg = cls;
   struct GNUNET_PQ_QueryParam params[] = {
-    TALER_PQ_query_param_absolute_time (&expire_backups),
+    GNUNET_PQ_query_param_absolute_time (&expire_backups),
     GNUNET_PQ_query_param_end
   };
   struct GNUNET_PQ_QueryParam params2[] = {
-    TALER_PQ_query_param_absolute_time (&expire_pending_payments),
+    GNUNET_PQ_query_param_absolute_time (&expire_pending_payments),
     GNUNET_PQ_query_param_end
   };
   enum ANASTASIS_DB_QueryStatus qs;
@@ -705,8 +705,8 @@ postgres_increment_lifetime (void *cls,
       GNUNET_PQ_query_param_end
     };
     struct GNUNET_PQ_ResultSpec rs[] = {
-      TALER_PQ_result_spec_absolute_time ("expiration_date",
-                                          &expiration),
+      GNUNET_PQ_result_spec_absolute_time ("expiration_date",
+                                           &expiration),
       GNUNET_PQ_result_spec_end
     };
 
@@ -841,8 +841,8 @@ postgres_record_payment (void *cls,
       GNUNET_PQ_query_param_end
     };
     struct GNUNET_PQ_ResultSpec rs[] = {
-      TALER_PQ_result_spec_absolute_time ("expiration_date",
-                                          &expiration),
+      GNUNET_PQ_result_spec_absolute_time ("expiration_date",
+                                           &expiration),
       GNUNET_PQ_result_spec_end
     };
 
@@ -1117,8 +1117,8 @@ postgres_lookup_account (void *cls,
     GNUNET_PQ_query_param_end
   };
   struct GNUNET_PQ_ResultSpec rs[] = {
-    TALER_PQ_result_spec_absolute_time ("expiration_date",
-                                        &expiration_date),
+    GNUNET_PQ_result_spec_absolute_time ("expiration_date",
+                                         &expiration_date),
     GNUNET_PQ_result_spec_end
   };
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

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