diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-05-15 10:55:47 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-05-16 11:05:00 +0200 |
commit | be3b891dbd9b1532b9dca91629d478cc3933dfdc (patch) | |
tree | 485e1ee4e3c4e9cbd3dc5bdddbf59a77dbefa332 /src/bank-lib/test_bank_interpreter.c | |
parent | d3fac1856277e6a832c261f1820ed34a95301e1d (diff) |
fix port numbers, no longer 8081 but on 8080; and box json array /history response in {data} as required by API
Diffstat (limited to 'src/bank-lib/test_bank_interpreter.c')
-rw-r--r-- | src/bank-lib/test_bank_interpreter.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bank-lib/test_bank_interpreter.c b/src/bank-lib/test_bank_interpreter.c index c53d53a56..bfd744a0b 100644 --- a/src/bank-lib/test_bank_interpreter.c +++ b/src/bank-lib/test_bank_interpreter.c @@ -290,7 +290,7 @@ build_history (struct InterpreterState *is, "type", "test", "bank_uri", - "http://localhost:8081", + "http://localhost:8080", "account_number", (json_int_t) pos->details.admin_add_incoming.debit_account_no); GNUNET_assert (NULL != h[total].details.account_details); @@ -305,7 +305,7 @@ build_history (struct InterpreterState *is, "type", "test", "bank_uri", - "http://localhost:8081", + "http://localhost:8080", "account_number", (json_int_t) pos->details.admin_add_incoming.credit_account_no); GNUNET_assert (NULL != h[total].details.account_details); @@ -853,7 +853,7 @@ TBI_run_interpreter (int *resultp, is = GNUNET_new (struct InterpreterState); if (GNUNET_YES == run_bank) - is->fakebank = TALER_FAKEBANK_start (8081); + is->fakebank = TALER_FAKEBANK_start (8080); is->resultp = resultp; is->commands = commands; is->ctx = GNUNET_CURL_init (&GNUNET_CURL_gnunet_scheduler_reschedule, |