commit 63e15c1e4fc77af870f2bd4b3121f6bc09ef5f47
parent 4e8fe2e4375fed4abba5e4957ace24c1047608ed
Author: Marc Stibane <marc@taler.net>
Date: Wed, 4 Dec 2024 07:05:07 +0100
don't add to knownBankAccounts
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/TalerWallet1/Model/Model+Settings.swift b/TalerWallet1/Model/Model+Settings.swift
@@ -19,6 +19,7 @@ fileprivate struct WithdrawTestBalanceRequest: WalletBackendFormattedRequest {
func operation() -> String { "withdrawTestBalance" }
func args() -> Args { Args(amount: amount,
corebankApiBaseUrl: bankBaseUrl,
+ useForeignAccount: true,
exchangeBaseUrl: exchangeBaseUrl)
}
@@ -30,6 +31,7 @@ fileprivate struct WithdrawTestBalanceRequest: WalletBackendFormattedRequest {
var amount: Amount
// var bankBaseUrl: String // <= this should be the correct parameter name
var corebankApiBaseUrl: String // <= but this is used by wallet-core
+ var useForeignAccount: Bool
var exchangeBaseUrl: String
}
}