File tree Expand file tree Collapse file tree 5 files changed +9
-4
lines changed Expand file tree Collapse file tree 5 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 409
409
}
410
410
}
411
411
}
412
+ },
413
+ "Bitcoin" : {
414
+
412
415
},
413
416
"Bitcoin Balance" : {
414
417
"localizations" : {
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ import Foundation
11
11
private class BDKService {
12
12
static var shared : BDKService = BDKService ( )
13
13
14
- private let service : BDKSyncService = KyotoService . live
15
- // private let service: BDKSyncService = EsploraService.live
14
+ // private let service: BDKSyncService = KyotoService.live
15
+ private let service : BDKSyncService = EsploraService . live
16
16
private let keyClient : KeyClient
17
17
private var needsFullScan : Bool = false
18
18
private( set) var network : Network
Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ extension KyotoService {
14
14
15
15
final class KyotoService: BDKSyncService {
16
16
17
- private static let nodeHeight : UInt32 = 250_000
17
+ // private static let nodeHeight: UInt32 = 250_000
18
+ private static let nodeHeight : UInt32 = 800_000
18
19
19
20
static let shared = KyotoService ( )
20
21
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ struct Constants {
16
16
private static let blockstream = " https://blockstream.info/api "
17
17
private static let mempoolspace = " https://mempool.space/api "
18
18
static let allValues = [
19
- mempoolspace,
20
19
blockstream,
20
+ mempoolspace,
21
21
]
22
22
}
23
23
struct Regtest {
Original file line number Diff line number Diff line change @@ -112,6 +112,7 @@ struct OnboardingView: View {
112
112
113
113
Group {
114
114
Picker ( " Network " , selection: $viewModel. selectedNetwork) {
115
+ Text ( " Bitcoin " ) . tag ( Network . bitcoin)
115
116
Text ( " Signet " ) . tag ( Network . signet)
116
117
Text ( " Testnet " ) . tag ( Network . testnet)
117
118
Text ( " Testnet4 " ) . tag ( Network . testnet4)
You can’t perform that action at this time.
0 commit comments