diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-03-02 21:02:46 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-03-02 21:02:46 +0100 |
commit | 531272a92a5aa08559436138ff5106a6bff1b361 (patch) | |
tree | 47ac2d3e701cb01048eab816caaec2f7a959912c /src/include | |
parent | 9f837ad6cdcc8c837a6014abe555909ff9ce094c (diff) |
towards fixing #4230
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_bank_service.h | 6 |
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); |