summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/api-auditor.rst6
-rw-r--r--core/api-common.rst1
2 files changed, 7 insertions, 0 deletions
diff --git a/core/api-auditor.rst b/core/api-auditor.rst
index cd0071e5..321d203e 100644
--- a/core/api-auditor.rst
+++ b/core/api-auditor.rst
@@ -162,6 +162,9 @@ paid out first.
// Hash over the contract for which this deposit is made.
h_contract_terms: HashCode;
+ // Hash over the extensions.
+ h_extensions: HashCode;
+
// Hash over the wiring information of the merchant.
h_wire: HashCode;
@@ -172,6 +175,9 @@ paid out first.
// request? Zero if refunds are not allowed.
refund_deadline: Timestamp;
+ // By what time does the exchange have to wire the funds?
+ wire_deadline: Timestamp;
+
// Amount to be deposited, excluding fee. Calculated from the
// amount with fee and the fee from the deposit request.
amount_without_fee: Amount;
diff --git a/core/api-common.rst b/core/api-common.rst
index b6bd02a4..51a1faba 100644
--- a/core/api-common.rst
+++ b/core/api-common.rst
@@ -796,6 +796,7 @@ within the
struct GNUNET_CRYPTO_EccSignaturePurpose purpose;
struct TALER_PrivateContractHash h_contract_terms;
struct TALER_MerchantWireHash h_wire;
+ struct TALER_ExtensionContractHash h_extensions;
struct GNUNET_TIME_AbsoluteNBO timestamp;
struct GNUNET_TIME_AbsoluteNBO refund_deadline;
struct TALER_AmountNBO amount_without_fee;