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: improve diagnostics


From: gnunet
Subject: [GNUnet-SVN] [taler-exchange] branch master updated: improve diagnostics
Date: Fri, 21 Jul 2017 23:20:03 +0200

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

grothoff pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new 2b56769  improve diagnostics
2b56769 is described below

commit 2b567692626f6bd741f6f4199874ce7292004cf8
Author: Christian Grothoff <address@hidden>
AuthorDate: Fri Jul 21 19:38:22 2017 +0200

    improve diagnostics
---
 src/exchange/taler-exchange-httpd_deposit.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/src/exchange/taler-exchange-httpd_deposit.c 
b/src/exchange/taler-exchange-httpd_deposit.c
index 0234946..8d824b7 100644
--- a/src/exchange/taler-exchange-httpd_deposit.c
+++ b/src/exchange/taler-exchange-httpd_deposit.c
@@ -309,10 +309,24 @@ check_timestamp_current (struct GNUNET_TIME_Absolute ts)
   tolerance = GNUNET_TIME_UNIT_MONTHS;
   r = GNUNET_TIME_absolute_get_duration (ts);
   if (r.rel_value_us > tolerance.rel_value_us)
+  {
+    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+               "Deposit timestamp too old: %llu vs %llu > %llu\n",
+               (unsigned long long) ts.abs_value_us,
+               (unsigned long long) GNUNET_TIME_absolute_get().abs_value_us,
+               (unsigned long long) tolerance.rel_value_us);
     return GNUNET_SYSERR;
+  }
   r = GNUNET_TIME_absolute_get_remaining (ts);
   if (r.rel_value_us > tolerance.rel_value_us)
+  {
+    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+               "Deposit timestamp too new: %llu vs %llu < - %llu\n",
+               (unsigned long long) ts.abs_value_us,
+               (unsigned long long) GNUNET_TIME_absolute_get().abs_value_us,
+               (unsigned long long) tolerance.rel_value_us);
     return GNUNET_SYSERR;
+  }
   return GNUNET_OK;
 }
 

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



reply via email to

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