diff options
Diffstat (limited to 'src/exchange-tools')
-rw-r--r-- | src/exchange-tools/taler-exchange-wire.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/exchange-tools/taler-exchange-wire.c b/src/exchange-tools/taler-exchange-wire.c index 2f6b4ad73..8aa3f570c 100644 --- a/src/exchange-tools/taler-exchange-wire.c +++ b/src/exchange-tools/taler-exchange-wire.c @@ -169,9 +169,14 @@ run (void *cls, } GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Signing /wire responses\n"); - TALER_EXCHANGEDB_find_accounts (cfg, - &sign_account_data, - NULL); + if (GNUNET_OK != + TALER_EXCHANGEDB_find_accounts (cfg, + &sign_account_data, + NULL)) + { + global_ret = 1; + return; + } } |