diff options
author | Christian Grothoff <christian@grothoff.org> | 2022-09-27 16:00:04 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2022-09-27 16:00:10 +0200 |
commit | d11dcd09387cfe55de15d68ee1a595e1d2a54928 (patch) | |
tree | d7b51f9b43e68ac84f4068fab3d11986233d7be2 | |
parent | 646f35c6025804d6bd7cd197d9a3899facbdd3c2 (diff) | |
download | docs-d11dcd09387cfe55de15d68ee1a595e1d2a54928.tar.gz docs-d11dcd09387cfe55de15d68ee1a595e1d2a54928.tar.bz2 docs-d11dcd09387cfe55de15d68ee1a595e1d2a54928.zip |
-fix spec, required fields missing
-rw-r--r-- | core/api-exchange.rst | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/core/api-exchange.rst b/core/api-exchange.rst index 720d5a82..69cdcb21 100644 --- 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; |