summaryrefslogtreecommitdiff
path: root/src/exchange/test_taler_exchange_aggregator.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-06-08 11:35:28 +0200
committerChristian Grothoff <christian@grothoff.org>2016-06-08 11:35:28 +0200
commita7379930d273b53429684603df92411cf39b9976 (patch)
tree3a377f5ff325c195ca08e32d927d03860be889e6 /src/exchange/test_taler_exchange_aggregator.c
parentf2b2455992213bfcfced766994ca445be5584f91 (diff)
downloadexchange-a7379930d273b53429684603df92411cf39b9976.tar.gz
exchange-a7379930d273b53429684603df92411cf39b9976.tar.bz2
exchange-a7379930d273b53429684603df92411cf39b9976.zip
turn libfakebank into libtalerfakebank so we can use it for testcases in the merchant
Diffstat (limited to 'src/exchange/test_taler_exchange_aggregator.c')
-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 ();