lnwallet+kvdb: remove duplicate bdb backend imports

We only want to register the bbolt DB backend ("bdb") when we're not
compiling for a JS/WASM build targets. That's why we want to have that
import in only one file that we can add a build tag to. We remove it in
two other places since only one import is enough anyway.
This commit is contained in:
Oliver Gugger 2021-07-15 10:34:27 +02:00
parent f9a07ad6f3
commit 73aa40f00e
No known key found for this signature in database
GPG Key ID: 8E4256593F177720
2 changed files with 0 additions and 7 deletions

View File

@ -2,7 +2,6 @@ package kvdb
import ( import (
"github.com/btcsuite/btcwallet/walletdb" "github.com/btcsuite/btcwallet/walletdb"
_ "github.com/btcsuite/btcwallet/walletdb/bdb" // Import to register backend.
) )
// Update opens a database read/write transaction and executes the function f // Update opens a database read/write transaction and executes the function f

View File

@ -9,12 +9,6 @@ import (
"github.com/btcsuite/btcwallet/chain" "github.com/btcsuite/btcwallet/chain"
"github.com/btcsuite/btcwallet/wallet" "github.com/btcsuite/btcwallet/wallet"
// This is required to register bdb as a valid walletdb driver. In the
// init function of the package, it registers itself. The import is used
// to activate the side effects w/o actually binding the package name to
// a file-level variable.
_ "github.com/btcsuite/btcwallet/walletdb/bdb"
) )
var ( var (