aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-12-19 15:54:47 +0100
committerChristian Grothoff <christian@grothoff.org>2022-12-19 15:54:47 +0100
commit709ca561d27d801f405b49d886e9db24b073a785 (patch)
treeac0818999f2c6a959c5e03cd6345f734d01c2a2a /src
parent8f33fe5311f521a67a6c78bfcc60997d4cb08cd2 (diff)
downloadexchange-709ca561d27d801f405b49d886e9db24b073a785.tar.xz
-try to fix wirewatch loop
Diffstat (limited to 'src')
-rw-r--r--src/exchange/taler-exchange-wirewatch.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/exchange/taler-exchange-wirewatch.c b/src/exchange/taler-exchange-wirewatch.c
index 50e0dfbe1..47ecba684 100644
--- a/src/exchange/taler-exchange-wirewatch.c
+++ b/src/exchange/taler-exchange-wirewatch.c
@@ -422,7 +422,6 @@ schedule_transfers (void)
static void
transaction_completed (void)
{
- GNUNET_assert (! started_transaction);
if ( (batch_start + batch_size ==
latest_row_off) &&
(batch_size < MAXIMUM_BATCH_SIZE) )
@@ -848,7 +847,7 @@ lock_shard (void *cls)
{
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
"Continuing from %llu\n",
- latest_row_off);
+ (unsigned long long) latest_row_off);
GNUNET_break (latest_row_off >= batch_start); /* resume where we left things */
}
else