commit f802004a95f5bd87165f34e2b35a3cb193159fad
parent b398e1a1d5fdf011ca8b45aa66246340fdf77b7c
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 1 Aug 2021 19:40:47 +0200
-make fieldnames more consistent
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
@@ -1813,12 +1813,12 @@ Inspecting orders
// encountered tracking the wire transfer for this purchase (before
// we even got to specific coin issues).
// 0 if there were no issues.
- exchange_ec: number;
+ exchange_code: number;
// HTTP status code returned by the exchange when we asked for
// information to track the wire transfer for this purchase.
// 0 if there were no issues.
- exchange_hc: number;
+ exchange_http_status: number;
// Total amount that was refunded, 0 if refunded is false.
refund_amount: Amount;
@@ -1932,10 +1932,10 @@ Inspecting orders
hint: string;
// Numerical `error code <error-codes>` from the exchange.
- exchange_ec: number;
+ exchange_code: number;
// HTTP status code received from the exchange.
- exchange_hc: number;
+ exchange_http_status: number;
// Public key of the coin for which we got the exchange error.
coin_pub: CoinPublicKey;