Browse Source

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.
master
Oliver Gugger 3 years ago
parent
commit
73aa40f00e
No known key found for this signature in database
GPG Key ID: 8E4256593F177720
  1. 1
      kvdb/interface.go
  2. 6
      lnwallet/btcwallet/config.go

1
kvdb/interface.go

@ -2,7 +2,6 @@ package kvdb
import (
"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

6
lnwallet/btcwallet/config.go

@ -9,12 +9,6 @@ import (
"github.com/btcsuite/btcwallet/chain"
"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 (

Loading…
Cancel
Save