exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 6a0be254cc7a630da2f508119573338245277e56
parent 80ffdb45dce7ba3f12b626d3ddb7cf96e5c5805d
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Fri, 11 May 2018 15:36:48 +0200

fix if-else logical error.

Diffstat:
Msrc/exchange-lib/testing_api_cmd_bank_check.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/exchange-lib/testing_api_cmd_bank_check.c b/src/exchange-lib/testing_api_cmd_bank_check.c @@ -210,7 +210,8 @@ check_bank_transfer_traits (void *cls, &bcs->wtid, sizeof (struct TALER_WireTransferIdentifierRawP))) wtid_ptr = NULL; - wtid_ptr = &bcs->wtid; + else + wtid_ptr = &bcs->wtid; struct TALER_TESTING_Trait traits[] = { TALER_TESTING_make_trait_transfer_subject (0, bcs->subject),