taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit d11dcd09387cfe55de15d68ee1a595e1d2a54928
parent 646f35c6025804d6bd7cd197d9a3899facbdd3c2
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 27 Sep 2022 16:00:04 +0200

-fix spec, required fields missing

Diffstat:
Mcore/api-exchange.rst | 9++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/core/api-exchange.rst b/core/api-exchange.rst @@ -4570,6 +4570,9 @@ naturally expire and possibly (5) wire the funds to a designated account. // a `TALER_WalletReserveAttestRequestSignaturePS`. reserve_sig: EddsaSignature; + // Client's time for the request. + request_timestamp: Timestamp; + // Array of KYC attributes requested. details: String[]; } @@ -4580,7 +4583,11 @@ naturally expire and possibly (5) wire the funds to a designated account. // Signature of purpose // ``TALER_SIGNATURE_EXCHANGE_RESERVE_ATTEST_DETAILS`` over // a `TALER_ExchangeReserveAttestDetailsSignaturePS`. - reserve_sig: EddsaSignature; + exchange_sig: EddsaSignature; + + // Exchange public key used to create the + // signature. + exchange_pub: EddsaPublicKey; // Time when the exchange created the signature. exchange_timestamp: Timestamp;