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

@@ -14,7 +14,7 @@ private const val TESTNET_ESPLORA_URL = "https://esplora.testnet.kuutamo.cloud"
@RunWith(AndroidJUnit4::class)
class LiveTxBuilderTest {
private val persistenceFilePath = InstrumentationRegistry
.getInstrumentation().targetContext.filesDir.path + "/bdk_persistence3.db"
.getInstrumentation().targetContext.filesDir.path + "/bdk_persistence3.sqlite"
@AfterTest
fun cleanup() {

View File

@@ -14,7 +14,7 @@ private const val TESTNET_ESPLORA_URL = "https://esplora.testnet.kuutamo.cloud"
@RunWith(AndroidJUnit4::class)
class LiveWalletTest {
private val persistenceFilePath = InstrumentationRegistry
.getInstrumentation().targetContext.filesDir.path + "/bdk_persistence2.db"
.getInstrumentation().targetContext.filesDir.path + "/bdk_persistence2.sqlite"
@AfterTest
fun cleanup() {

View File

@@ -13,7 +13,7 @@ import kotlin.test.AfterTest
@RunWith(AndroidJUnit4::class)
class OfflineWalletTest {
private val persistenceFilePath = InstrumentationRegistry
.getInstrumentation().targetContext.filesDir.path + "/bdk_persistence1.db"
.getInstrumentation().targetContext.filesDir.path + "/bdk_persistence1.sqlite"
@AfterTest
fun cleanup() {