From 1209d1b2694b5a30cb09c389b668a47ed9584da7 Mon Sep 17 00:00:00 2001 From: tecnovert Date: Wed, 2 Oct 2024 09:56:57 +0200 Subject: [PATCH] doc: Reword shouldManageDaemon comment. --- bin/basicswap_prepare.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/basicswap_prepare.py b/bin/basicswap_prepare.py index da11c1f..0684917 100755 --- a/bin/basicswap_prepare.py +++ b/bin/basicswap_prepare.py @@ -272,9 +272,9 @@ default_socket_getaddrinfo = socket.getaddrinfo def shouldManageDaemon(prefix: str) -> bool: ''' - If the user sets the XMR_RPC_HOST or PORT variables, set manage_daemon to false. - The XMR_MANAGE_DAEMON variable can override this and set manage_daemon directly. - if BSX_DOCKER_MODE is active -COIN-_MANAGE_DAEMON will default to false + If the user sets a COIN _RPC_HOST or PORT variable, set manage_daemon for COIN to false. + The COIN _MANAGE_DAEMON variables can override this and set manage_daemon directly. + If BSX_DOCKER_MODE is active COIN _MANAGE_DAEMON will default to false. ''' manage_daemon: str = os.getenv(prefix + '_MANAGE_DAEMON', 'false' if BSX_DOCKER_MODE else 'auto')