gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [taler-exchange] branch master updated: keyup:_use_ the tim


From: gnunet
Subject: [GNUnet-SVN] [taler-exchange] branch master updated: keyup:_use_ the timestamp given by the user.
Date: Wed, 03 Apr 2019 13:47:30 +0200

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

marcello pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new 9d37f8e0 keyup:_use_ the timestamp given by the user.
9d37f8e0 is described below

commit 9d37f8e02615e276be23c4d005e1fdece045a8fa
Author: Marcello Stanisci <address@hidden>
AuthorDate: Wed Apr 3 13:47:00 2019 +0200

    keyup:_use_ the timestamp given by the user.
---
 src/exchange-tools/taler-exchange-keyup.c | 30 ++++++++++++++++++++++++++----
 src/lib/testing_api_cmd_check_keys.c      |  2 +-
 2 files changed, 27 insertions(+), 5 deletions(-)

diff --git a/src/exchange-tools/taler-exchange-keyup.c 
b/src/exchange-tools/taler-exchange-keyup.c
index dbbcb0c0..397355ee 100644
--- a/src/exchange-tools/taler-exchange-keyup.c
+++ b/src/exchange-tools/taler-exchange-keyup.c
@@ -195,12 +195,18 @@ static char *feedir;
 static const struct GNUNET_CONFIGURATION_Handle *kcfg;
 
 /**
- * Time when the key update is executed.  Either the actual current time, or a
- * pretended time.
+ * Time when the key update is executed.
+ * Either the actual current time, or a pretended time.
  */
 static struct GNUNET_TIME_Absolute now;
 
 /**
+ * The time for the key update, as passed by the user
+ * on the command line.
+ */
+static struct GNUNET_TIME_Absolute now_tmp;
+
+/**
  * Master private key of the exchange.
  */
 static struct TALER_MasterPrivateKeyP master_priv;
@@ -726,6 +732,12 @@ get_cointype_params (const char *ct,
               params->duration_withdraw,
               params->duration_overlap,
               &params->anchor);
+
+  /**
+   * The "anchor" is merely the latest denom key filename
+   * converted to a GNUnet absolute date.
+   */
+
   return GNUNET_OK;
 }
 
@@ -809,6 +821,7 @@ exchange_keys_update_cointype (void *cls,
     *ret = GNUNET_SYSERR;
     return;
   }
+  /* p has the right anchor now = latest denom filename converted to time.  */
   if (GNUNET_OK !=
       GNUNET_DISK_directory_create (get_cointype_dir (&p)))
   {
@@ -1179,6 +1192,15 @@ run (void *cls,
   struct GNUNET_CRYPTO_EddsaPrivateKey *eddsa_priv;
 
   kcfg = cfg;
+
+  if (now.abs_value_us != now_tmp.abs_value_us)
+  {
+    /* The user gave "--now", use it */ 
+    now = now_tmp;
+  }
+  /* The user _might_ have given "--now" but it matched
+   * exactly the normal now, so no change required.  */
+
   if (NULL == feedir)
   {
     if (GNUNET_OK !=
@@ -1387,7 +1409,7 @@ main (int argc,
                                         "time",
                                         "TIMESTAMP",
                                         "pretend it is a different time for 
the update",
-                                        &now),
+                                        &now_tmp),
     GNUNET_GETOPT_OPTION_END
   };
 
@@ -1395,7 +1417,7 @@ main (int argc,
                  GNUNET_log_setup ("taler-exchange-keyup",
                                    "WARNING",
                                    NULL));
-  now = GNUNET_TIME_absolute_get ();
+  now = now_tmp = GNUNET_TIME_absolute_get ();
   if (GNUNET_OK !=
       GNUNET_PROGRAM_run (argc, argv,
                         "taler-exchange-keyup",
diff --git a/src/lib/testing_api_cmd_check_keys.c 
b/src/lib/testing_api_cmd_check_keys.c
index 45aaeb55..375a35c4 100644
--- a/src/lib/testing_api_cmd_check_keys.c
+++ b/src/lib/testing_api_cmd_check_keys.c
@@ -58,7 +58,7 @@ struct CheckKeysState
   /**
    * If GNUNET_YES, then the user must specify the
    * last_denom_issue_date manually.  This way, it is possible
-   * to force whatever X value here: /keys?last_denom_issue=X.
+   * to force whatever X value here (including 0): /keys?last_denom_issue=X.
    */
   unsigned int set_last_denom;
 

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



reply via email to

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