From a814e30af0a693c4802e84307fda9c7930557a0b Mon Sep 17 00:00:00 2001 From: Andrei Ashikhmin Date: Tue, 31 Oct 2023 19:10:25 +0700 Subject: [PATCH] fix: change the source of exchange rates from dashretail.org to ctx.com --- .../Price/FetchOperations/DSFetchDashRetailPricesOperation.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DashSync/shared/Models/Managers/Service Managers/Price/FetchOperations/DSFetchDashRetailPricesOperation.m b/DashSync/shared/Models/Managers/Service Managers/Price/FetchOperations/DSFetchDashRetailPricesOperation.m index a3d26fabd..9db2a44fc 100644 --- a/DashSync/shared/Models/Managers/Service Managers/Price/FetchOperations/DSFetchDashRetailPricesOperation.m +++ b/DashSync/shared/Models/Managers/Service Managers/Price/FetchOperations/DSFetchDashRetailPricesOperation.m @@ -21,7 +21,7 @@ NS_ASSUME_NONNULL_BEGIN -#define DASHRETAIL_TICKER_URL @"https://rates2.dashretail.org/rates?source=dashretail" +#define DASHRETAIL_TICKER_URL @"https://rates.ctx.com/rates?source=ctx" // former https://rates2.dashretail.org/ @interface DSFetchDashRetailPricesOperation () @@ -61,7 +61,7 @@ - (void)finishedWithErrors:(NSArray *)errors { } + (NSString *)priceSourceInfo { - return @"dashretail.org"; + return @"ctx.com"; } @end