[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] [taler-exchange] branch master updated (3e191f3 -> 1731f5d)
From: |
gnunet |
Subject: |
[GNUnet-SVN] [taler-exchange] branch master updated (3e191f3 -> 1731f5d) |
Date: |
Wed, 04 Apr 2018 00:14:27 +0200 |
This is an automated email from the git hooks/post-receive script.
dold pushed a change to branch master
in repository exchange.
from 3e191f3 still on gentle twister termination.
new b48013b fix compiler warning
new df8ff68 fix compiler warnings
new 1731f5d change version number to 0.5
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
ChangeLog | 3 +++
configure.ac | 2 +-
src/bank-lib/testing_api_cmd_history.c | 3 ++-
src/bank-lib/testing_api_cmd_reject.c | 2 +-
src/exchange-lib/testing_api_cmd_track.c | 11 +++++------
5 files changed, 12 insertions(+), 9 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index e5d3eaf..506ad35 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+Tue Apr 3 23:29:06 CEST 2018
+ Releasing Taler v0.5.0
+
Thu Jan 4 11:55:41 CET 2018
Fix issue #5234 (aggregator ignoring refunds).
Misc. minor fixes to the auditor. -CG
diff --git a/configure.ac b/configure.ac
index 0f760e2..d2254b3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -17,7 +17,7 @@
#
#
AC_PREREQ([2.69])
-AC_INIT([taler-exchange], [0.4.0], address@hidden)
+AC_INIT([taler-exchange], [0.5.0], address@hidden)
AC_CONFIG_SRCDIR([src/util/util.c])
AC_CONFIG_HEADERS([taler_config.h])
# support for non-recursive builds
diff --git a/src/bank-lib/testing_api_cmd_history.c
b/src/bank-lib/testing_api_cmd_history.c
index 30090bf..d033e67 100644
--- a/src/bank-lib/testing_api_cmd_history.c
+++ b/src/bank-lib/testing_api_cmd_history.c
@@ -121,7 +121,8 @@ test_cancelled (struct TALER_TESTING_Interpreter *is,
const struct TALER_TESTING_Command *c = &is->commands[i];
- #warning "Errors reported here are NOT fatal"
+ /* XXX: Errors reported here are NOT fatal */
+
/* Rejected wire transfers have hold a reference to a
* reject command to mark them as rejected. So errors
* about "reject traits" not found are NOT fatal here */
diff --git a/src/bank-lib/testing_api_cmd_reject.c
b/src/bank-lib/testing_api_cmd_reject.c
index c01c27d..24d7414 100644
--- a/src/bank-lib/testing_api_cmd_reject.c
+++ b/src/bank-lib/testing_api_cmd_reject.c
@@ -127,7 +127,7 @@ reject_run (void *cls,
(GNUNET_OK == TALER_TESTING_GET_TRAIT_ROW_ID
(deposit_cmd, &row_id));
TALER_LOG_INFO ("Account %llu rejects deposit\n",
- *credit_account);
+ (unsigned long long) *credit_account);
rs->rh = TALER_BANK_reject (is->ctx,
rs->bank_url,
&AUTHS[*credit_account -1],
diff --git a/src/exchange-lib/testing_api_cmd_track.c
b/src/exchange-lib/testing_api_cmd_track.c
index 3f14c51..bbad7b7 100644
--- a/src/exchange-lib/testing_api_cmd_track.c
+++ b/src/exchange-lib/testing_api_cmd_track.c
@@ -519,16 +519,15 @@ track_transfer_cb
return;
}
- switch (http_status)
- {
-
- if (
- (NULL == tts->expected_total_amount) ||
- (NULL == tts->expected_wire_fee))
+ if ( (NULL == tts->expected_total_amount) ||
+ (NULL == tts->expected_wire_fee) )
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
"Expected amount and fee not specified, "
"likely to segfault...\n");
+
+ switch (http_status)
+ {
case MHD_HTTP_OK:
if (GNUNET_OK !=
TALER_string_to_amount (tts->expected_total_amount,
--
To stop receiving notification emails like this one, please contact
address@hidden
- [GNUnet-SVN] [taler-exchange] branch master updated (3e191f3 -> 1731f5d),
gnunet <=