web3.swift icon indicating copy to clipboard operation
web3.swift copied to clipboard

Xcode 14.0 thread warning

Open ismail9001 opened this issue 2 years ago • 1 comments

        let group = DispatchGroup()
        group.enter()

        var network: EthereumNetwork?
        net_version { result in
            switch result {
            case .success(let data):
                network = data
            case .failure(let error):
                self.logger.warning("Client has no network: \(error.localizedDescription)")
            }

            group.leave()
        }

        group.wait()
``` - Thread running at QOS_CLASS_USER_INTERACTIVE waiting on a lower QoS thread running at QOS_CLASS_BACKGROUND. Investigate ways to avoid priority inversions

ismail9001 avatar Sep 15 '22 13:09 ismail9001

same here

Tomas-Shao avatar Oct 10 '22 14:10 Tomas-Shao