taler-docs

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

commit e4363ca4d44b6d57b0d8d8dcdcb812760f67112e
parent 736dce28bb902eee5bddb657e44c85fd6c15719e
Author: Özgür Kesim <oec-taler@kesim.org>
Date:   Sun,  4 May 2025 17:47:27 +0200

[exchange] added missing refresh_seed to new MeltRequest

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

diff --git a/core/api-exchange.rst b/core/api-exchange.rst @@ -3507,6 +3507,10 @@ by anyone except the wallet itself. // + sum over all withdraw fees for the fresh coins value_with_fee: Amount; + // Seed from which the nonces for the n*κ coin candidates are derived + // from. + refresh_seed: HashCode; + // Master seed for the Clause-Schnorr R-value // creation. Must match the /blinding-prepare request. // Must not have been used in any prior melt request. @@ -3518,9 +3522,9 @@ by anyone except the wallet itself. // for the new coins to order. denoms_h: HashCode[]; - // Array of ``n`` entries with ``kappa`` many blinded coin candidates, - // matching the respective entries in ``denoms_h``. - coin_evs: CoinEnvelope[][kappa]; + // ``kappa`` arrays of ``n`` entries for blinded coin candidates, + // each matching the respective entries in ``denoms_h``. + coin_evs: CoinEnvelope[kappa][]; // Signature by the `coin <coin-priv>` over `TALER_RefreshMeltCoinAffirmationPS`. confirm_sig: EddsaSignature;