summaryrefslogtreecommitdiff
path: root/core/api-exchange.rst
diff options
context:
space:
mode:
Diffstat (limited to 'core/api-exchange.rst')
-rw-r--r--core/api-exchange.rst11
1 files changed, 6 insertions, 5 deletions
diff --git a/core/api-exchange.rst b/core/api-exchange.rst
index 536458ec..5fe560a3 100644
--- a/core/api-exchange.rst
+++ b/core/api-exchange.rst
@@ -631,7 +631,7 @@ denomination.
interface DepositRequest {
// Amount to be deposited, can be a fraction of the
// coin's total value.
- f: Amount;
+ contribution: Amount;
// The merchant's account details. This must be a JSON object whose format
// must correspond to one of the supported wire transfer formats of the exchange.
@@ -1354,10 +1354,6 @@ Refunds
// must be larger than the refund fee.
refund_amount: Amount;
- // Refund fee associated with the given coin.
- // must be smaller than the refund amount.
- refund_fee: Amount;
-
// SHA-512 hash of the contact of the merchant with the customer.
h_contract_terms: HashCode;
@@ -1386,4 +1382,9 @@ Refunds
// explicitly as the client might otherwise be confused by clock skew as to
// which signing key was used.
exchange_pub: EddsaPublicKey;
+
+ // Refund fee charged by the exchange for the given coin.
+ // must be smaller than the refund amount.
+ refund_fee: Amount;
+
}