taler-typescript-core

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

commit 3a80734c6974a9b15f73e25294d56c4cdd8e103d
parent 8031e4bb5dc09fa479cf4df86b815e4b86ec587b
Author: Sebastian <sebasjm@gmail.com>
Date:   Fri,  2 Aug 2024 11:57:10 -0300

fix extra character on global scope info

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

diff --git a/packages/taler-util/src/types-taler-wallet.ts b/packages/taler-util/src/types-taler-wallet.ts @@ -585,7 +585,7 @@ export type ScopeInfo = ScopeInfoGlobal | ScopeInfoExchange | ScopeInfoAuditor; export function stringifyScopeInfo(si: ScopeInfo): string { switch (si.type) { case ScopeType.Global: - return `taler-si:global/${si.currency}}`; + return `taler-si:global/${si.currency}`; case ScopeType.Auditor: return `taler-si:auditor/${si.currency}/${encodeURIComponent(si.url)}`; case ScopeType.Exchange: