summaryrefslogtreecommitdiff
path: root/src/include/taler_bank_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2023-10-12 22:10:00 +0200
committerChristian Grothoff <grothoff@gnunet.org>2023-10-12 22:10:00 +0200
commit0cd18a0f8f2545eb1212c504683a8a70007caa48 (patch)
treeb0b484085308961f44622c319209792589c21543 /src/include/taler_bank_service.h
parent5b1fc2a9765465cf374b2feb7419a0e5200e4411 (diff)
downloadexchange-0cd18a0f8f2545eb1212c504683a8a70007caa48.tar.gz
exchange-0cd18a0f8f2545eb1212c504683a8a70007caa48.tar.bz2
exchange-0cd18a0f8f2545eb1212c504683a8a70007caa48.zip
clean up bank API, get test_bank_api_with_nexus to finally pass
Diffstat (limited to 'src/include/taler_bank_service.h')
-rw-r--r--src/include/taler_bank_service.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/include/taler_bank_service.h b/src/include/taler_bank_service.h
index e0970cb12..e8e32947b 100644
--- a/src/include/taler_bank_service.h
+++ b/src/include/taler_bank_service.h
@@ -367,10 +367,6 @@ struct TALER_BANK_CreditDetails
*/
const char *debit_account_uri;
- /**
- * payto://-URL of the target account that received the funds.
- */
- const char *credit_account_uri;
};
@@ -410,6 +406,11 @@ struct TALER_BANK_CreditHistoryResponse
{
/**
+ * payto://-URL of the target account that received the funds.
+ */
+ const char *credit_account_uri;
+
+ /**
* Array of transactions received.
*/
const struct TALER_BANK_CreditDetails *details;
@@ -518,11 +519,6 @@ struct TALER_BANK_DebitDetails
const char *exchange_base_url;
/**
- * payto://-URI of the source account that send the funds.
- */
- const char *debit_account_uri;
-
- /**
* payto://-URI of the target account that received the funds.
*/
const char *credit_account_uri;
@@ -566,6 +562,11 @@ struct TALER_BANK_DebitHistoryResponse
{
/**
+ * payto://-URI of the source account that send the funds.
+ */
+ const char *debit_account_uri;
+
+ /**
* Array of transactions initiated.
*/
const struct TALER_BANK_DebitDetails *details;