chore: update rust bdk_wallet to alpha 12

This commit also introduces the sqlite store and removes the flat file
 store
This commit is contained in:
thunderbiscuit
2024-05-28 09:36:20 -04:00
parent e5e7aba208
commit 19b4e1159a
24 changed files with 330 additions and 197 deletions

View File

@@ -11,7 +11,7 @@ final class LiveWalletTests: XCTestCase {
super.setUp()
let fileManager = FileManager.default
let documentDirectory = fileManager.urls(for: .documentDirectory, in: .userDomainMask).first!
let uniqueDbFileName = "bdk_persistence_\(UUID().uuidString).db"
let uniqueDbFileName = "bdk_persistence_\(UUID().uuidString).sqlite"
dbFilePath = documentDirectory.appendingPathComponent(uniqueDbFileName)
if fileManager.fileExists(atPath: dbFilePath.path) {