allow config to determine webserver enabled if no --noserver cli opt
This commit is contained in:
parent
a966ecb131
commit
638fb4ee27
|
@ -185,7 +185,7 @@ class Cmd {
|
|||
serverHost: nullify(options.host),
|
||||
client: options.client || 'geth',
|
||||
locale: options.locale,
|
||||
runWebserver: !options.noserver,
|
||||
runWebserver: options.noserver == null ? null : !options.noserver,
|
||||
useDashboard: !options.nodashboard,
|
||||
logFile: options.logfile,
|
||||
logLevel: options.loglevel,
|
||||
|
|
Loading…
Reference in New Issue