exchange

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

commit e9c9ca736f6a9cd63695f6e425ad801658081991
parent 9e55caf92c55fb540370a8f2ab05bbedf0a7fe07
Author: Florian Dold <florian.dold@gmail.com>
Date:   Thu, 27 Sep 2018 20:51:12 +0200

fix loop that checks link response

Diffstat:
Msrc/exchange-lib/testing_api_cmd_refresh.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/exchange-lib/testing_api_cmd_refresh.c b/src/exchange-lib/testing_api_cmd_refresh.c @@ -627,14 +627,14 @@ link_cb (void *cls, for (unsigned int j=0;j<num_coins;j++) { if ( (0 == memcmp - (&coin_privs[i], &fc[i].coin_priv, + (&coin_privs[i], &fc[j].coin_priv, sizeof (struct TALER_CoinSpendPrivateKeyP))) && (0 == GNUNET_CRYPTO_rsa_signature_cmp (fc[i].sig.rsa_signature, - sigs[i].rsa_signature)) && + sigs[j].rsa_signature)) && (0 == GNUNET_CRYPTO_rsa_public_key_cmp (fc[i].pk->key.rsa_public_key, - pubs[i].rsa_public_key)) ) + pubs[j].rsa_public_key)) ) { found++; break;