exchange

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

commit b7af94231b3eac266d0e216e5d91a2c65c7c680e
parent 7514407487ebb0fa63f417cd25abc52fc75d75e1
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date:   Thu, 31 Dec 2020 12:00:49 -0500

fix typo in last commit: s/dh/esh/ (three instances)

* src/util/crypto_helper_esign.c (TALER_CRYPTO_helper_esign_poll): ...here.

Diffstat:
Msrc/util/crypto_helper_esign.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/util/crypto_helper_esign.c b/src/util/crypto_helper_esign.c @@ -377,9 +377,9 @@ TALER_CRYPTO_helper_esign_poll (struct TALER_CRYPTO_ExchangeSignHelper *esh) /* timeout AND not synced => full reconnect */ GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Restarting connection to EdDSA helper, did not come up properly\n"); - do_disconnect (dh); - try_connect (dh); - if (-1 == dh->sock) + do_disconnect (esh); + try_connect (esh); + if (-1 == esh->sock) return; /* give up */ } continue; /* try again */