aboutsummaryrefslogtreecommitdiff
path: root/src/include/taler_bank_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-03-04 11:57:57 +0100
committerChristian Grothoff <christian@grothoff.org>2016-03-04 11:57:57 +0100
commitaba92c5bfa3efa9a7cabf2fc85b1f14bea2d8307 (patch)
treefec44c7e61e47592f5468632e5823fc3e48e679e /src/include/taler_bank_service.h
parentd06fb4d8182e5213e6d59cf0c5fe2c8d4c4cef36 (diff)
parent17ff4f5e97b981f0b3eebd6e3923fe60dc75edd5 (diff)
downloadexchange-aba92c5bfa3efa9a7cabf2fc85b1f14bea2d8307.tar.xz
modify /wire/test to provide bank URI and bank account numbers
Diffstat (limited to 'src/include/taler_bank_service.h')
-rw-r--r--src/include/taler_bank_service.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/taler_bank_service.h b/src/include/taler_bank_service.h
index a4f33fc97..508ca714b 100644
--- a/src/include/taler_bank_service.h
+++ b/src/include/taler_bank_service.h
@@ -133,7 +133,8 @@ typedef void
* @param reserve_pub public key of the reserve
* @param amount amount that was deposited
* @param execution_date when did we receive the amount
- * @param account_no account number (53 bits at most)
+ * @param debit_account_no account number to withdraw from (53 bits at most)
+ * @param credit_account_no account number to deposit into (53 bits at most)
* @param res_cb the callback to call when the final result for this request is available
* @param res_cb_cls closure for the above callback
* @return NULL
@@ -144,7 +145,8 @@ struct TALER_BANK_AdminAddIncomingHandle *
TALER_BANK_admin_add_incoming (struct TALER_BANK_Context *bank,
const struct TALER_WireTransferIdentifierRawP *wtid,
const struct TALER_Amount *amount,
- uint64_t account_no,
+ uint64_t debit_account_no,
+ uint64_t credit_account_no,
TALER_BANK_AdminAddIncomingResultCallback res_cb,
void *res_cb_cls);