mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
15 lines
387 B
Go
15 lines
387 B
Go
//go:build !kvdb_etcd
|
|
// +build !kvdb_etcd
|
|
|
|
package itest
|
|
|
|
import "github.com/lightningnetwork/lnd/lntest"
|
|
|
|
// testEtcdFailover is an empty itest when LND is not compiled with etcd
|
|
// support.
|
|
func testEtcdFailover(ht *lntest.HarnessTest) {}
|
|
|
|
// testLeaderHealthCheck is an empty itest when LND is not compiled with etcd
|
|
// support.
|
|
func testLeaderHealthCheck(ht *lntest.HarnessTest) {}
|