Browse Source

lncfg: add Watchtower config

master
Conner Fromknecht 5 years ago
parent
commit
bd5b8700d8
No known key found for this signature in database
GPG Key ID: E7D737B67FA592C7
  1. 13
      lncfg/watchtower.go

13
lncfg/watchtower.go

@ -0,0 +1,13 @@
package lncfg
import "github.com/lightningnetwork/lnd/watchtower"
// Watchtower holds the daemon specific configuration parameters for running a
// watchtower that shares resources with the daemon.
type Watchtower struct {
Active bool `long:"active" description:"If the watchtower should be active or not"`
TowerDir string `long:"towerdir" description:"Directory of the watchtower.db"`
watchtower.Conf
}
Loading…
Cancel
Save