taler-typescript-core

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

commit 32c1b090e9975a6d7019e4af7ba8a57ee36251c8
parent b1889d732f6b32bc7f77e76651d75285a74e765f
Author: Florian Dold <florian@dold.me>
Date:   Sat, 30 May 2026 01:57:08 +0200

harness: fix usage of taler-exchange-offline

Diffstat:
Mpackages/taler-harness/src/harness/harness.ts | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/packages/taler-harness/src/harness/harness.ts b/packages/taler-harness/src/harness/harness.ts @@ -1804,8 +1804,7 @@ export class ExchangeService implements ExchangeServiceInterface { optArgs.push("conversion-url", acct.conversionUrl); } if (acct.preparedTransferUrl) { - // FIXME: The exchange tooling has the wrong name for this option! - optArgs.push("wire-transfer-gateway", acct.preparedTransferUrl); + optArgs.push("prepared-transfer-url", acct.preparedTransferUrl); } if (acct.accountRestrictions != null) { optArgs.push(...acct.accountRestrictions.flat(1));