Fix swift CI: remove call to missing method

This commit is contained in:
ok300
2023-11-20 13:33:07 +01:00
parent 7ea26f7ddd
commit 03323f0a16

View File

@@ -3,9 +3,9 @@
print("Hello, tester!")
if let sdk = try gettingStarted(){
if let fiarRates = getFiatCurrencyAndRates(sdk: sdk) {
for fiat in fiarRates {
print("rate \(fiat)\n")
if let fiatRates = getCurrentRates(sdk: sdk) {
for rate in fiatRates {
print("rate \(rate)\n")
print("------------------------")
}
}