config: add WatchtowerKeyPath Tor option
Co-authored-by: Turtle <orbitalturtle@protonmail.com>
This commit is contained in:
parent
a2336005e6
commit
f1fd5e86c0
15
config.go
15
config.go
@ -231,6 +231,7 @@ type torConfig struct {
|
|||||||
V2 bool `long:"v2" description:"Automatically set up a v2 onion service to listen for inbound connections"`
|
V2 bool `long:"v2" description:"Automatically set up a v2 onion service to listen for inbound connections"`
|
||||||
V3 bool `long:"v3" description:"Automatically set up a v3 onion service to listen for inbound connections"`
|
V3 bool `long:"v3" description:"Automatically set up a v3 onion service to listen for inbound connections"`
|
||||||
PrivateKeyPath string `long:"privatekeypath" description:"The path to the private key of the onion service being created"`
|
PrivateKeyPath string `long:"privatekeypath" description:"The path to the private key of the onion service being created"`
|
||||||
|
WatchtowerKeyPath string `long:"watchtowerkeypath" description:"The path to the private key of the watchtower onion service being created"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// config defines the configuration options for lnd.
|
// config defines the configuration options for lnd.
|
||||||
@ -567,6 +568,7 @@ func loadConfig() (*config, error) {
|
|||||||
cfg.BitcoindMode.Dir = cleanAndExpandPath(cfg.BitcoindMode.Dir)
|
cfg.BitcoindMode.Dir = cleanAndExpandPath(cfg.BitcoindMode.Dir)
|
||||||
cfg.LitecoindMode.Dir = cleanAndExpandPath(cfg.LitecoindMode.Dir)
|
cfg.LitecoindMode.Dir = cleanAndExpandPath(cfg.LitecoindMode.Dir)
|
||||||
cfg.Tor.PrivateKeyPath = cleanAndExpandPath(cfg.Tor.PrivateKeyPath)
|
cfg.Tor.PrivateKeyPath = cleanAndExpandPath(cfg.Tor.PrivateKeyPath)
|
||||||
|
cfg.Tor.WatchtowerKeyPath = cleanAndExpandPath(cfg.Tor.WatchtowerKeyPath)
|
||||||
cfg.Watchtower.TowerDir = cleanAndExpandPath(cfg.Watchtower.TowerDir)
|
cfg.Watchtower.TowerDir = cleanAndExpandPath(cfg.Watchtower.TowerDir)
|
||||||
|
|
||||||
// Ensure that the user didn't attempt to specify negative values for
|
// Ensure that the user didn't attempt to specify negative values for
|
||||||
@ -682,6 +684,19 @@ func loadConfig() (*config, error) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if cfg.Tor.WatchtowerKeyPath == "" {
|
||||||
|
switch {
|
||||||
|
case cfg.Tor.V2:
|
||||||
|
cfg.Tor.WatchtowerKeyPath = filepath.Join(
|
||||||
|
cfg.Watchtower.TowerDir, defaultTorV2PrivateKeyFilename,
|
||||||
|
)
|
||||||
|
case cfg.Tor.V3:
|
||||||
|
cfg.Tor.WatchtowerKeyPath = filepath.Join(
|
||||||
|
cfg.Watchtower.TowerDir, defaultTorV3PrivateKeyFilename,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Set up the network-related functions that will be used throughout
|
// Set up the network-related functions that will be used throughout
|
||||||
// the daemon. We use the standard Go "net" package functions by
|
// the daemon. We use the standard Go "net" package functions by
|
||||||
// default. If we should be proxying all traffic through Tor, then
|
// default. If we should be proxying all traffic through Tor, then
|
||||||
|
Loading…
Reference in New Issue
Block a user