Skip to content

Commit

Permalink
message
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky committed Dec 13, 2024
1 parent bfbbc22 commit 1965e56
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions chia/server/start_full_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import os
import pathlib
import sys
from multiprocessing import freeze_support
from typing import Any, Optional

Expand Down Expand Up @@ -103,3 +104,7 @@ def main(root_path: pathlib.Path, args: Optional[list[str]] = None) -> int:
if not service_config.get("use_chia_loop_policy", True):
target_peer_count = None
return async_run(coro=async_main(service_config, root_path=root_path), connection_limit=target_peer_count)


if __name__ == "__main__":
sys.exit("module no longer directly callable, see the new command group `chia services`")

0 comments on commit 1965e56

Please sign in to comment.