kvdb: move channeldb/kvdb to top level

This commit is contained in:
Andras Banki-Horvath
2021-04-26 19:08:11 +02:00
parent b1d9525d29
commit 14c851c8fc
143 changed files with 119 additions and 119 deletions

View File

@@ -6,7 +6,7 @@ import (
"context"
"time"
"github.com/lightningnetwork/lnd/channeldb/kvdb/etcd"
"github.com/lightningnetwork/lnd/kvdb/etcd"
"go.etcd.io/etcd/clientv3"
"go.etcd.io/etcd/clientv3/concurrency"
"go.etcd.io/etcd/clientv3/namespace"

View File

@@ -6,7 +6,7 @@ import (
"context"
"fmt"
"github.com/lightningnetwork/lnd/channeldb/kvdb/etcd"
"github.com/lightningnetwork/lnd/kvdb/etcd"
)
// makeEtcdElector will construct a new etcdLeaderElector. It expects a cancel

View File

@@ -11,7 +11,7 @@ import (
"testing"
"time"
"github.com/lightningnetwork/lnd/channeldb/kvdb/etcd"
"github.com/lightningnetwork/lnd/kvdb/etcd"
"github.com/stretchr/testify/require"
)