taler-typescript-core

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

commit 08e88c0b1565afcf899a1a698dedd5fd1dfe10a2
parent 25578cf199015938c49972be5bb4374dc9d5f1b6
Author: Florian Dold <florian@dold.me>
Date:   Wed,  1 Jul 2026 20:11:50 +0200

-fix prepared transfer type

Diffstat:
Mpackages/taler-wallet-core/src/common.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/taler-wallet-core/src/common.ts b/packages/taler-wallet-core/src/common.ts @@ -1217,7 +1217,7 @@ export async function prepareTransferOptionsRaw( authorization_sig: mySig.sig, credit_amount: transferAmount, recurrent: false, - type: "reserve", + type: req.isKyc ? "kyc" : "reserve", }), ); for (const opt of resp.subjects) {