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 @@ private const val TESTNET_ESPLORA_URL = "https://esplora.testnet.kuutamo.cloud"
class LiveTxBuilderTest {
private val persistenceFilePath = run {
val currentDirectory = System.getProperty("user.dir")
"$currentDirectory/bdk_persistence.db"
"$currentDirectory/bdk_persistence.sqlite"
}
@AfterTest

View File

@@ -11,7 +11,7 @@ private const val TESTNET_ESPLORA_URL = "https://esplora.testnet.kuutamo.cloud"
class LiveWalletTest {
private val persistenceFilePath = run {
val currentDirectory = System.getProperty("user.dir")
"$currentDirectory/bdk_persistence.db"
"$currentDirectory/bdk_persistence.sqlite"
}
@AfterTest

View File

@@ -10,7 +10,7 @@ import kotlin.test.assertFalse
class OfflineWalletTest {
private val persistenceFilePath = run {
val currentDirectory = System.getProperty("user.dir")
"$currentDirectory/bdk_persistence.db"
"$currentDirectory/bdk_persistence.sqlite"
}
@AfterTest