From b314bcc3f15d746fac9b9d863823afa1dd2e98f5 Mon Sep 17 00:00:00 2001 From: Simon McLoughlin Date: Tue, 26 Mar 2024 15:37:14 +0000 Subject: [PATCH] remove dipdup liquidity token checks from tzkt fetch all balances, for now as it serves no purpose --- Sources/KukaiCoreSwift/Clients/TzKTClient.swift | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Sources/KukaiCoreSwift/Clients/TzKTClient.swift b/Sources/KukaiCoreSwift/Clients/TzKTClient.swift index fae24143..1f8dd049 100644 --- a/Sources/KukaiCoreSwift/Clients/TzKTClient.swift +++ b/Sources/KukaiCoreSwift/Clients/TzKTClient.swift @@ -767,7 +767,7 @@ public class TzKTClient { dispatchGroup.enter() - dispatchGroup.enter() + //dispatchGroup.enter() // Get XTZ balance from TzKT Account self.getAccount(forAddress: address) { result in @@ -781,7 +781,8 @@ public class TzKTClient { dispatchGroup.leave() } - + // TODO: DeFi functionality currently disabled + /* // Get Liquidity Tokens from DipDup self.dipDupClient.getLiquidityFor(address: address) { result in switch result { @@ -793,6 +794,7 @@ public class TzKTClient { } dispatchGroup.leave() } + */ // Cycle through the number of token balance requests needed to be performed (likely just 1)