summaryrefslogtreecommitdiff
path: root/src/benchmark
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-06-10 16:06:27 +0200
committerChristian Grothoff <christian@grothoff.org>2016-06-10 16:06:27 +0200
commit96b6bca54d15e1cc9367538556fe35b6c640d258 (patch)
tree98108f6d4cd8fd82b1b9bb60c66d3742a39bbcf2 /src/benchmark
parent8c13b6242bd1a30d7eed11dc93a52cbd04031ad9 (diff)
downloadexchange-96b6bca54d15e1cc9367538556fe35b6c640d258.tar.gz
exchange-96b6bca54d15e1cc9367538556fe35b6c640d258.tar.bz2
exchange-96b6bca54d15e1cc9367538556fe35b6c640d258.zip
-do not ignore error code...
Diffstat (limited to 'src/benchmark')
-rw-r--r--src/benchmark/taler-exchange-benchmark.c40
1 files changed, 21 insertions, 19 deletions
diff --git a/src/benchmark/taler-exchange-benchmark.c b/src/benchmark/taler-exchange-benchmark.c
index 4a9902cb9..3377f3da5 100644
--- a/src/benchmark/taler-exchange-benchmark.c
+++ b/src/benchmark/taler-exchange-benchmark.c
@@ -74,7 +74,7 @@ struct RefreshRevealCls {
* Size of `blob`
*/
size_t blob_size;
-
+
/**
* Which coin in the list are we melting
*/
@@ -394,21 +394,23 @@ melt_cb (void *cls,
const struct TALER_ExchangePublicKeyP *exchange_pub,
const json_t *full_response)
{
+ struct RefreshRevealCls *rrcls = cls;
/* FIXME to be freed */
- struct RefreshRevealCls *rrcls = (struct RefreshRevealCls *) cls;
if (MHD_HTTP_OK != http_status)
{
- GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Coin not correctly melted\n");
- /*fail ("Coin not correctly melted\n");
- return;*/
+ GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+ "Coin not correctly melted\n");
+ /*fail ("Coin not correctly melted\n"); */
+ return;
}
- coins[rrcls->coin_index].rrh = TALER_EXCHANGE_refresh_reveal (exchange,
- rrcls->blob_size,
- rrcls->blob,
- noreveal_index,
- reveal_cb,
- NULL);
+ coins[rrcls->coin_index].rrh
+ = TALER_EXCHANGE_refresh_reveal (exchange,
+ rrcls->blob_size,
+ rrcls->blob,
+ noreveal_index,
+ reveal_cb,
+ NULL);
}
/**
@@ -485,9 +487,9 @@ deposit_cb (void *cls,
fail ("Impossible to issue a melt request to the exchange\n");
return;
}
- }
- #endif
-
+ }
+ #endif
+
}
@@ -740,7 +742,7 @@ benchmark_run (void *cls)
}
/**
- * Populates the global array of denominations which will
+ * Populates the global array of denominations which will
* be withdrawn in a refresh operation. It sums up 4 KUDOS,
* since that is the only amount refreshed so far by the benchmark
*
@@ -759,7 +761,7 @@ build_refresh (char **list)
for (i=0; list[i] != NULL; i++)
{
unsigned int size;
- GNUNET_asprintf (&amount_str, "%s:%s", currency, list[i]);
+ GNUNET_asprintf (&amount_str, "%s:%s", currency, list[i]);
TALER_string_to_amount (amount_str, &amount);
picked_denom = find_pk (keys, &amount);
size = i;
@@ -805,7 +807,7 @@ cert_cb (void *cls,
"4",
"2",
"1",
- NULL
+ NULL
};
build_refresh (refresh_denoms);
@@ -857,12 +859,12 @@ do_shutdown (void *cls)
if (NULL != coins[i].rmh)
{
TALER_EXCHANGE_refresh_melt_cancel(coins[i].rmh);
- coins[i].rmh = NULL;
+ coins[i].rmh = NULL;
}
if (NULL != coins[i].rrh)
{
TALER_EXCHANGE_refresh_reveal_cancel(coins[i].rrh);
- coins[i].rmh = NULL;
+ coins[i].rmh = NULL;
}
}