taler-docs

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

commit 2eafb8d93da56243980e4d9a0dbc1014642780bc
parent 2fd3f15b2bf81b5314644f480184127277489599
Author: Özgür Kesim <oec-taler@kesim.org>
Date:   Fri, 18 Apr 2025 11:05:33 +0200

[exchange] rename parameter in /reveal-melt

Diffstat:
Mcore/api-exchange.rst | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/api-exchange.rst b/core/api-exchange.rst @@ -2144,14 +2144,14 @@ These endpoints are called by the client .. ts:def:: RevealMeltRequest interface RevealMeltRequest { - // The melt commitment from the ``/melt/`` step, + // The commitment from the ``/melt/`` step, // i.e. the SHA512 value of // 1. refresh_seed // 2. blinding_seed, if applicable, skip otherwise // 3. list of denomination hashes, in order // 4. amount with fee (NBO) // 5. kappa*n planchet hashes, depths first: [0..n)[0..n)[0..n) - commitment: string; + rc: string; // The disclosed kappa-1 arrays of signatures, one per coin, signed by // the old coin's private key, over the derived nonce values per coin. @@ -2162,7 +2162,7 @@ These endpoints are called by the client // vector of public keys, or omitted otherwise. // The size of the vector MUST be the number of age groups as defined by the // Exchange in the field ``.age_groups`` of the extension ``age_restriction``. - old_age_commitment?: Edx25519PublicKey[]; + age_commitment?: Edx25519PublicKey[]; }