commit 8686b12becffc450ba93ea19fd9387b0fd98747b parent a292ae9564ce0522145010f11e62071a662d7e94 Author: Marc Stibane <marc@taler.net> Date: Tue, 22 Jul 2025 21:33:54 +0200 fix currency name Diffstat:
| M | TalerWallet1/Views/Settings/SettingsView.swift | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/TalerWallet1/Views/Settings/SettingsView.swift b/TalerWallet1/Views/Settings/SettingsView.swift @@ -224,7 +224,7 @@ struct SettingsView: View { Task { // runs on MainActor symLog.log("Withdraw TESTKUDOS") let cent = UInt64.random(in: 110...195) * 100 - let amount = Amount(currency: DEMOCURRENCY, cent: cent) + let amount = Amount(currency: TESTCURRENCY, cent: cent) try? await model.loadTestKudos(1, amount: amount) } }