commit 1409a7664f5095120c78e72c34ec37fa3c8b511d
parent 79950811a669e6375ad0365ee88e258b2ec36595
Author: Özgür Kesim <oec-taler@kesim.org>
Date: Wed, 26 Mar 2025 15:03:22 +0100
[exchange] add h_planchets to withdraw history
Diffstat:
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/core/api-exchange.rst b/core/api-exchange.rst
@@ -2435,7 +2435,11 @@ Reserve History
// The hash of the withdraw commitment (TALER_WithdrawCommitmentHashP)
// from the previous call to /withdraw.
- withdraw_commitment_h: HashCode;
+ h_commitment: HashCode;
+
+ // The hash of the all the planchets that were provided during the
+ // call to /withdraw. Needed to re-calculate withdraw_commitment_h
+ h_planchets: HashCode;
// The array of blinded coins to be signed.
h_coin_evs: HashCode[];
@@ -2450,6 +2454,7 @@ Reserve History
// The noreveal index that was returned as part
// of a age-restricted withdraw, if applicable
noreveal_index?: Integer;
+
}