multi: update walletdb package

This commit is contained in:
ziggie
2025-04-09 12:13:48 +02:00
parent 867d27d68a
commit 490347b056
25 changed files with 55 additions and 31 deletions

View File

@@ -3294,8 +3294,9 @@ func runTests(t *testing.T, walletDriver *lnwallet.WalletDriver,
// Start Alice - open a database, start a neutrino
// instance, and initialize a btcwallet driver for it.
aliceDB, err := walletdb.Create(
"bdb", tempTestDirAlice+"/neutrino.db", true,
kvdb.DefaultDBTimeout,
kvdb.BoltBackendName,
filepath.Join(tempTestDirAlice, "neutrino.db"),
true, kvdb.DefaultDBTimeout, false,
)
if err != nil {
t.Fatalf("unable to create DB: %v", err)
@@ -3323,8 +3324,9 @@ func runTests(t *testing.T, walletDriver *lnwallet.WalletDriver,
// Start Bob - open a database, start a neutrino
// instance, and initialize a btcwallet driver for it.
bobDB, err := walletdb.Create(
"bdb", tempTestDirBob+"/neutrino.db", true,
kvdb.DefaultDBTimeout,
kvdb.BoltBackendName,
filepath.Join(tempTestDirBob, "neutrino.db"),
true, kvdb.DefaultDBTimeout, false,
)
if err != nil {
t.Fatalf("unable to create DB: %v", err)