File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed
BDKSwiftExampleWallet/Service/BDK Service Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -117,13 +117,22 @@ private class BDKService {
117
117
let connection = try Connection ( path: persistenceBackendPath) //let sqliteStore = try SqliteStore(path: persistenceBackendPath)
118
118
self . dbService = connection//sqliteStore
119
119
// let changeSet = try sqliteStore.read()
120
- let wallet = try Wallet . load ( //.newOrLoad(
120
+
121
+ // let wallet = try Wallet.load(//.newOrLoad(
122
+ // descriptor: descriptor,
123
+ // changeDescriptor: changeDescriptor,
124
+ // connection: connection//,
125
+ //// changeSet: changeSet,
126
+ //// network: network
127
+ // )
128
+
129
+ let wallet = try Wallet ( //.newOrLoad(
121
130
descriptor: descriptor,
122
- changeDescriptor: changeDescriptor,
123
- connection: connection//,
124
- // changeSet: changeSet,
125
- // network: network
131
+ changeDescriptor: changeDescriptor,
132
+ network: network,
133
+ connection: connection
126
134
)
135
+
127
136
self . wallet = wallet
128
137
}
129
138
You can’t perform that action at this time.
0 commit comments