summaryrefslogtreecommitdiff
path: root/src/bank-lib/test_bank_interpreter.c
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2017-05-09 17:35:07 +0200
committerMarcello Stanisci <marcello.stanisci@inria.fr>2017-05-10 15:50:41 +0200
commit75f47e79e1bb27817fb9527ad074b652b11cdd20 (patch)
tree376c530775394f97236c00f5c5f8ed836df9bc2b /src/bank-lib/test_bank_interpreter.c
parentedf24557bf07c92dd9b57fbf14923ec9c8ea77d4 (diff)
downloadexchange-75f47e79e1bb27817fb9527ad074b652b11cdd20.tar.gz
exchange-75f47e79e1bb27817fb9527ad074b652b11cdd20.tar.bz2
exchange-75f47e79e1bb27817fb9527ad074b652b11cdd20.zip
initial fixes to test exchange/bank interfacing
Diffstat (limited to 'src/bank-lib/test_bank_interpreter.c')
-rw-r--r--src/bank-lib/test_bank_interpreter.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/bank-lib/test_bank_interpreter.c b/src/bank-lib/test_bank_interpreter.c
index 96036054d..7918169cb 100644
--- a/src/bank-lib/test_bank_interpreter.c
+++ b/src/bank-lib/test_bank_interpreter.c
@@ -565,8 +565,8 @@ interpreter_run (void *cls)
return;
}
auth.method = TALER_BANK_AUTH_BASIC; /* or "NONE"? */
- auth.details.basic.username = "user";
- auth.details.basic.password = "pass";
+ auth.details.basic.username = "Exchange";
+ auth.details.basic.password = "x";
switch (cmd->oc)
{
case TBI_OC_END:
@@ -609,6 +609,8 @@ interpreter_run (void *cls)
case TBI_OC_HISTORY:
if (NULL != cmd->details.history.start_row_ref)
{
+ /*In case history is to be found from some other commad's
+ output, like from /admin/add/incoming*/
ref = find_command (is,
cmd->details.history.start_row_ref);
GNUNET_assert (NULL != ref);
@@ -623,7 +625,7 @@ interpreter_run (void *cls)
rowid = UINT64_MAX;
cmd->details.history.hh
= TALER_BANK_history (is->ctx,
- "http://localhost:8081",
+ "http://localhost:8080",
&auth,
cmd->details.history.account_number,
cmd->details.history.direction,