From eea6e65728c336f757b669c380a62d6f54102d8c Mon Sep 17 00:00:00 2001 From: thinkAfCod Date: Mon, 27 Nov 2023 10:56:02 +0800 Subject: [PATCH] fix comment --- deps.py | 4 ++-- hildr_node.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deps.py b/deps.py index 144640e..9358d7c 100644 --- a/deps.py +++ b/deps.py @@ -485,8 +485,8 @@ def install_geth(): def check_or_install_jdk(): """ - Check if Node.js is installed and is the correct version, otherwise prompts the user to install - it via NVM. + Check if JDK is installed and is the correct version, otherwise prompts the user to install + it via SDKMAN. """ # Check if Node is installed and is the correct version. diff --git a/hildr_node.py b/hildr_node.py index f09ed88..c884e84 100644 --- a/hildr_node.py +++ b/hildr_node.py @@ -16,10 +16,10 @@ def start(config: Config): """ lib.ensure_port_unoccupied( - "L2 hidlr node", config.l2_hildr_node_rpc_listen_addr, config.l2_hildr_node_rpc_listen_port) + "L2 hildr node", config.l2_hildr_node_rpc_listen_addr, config.l2_hildr_node_rpc_listen_port) log_file_path = "logs/l2_hildr_node.log" - print(f"Starting Hildr L2 node. Logging to {log_file_path}") + print(f"Starting L2 Hildr node. Logging to {log_file_path}") log_file = open(log_file_path, "w") sys.stdout.flush()