From de683b989e735f853753cd61f53e7a0e05c215a5 Mon Sep 17 00:00:00 2001 From: empresa Date: Tue, 9 Sep 2025 18:58:01 +0700 Subject: [PATCH] Wallet config debugging. More. --- clore_onboarding.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/clore_onboarding.py b/clore_onboarding.py index df4ec68..a897d33 100644 --- a/clore_onboarding.py +++ b/clore_onboarding.py @@ -249,6 +249,7 @@ async def hive_load_configs(default_power_limits, static_config): fs_core_lock, fs_mem_lock = extract_last_setcore_setmem(wallet_conf_content) for wallet_conf_line in wallet_conf_content.split('\n'): wallet_conf_line = wallet_conf_line.strip() + logger.info(wallet_conf_line) if wallet_conf_line[:1] != "#" and '=' in wallet_conf_line: key, value = [wallet_conf_line.split('=', 1)[0], clean_config_value(wallet_conf_line.split('=', 1)[1])] if key[-9:] == "_TEMPLATE": @@ -269,6 +270,8 @@ async def hive_load_configs(default_power_limits, static_config): except (json.JSONDecodeError, TypeError, KeyError) as e: pass + logger.info(clore_config); + if (not clore_miner_present or not clore_config) and parsed_static_config: clore_miner_present = True clore_config = parsed_static_config