1
0

daemon: should only log "Ignoring -w" for "daemon" command, not for gui

This commit is contained in:
SomberNight
2025-06-28 03:16:02 +00:00
parent 588363749c
commit ae70d204b0

View File

@@ -395,9 +395,6 @@ class Daemon(Logger):
fd = get_file_descriptor(config)
if fd is None:
raise Exception('failed to lock daemon; already running?')
if 'wallet_path' in config.cmdline_options:
self.logger.warning("Ignoring parameter 'wallet_path' for daemon. "
"Use the load_wallet command instead.")
self._plugins = None # type: Optional[Plugins]
self.asyncio_loop = util.get_asyncio_loop()
if not self.config.NETWORK_OFFLINE:
@@ -562,6 +559,9 @@ class Daemon(Logger):
return True
def run_daemon(self):
if 'wallet_path' in self.config.cmdline_options:
self.logger.warning("Ignoring parameter 'wallet_path' for daemon. "
"Use the load_wallet command instead.")
# init plugins
self._plugins = Plugins(self.config, 'cmdline')
# block until we are stopping