From e6ced8ee7a984cb47c5a8c1afca93070f0e254d5 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Wed, 21 Sep 2016 19:45:22 -0700 Subject: [PATCH] test: ensure tests nodes are started with the debughtlc flag --- lnd_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnd_test.go b/lnd_test.go index f1783179..6a45c207 100644 --- a/lnd_test.go +++ b/lnd_test.go @@ -366,7 +366,7 @@ func TestLightningNetworkDaemon(t *testing.T) { // With the btcd harness created, we can now complete the // initialization of the network. args - list of lnd arguments, // example: "--debuglevel=debug" - args := []string{} + args := []string{"--debughtlc"} if err := lightningNetwork.InitializeSeedNodes(btcdHarness, args); err != nil { t.Fatalf("unable to initialize seed nodes: %v", err) }