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:
parent
f9a07ad6f3
commit
73aa40f00e
@ -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
|
||||||
|
@ -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 (
|
||||||
|
Loading…
Reference in New Issue
Block a user