taler-typescript-core

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

commit 4b01560f00acae2642ea0a8dfead86a8cb529cd4
parent d5575c10ba81748f7d5fd9e67507bc800640c9de
Author: Florian Dold <florian@dold.me>
Date:   Sat, 18 Jul 2026 23:44:08 +0200

formatting

Diffstat:
Mpackages/taler-wallet-core/src/wallet.ts | 10+++++++---
1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/packages/taler-wallet-core/src/wallet.ts b/packages/taler-wallet-core/src/wallet.ts @@ -120,6 +120,7 @@ import { ObservableHttpClientLibrary, OpenedPromise, PartialWalletRunConfig, + PaytoType, Paytos, PerformanceTable, PrepareWithdrawExchangeRequest, @@ -287,7 +288,6 @@ import { j2s, openPromise, parseIban, - PaytoType, performanceDelta, performanceNow, safeStringifyException, @@ -1544,7 +1544,9 @@ async function handleGetDepositWireTypes( if (!usable) { continue; } - const parsedPayto = Result.orUndefined(Paytos.fromString(acc.payto_uri)); + const parsedPayto = Result.orUndefined( + Paytos.fromString(acc.payto_uri), + ); if (!parsedPayto) { continue; } @@ -1607,7 +1609,9 @@ async function handleGetDepositWireTypesForCurrency( if (!usable) { continue; } - const parsedPayto = Result.orUndefined(Paytos.fromString(acc.payto_uri)); + const parsedPayto = Result.orUndefined( + Paytos.fromString(acc.payto_uri), + ); if (!parsedPayto) { continue; }