We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29f41b0 commit 4e77ae6Copy full SHA for 4e77ae6
BDKSwiftExampleWallet/Service/BDK Service/BDKService.swift
@@ -22,14 +22,11 @@ private class BDKService {
22
23
init(keyClient: KeyClient = .live) {
24
self.keyClient = keyClient
25
-
26
let storedNetworkString = try? keyClient.getNetwork() ?? Network.signet.description
27
self.network = Network(stringValue: storedNetworkString ?? "") ?? .signet
28
29
self.esploraURL =
30
try! keyClient.getEsploraURL() ?? Constants.Config.EsploraServerURLNetwork.Signet.mutiny
31
self.esploraClient = EsploraClient(url: self.esploraURL)
32
33
}
34
35
func updateNetwork(_ newNetwork: Network) {
0 commit comments