multi: rename chan DB Open method to OpenForTesting

This commit is contained in:
Elle Mouton
2024-11-26 12:31:38 +02:00
parent 4089fbcb44
commit 439a6c7d6c
24 changed files with 101 additions and 331 deletions

View File

@@ -914,11 +914,8 @@ func createTestChannelsForVectors(tc *testContext, chanType channeldb.ChannelTyp
)
// Create temporary databases.
dbRemote, err := channeldb.Open(t.TempDir())
require.NoError(t, err)
dbLocal, err := channeldb.Open(t.TempDir())
require.NoError(t, err)
dbRemote := channeldb.OpenForTesting(t, t.TempDir())
dbLocal := channeldb.OpenForTesting(t, t.TempDir())
// Create the initial commitment transactions for the channel.
feePerKw := chainfee.SatPerKWeight(feeRate)