summaryrefslogtreecommitdiff
path: root/src/exchange
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-06-08 22:14:24 +0200
committerChristian Grothoff <christian@grothoff.org>2016-06-08 22:14:24 +0200
commit3b9248e9c6d0abb3311dd7db25b5a227609b9bd1 (patch)
treed66bb39a27104507557c78ba6deae45ac95fff7f /src/exchange
parent536163746e81e15cb5cb87c61e13907385460b4d (diff)
parentf50d4b0f359064c15087b9d7b8b1bba84b9e7e89 (diff)
downloadexchange-3b9248e9c6d0abb3311dd7db25b5a227609b9bd1.tar.gz
exchange-3b9248e9c6d0abb3311dd7db25b5a227609b9bd1.tar.bz2
exchange-3b9248e9c6d0abb3311dd7db25b5a227609b9bd1.zip
Merge branch 'master' of git+ssh://taler.net/var/git/exchange
Diffstat (limited to 'src/exchange')
-rw-r--r--src/exchange/test_taler_exchange_aggregator.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/exchange/test_taler_exchange_aggregator.c b/src/exchange/test_taler_exchange_aggregator.c
index dd8e4575b..a5ce044de 100644
--- a/src/exchange/test_taler_exchange_aggregator.c
+++ b/src/exchange/test_taler_exchange_aggregator.c
@@ -25,7 +25,7 @@
#include "taler_json_lib.h"
#include "taler_exchangedb_plugin.h"
#include <microhttpd.h>
-#include "fakebank.h"
+#include "taler_fakebank_lib.h"
@@ -247,7 +247,7 @@ static struct GNUNET_CRYPTO_RsaPublicKey *coin_pub;
/**
* Handle for our fake bank.
*/
-static struct FAKEBANK_Handle *fb;
+static struct TALER_FAKEBANK_Handle *fb;
/**
@@ -295,7 +295,7 @@ shutdown_action (void *cls)
}
if (NULL != fb)
{
- FAKEBANK_stop (fb);
+ TALER_FAKEBANK_stop (fb);
fb = NULL;
}
if (NULL != child_death_task)
@@ -532,7 +532,7 @@ interpreter (void *cls)
}
return;
case OPCODE_EXPECT_TRANSACTIONS_EMPTY:
- if (GNUNET_OK != FAKEBANK_check_empty (fb))
+ if (GNUNET_OK != TALER_FAKEBANK_check_empty (fb))
{
fail (cmd);
return;
@@ -561,7 +561,7 @@ interpreter (void *cls)
return;
}
if (GNUNET_OK !=
- FAKEBANK_check (fb,
+ TALER_FAKEBANK_check (fb,
&want_amount,
cmd->details.expect_transaction.debit_account,
cmd->details.expect_transaction.credit_account,
@@ -1179,7 +1179,7 @@ run (void *cls)
&timeout_action,
NULL);
result = 1; /* test failed for undefined reason */
- fb = FAKEBANK_start (8082);
+ fb = TALER_FAKEBANK_start (8082);
if (NULL == fb)
{
GNUNET_SCHEDULER_shutdown ();