diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-01-08 23:29:00 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-01-08 23:29:00 +0100 |
commit | eb39a79ad1ea0646d05c19a19d3220cd143222f2 (patch) | |
tree | 2c1ade1b92d8745145c1505ad76bf81efd10056d | |
parent | 0a6602e0254a8cb52f7b680a0e04fbe8085222ad (diff) | |
download | docs-eb39a79ad1ea0646d05c19a19d3220cd143222f2.tar.gz docs-eb39a79ad1ea0646d05c19a19d3220cd143222f2.tar.bz2 docs-eb39a79ad1ea0646d05c19a19d3220cd143222f2.zip |
use Integer for wire_reference, use Integer instead of 'number' for consistency
-rw-r--r-- | core/api-exchange.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/api-exchange.rst b/core/api-exchange.rst index 46c36b5..7d295cc 100644 --- a/core/api-exchange.rst +++ b/core/api-exchange.rst @@ -955,7 +955,7 @@ exchange. // Opaque identifier internal to the exchange that // uniquely identifies the wire transfer that credited the reserve. - wire_reference: Base32; + wire_reference: Integer; // Timestamp of the incoming wire transfer. timestamp: Timestamp; @@ -1415,7 +1415,7 @@ the API during normal operation. interface MeltResponse { // Which of the ``kappa`` indices does the client not have to reveal. - noreveal_index: number; + noreveal_index: Integer; // Signature of `TALER_RefreshMeltConfirmationPS` whereby the exchange // affirms the successful melt and confirming the ``noreveal_index`` @@ -1915,7 +1915,7 @@ Refunds h_contract_terms: HashCode; // 64-bit transaction id of the refund transaction between merchant and customer - rtransaction_id: number; + rtransaction_id: Integer; // EdDSA public key of the merchant. merchant_pub: EddsaPublicKey; @@ -1949,7 +1949,7 @@ Refunds // related to the deposit value being insufficient for the requested // refund(s), or the requested refund conflicting due to refund // transaction number re-use (with different amounts). - code: number; + code: Integer; // Human-readable description of the error message hint: string; |