Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkAfCod committed Nov 27, 2023
1 parent 030b191 commit eea6e65
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions hildr_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit eea6e65

Please sign in to comment.