From bc3319a7d2bca2af7aa330ce7c9d070234c5f8bd Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Wed, 26 Jan 2022 11:24:30 +0100 Subject: [PATCH] lntest: set --lnddir instead of --datadir If we only set the --datadir flag then lnd will create empty directories (for letsencrypt and watchtower client) in the default user's home .lnd directory and will also pick up a config file from there if one exists. To instruct lnd to only act within the temp itest directory, we need to use the --lnddir flag instead. Using the --lnddir flag also overwrites the TLS cert/key path and the log dir, so we don't need to explicitly set those anymore. But we need to make sure the node's variables point to the correct default files/directories. --- lntest/harness_node.go | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/lntest/harness_node.go b/lntest/harness_node.go index fbda4c219..4204e4034 100644 --- a/lntest/harness_node.go +++ b/lntest/harness_node.go @@ -222,10 +222,7 @@ func (cfg *BaseNodeConfig) GenArgs() []string { fmt.Sprintf("--restcors=https://%v", cfg.RESTAddr()), fmt.Sprintf("--listen=%v", cfg.P2PAddr()), fmt.Sprintf("--externalip=%v", cfg.P2PAddr()), - fmt.Sprintf("--logdir=%v", cfg.LogDir), - fmt.Sprintf("--datadir=%v", cfg.DataDir), - fmt.Sprintf("--tlscertpath=%v", cfg.TLSCertPath), - fmt.Sprintf("--tlskeypath=%v", cfg.TLSKeyPath), + fmt.Sprintf("--lnddir=%v", cfg.BaseDir), fmt.Sprintf("--adminmacaroonpath=%v", cfg.AdminMacPath), fmt.Sprintf("--readonlymacaroonpath=%v", cfg.ReadMacPath), fmt.Sprintf("--invoicemacaroonpath=%v", cfg.InvoiceMacPath), @@ -408,9 +405,9 @@ func newNode(cfg *BaseNodeConfig) (*HarnessNode, error) { } } cfg.DataDir = filepath.Join(cfg.BaseDir, "data") - cfg.LogDir = filepath.Join(cfg.BaseDir, "log") - cfg.TLSCertPath = filepath.Join(cfg.DataDir, "tls.cert") - cfg.TLSKeyPath = filepath.Join(cfg.DataDir, "tls.key") + cfg.LogDir = filepath.Join(cfg.BaseDir, "logs") + cfg.TLSCertPath = filepath.Join(cfg.BaseDir, "tls.cert") + cfg.TLSKeyPath = filepath.Join(cfg.BaseDir, "tls.key") networkDir := filepath.Join( cfg.DataDir, "chain", "bitcoin", cfg.NetParams.Name,