taler-typescript-core

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

commit 404af52f6ca6936335ab84ae66b31a59b47df607
parent 80f72ae6397eed4c2eec46c764dda41eb549bcf8
Author: Florian Dold <florian@dold.me>
Date:   Wed, 15 Jul 2026 15:16:44 +0200

wallet-core: properly restrict scope in peer-push-debit

Diffstat:
Mpackages/taler-wallet-core/src/pay-peer-push-debit.ts | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/packages/taler-wallet-core/src/pay-peer-push-debit.ts b/packages/taler-wallet-core/src/pay-peer-push-debit.ts @@ -1067,6 +1067,8 @@ export async function initiatePeerPushDebit( currency, url: req.exchangeBaseUrl, }; + } else if (req.restrictScope != null) { + restrictScope = req.restrictScope; } const pursePair = await wex.cryptoApi.createEddsaKeypair({});