exchange

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

commit 4599fc2d5e5fc5f499afdc4f406d6c5bb3bb8c96
parent eb05ba6e34f4200663d28cea06c1915cd9166c2e
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 23 Nov 2021 21:39:26 +0100

protocol bump, ignore eintr

Diffstat:
Msrc/bank-lib/fakebank.c | 5+++--
Msrc/lib/exchange_api_handle.c | 2+-
2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/bank-lib/fakebank.c b/src/bank-lib/fakebank.c @@ -548,8 +548,9 @@ lp_expiration_thread (void *cls) timeout_ms); if (-1 == ret) { - GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, - "poll"); + if (EINTR != epoll) + GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, + "poll"); } else if (1 == ret) { diff --git a/src/lib/exchange_api_handle.c b/src/lib/exchange_api_handle.c @@ -39,7 +39,7 @@ * Which version of the Taler protocol is implemented * by this library? Used to determine compatibility. */ -#define EXCHANGE_PROTOCOL_CURRENT 9 +#define EXCHANGE_PROTOCOL_CURRENT 10 /** * How many versions are we backwards compatible with?