taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 2fb806742e0a0b04ffca1d10cffdc19a264d5756
parent 5285cd6f27a02e8288cf254450e86524c53792c1
Author: Florian Dold <dold@taler.net>
Date:   Sat, 22 Aug 2026 14:13:05 +0200

util: clarify withdrawal transfer references

Diffstat:
Mpackages/taler-util/src/taleruri.ts | 2+-
Mpackages/taler-util/src/types-taler-wallet-transactions.ts | 5++++-
2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/packages/taler-util/src/taleruri.ts b/packages/taler-util/src/taleruri.ts @@ -73,7 +73,7 @@ export enum TalerUriAction { */ WithdrawExchange = "withdraw-exchange", /** - * https://lsd.gnunet.org/lsd0006/#section-5.11 + * https://lsd.gnunet.org/lsd0006/#section-5.12 */ WithdrawalTransferResult = "withdrawal-transfer-result", /** diff --git a/packages/taler-util/src/types-taler-wallet-transactions.ts b/packages/taler-util/src/types-taler-wallet-transactions.ts @@ -1003,7 +1003,10 @@ export interface TransactionByIdRequest { includeContractTerms?: boolean; } -/** Resolve a wallet-local transaction identifier to its stable identifier. */ +/** + * Resolve a stable transaction ID, a wallet-local identifier, or an external + * withdrawal reference containing a reserve public key to a stable ID. + */ export interface ResolveTransactionReferenceRequest { transactionReference: string; }