taler-typescript-core

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

commit 06bb39c649dead187ebe04bbb3cebcade51fc8b1
parent 0b15b35679546b1a1b15dec3429c84098b6edd46
Author: Sebastian <sebasjm@taler-systems.com>
Date:   Sat, 28 Feb 2026 09:57:00 -0300

less kyc wire transfer value

Diffstat:
Mpackages/merchant-backoffice-ui/src/components/modal/index.tsx | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/packages/merchant-backoffice-ui/src/components/modal/index.tsx b/packages/merchant-backoffice-ui/src/components/modal/index.tsx @@ -434,7 +434,8 @@ export function ValidBankAccount({ : origin.displayName; const { config } = useSessionContext(); - const sendAmount = Amounts.parseOrThrow(`${config.currency}:1`); + // FIXME: define a minimum by currency somewhere https://bugs.gnunet.org/view.php?id=11169 + const sendAmount = Amounts.parseOrThrow(`${config.currency}:0.01`); payto.params["amount"] = Amounts.stringify(sendAmount); const qrs = getQrCodesForPayto(Paytos.toFullString(payto)); const strPayto = Paytos.toFullString(payto);