You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: config.go
+19-12Lines changed: 19 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,7 @@ const (
41
41
42
42
ModeIntegrated="integrated"
43
43
ModeRemote="remote"
44
+
ModeDisable="disable"
44
45
45
46
DefaultLndMode=ModeRemote
46
47
defaultFaradayMode=ModeIntegrated
@@ -181,13 +182,13 @@ type Config struct {
181
182
LndModestring`long:"lnd-mode" description:"The mode to run lnd in, either 'remote' (default) or 'integrated'. 'integrated' means lnd is started alongside the UI and everything is stored in lnd's main data directory, configure everything by using the --lnd.* flags. 'remote' means the UI connects to an existing lnd node and acts as a proxy for gRPC calls to it. In the remote node LiT creates its own directory for log and configuration files, configure everything using the --remote.* flags." choice:"integrated" choice:"remote"`
182
183
Lnd*lnd.Config`group:"Integrated lnd (use when lnd-mode=integrated)" namespace:"lnd"`
183
184
184
-
FaradayModestring`long:"faraday-mode" description:"The mode to run faraday in, either 'integrated' (default)or 'remote'. 'integrated' means faraday is started alongside the UI and everything is stored in faraday's main data directory, configure everything by using the --faraday.* flags. 'remote' means the UI connects to an existing faraday node and acts as a proxy for gRPC calls to it." choice:"integrated" choice:"remote"`
185
+
FaradayModestring`long:"faraday-mode" description:"The mode to run faraday in, either 'integrated' (default), 'remote' or 'disable'. 'integrated' means faraday is started alongside the UI and everything is stored in faraday's main data directory, configure everything by using the --faraday.* flags. 'remote' means the UI connects to an existing faraday node and acts as a proxy for gRPC calls to it. 'disable' means that LiT is started without a connection to faraday" choice:"integrated" choice:"remote" choice:"disable"`
185
186
Faraday*faraday.Config`group:"Integrated faraday options (use when faraday-mode=integrated)" namespace:"faraday"`
186
187
187
-
LoopModestring`long:"loop-mode" description:"The mode to run loop in, either 'integrated' (default)or 'remote'. 'integrated' means loopd is started alongside the UI and everything is stored in loop's main data directory, configure everything by using the --loop.* flags. 'remote' means the UI connects to an existing loopd node and acts as a proxy for gRPC calls to it." choice:"integrated" choice:"remote"`
188
+
LoopModestring`long:"loop-mode" description:"The mode to run loop in, either 'integrated' (default), 'remote' or 'disable'. 'integrated' means loopd is started alongside the UI and everything is stored in loop's main data directory, configure everything by using the --loop.* flags. 'remote' means the UI connects to an existing loopd node and acts as a proxy for gRPC calls to it. 'disable' means that LiT is started without a connection to loop" choice:"integrated" choice:"remote" choice:"disable"`
188
189
Loop*loopd.Config`group:"Integrated loop options (use when loop-mode=integrated)" namespace:"loop"`
189
190
190
-
PoolModestring`long:"pool-mode" description:"The mode to run pool in, either 'integrated' (default) or 'remote'. 'integrated' means poold is started alongside the UI and everything is stored in pool's main data directory, configure everything by using the --pool.* flags. 'remote' means the UI connects to an existing poold node and acts as a proxy for gRPC calls to it." choice:"integrated" choice:"remote"`
191
+
PoolModestring`long:"pool-mode" description:"The mode to run pool in, either 'integrated' (default) or 'remote'. 'integrated' means poold is started alongside the UI and everything is stored in pool's main data directory, configure everything by using the --pool.* flags. 'remote' means the UI connects to an existing poold node and acts as a proxy for gRPC calls to it. 'disable' means that LiT is started without a connection to pool" choice:"integrated" choice:"remote" choice:"disable"`
191
192
Pool*pool.Config`group:"Integrated pool options (use when pool-mode=integrated)" namespace:"pool"`
0 commit comments