commit 28eeec7642706852b89e52e0448ede8df23fd61a
parent 1a1283f5fff6adc472432d2d4553450d112da028
Author: Christian Grothoff <christian@grothoff.org>
Date: Tue, 3 Feb 2026 23:10:25 +0100
revise spec for #10964: re-use more of what we already have
Diffstat:
1 file changed, 15 insertions(+), 15 deletions(-)
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
@@ -4622,11 +4622,6 @@ Inspecting orders
// available, otherwise empty array.
wire_details: TransactionWireTransfer[];
- // Details about how the order is expected to be
- // settled by each exchange.
- // @since **v26**.
- settlement_details: ExchangeOrderSettlementDetails[];
-
// Groups about trouble obtaining wire transfer details,
// empty array if no trouble were encountered.
// @deprecated in protocol **v6**.
@@ -4735,9 +4730,23 @@ Inspecting orders
execution_time: Timestamp;
// Total amount that has been wire transferred
- // to the merchant.
+ // to the merchant from this exchange for this
+ // purchase. The ``deposit_fee`` was already
+ // subtracted. However, the ``wire_fee`` may still
+ // apply (but not to the order, only to the aggregated transfer).
amount: Amount;
+ // Deposit fees to be paid to the
+ // exchange for this order.
+ // Since **v25**.
+ deposit_fee: Amount;
+
+ // Wire fee anticipated by the merchant. Note
+ // that it might not be charged at all if the
+ // order is aggregated with another order.
+ // Since **v25**.
+ wire_fee: Amount;
+
// Was this transfer confirmed by the merchant via the
// POST /transfers API, or is it merely claimed by the exchange?
confirmed: boolean;
@@ -4754,15 +4763,6 @@ Inspecting orders
// Responsible exchange.
exchange_url: string;
- // Wire fee anticipated by the merchant. Note
- // that it might not be charged at all if the
- // order is aggregated with another order.
- wire_fee: Amount;
-
- // Deposit fees to be paid to the
- // exchange for this order.
- deposit_fee: Amount;
-
// Remaining deposit total to be paid,
// that is the total amount of the order
// minus any refunds that were granted.