We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20b97a0 commit 13f14c3Copy full SHA for 13f14c3
src/warnet/network.py
@@ -6,8 +6,6 @@
6
7
from .bitcoin import _rpc
8
from .constants import (
9
- CHARTS_DIR,
10
- DEFAULT_NETWORK,
11
NETWORK_DIR,
12
SCENARIOS_DIR,
13
)
@@ -43,15 +41,6 @@ def copy_network_defaults(directory: Path):
43
41
44
42
["node-defaults.yaml", "__pycache__", "__init__.py"],
45
46
- # Copy caddy files to the network directory
47
- networks_dir = directory / NETWORK_DIR.name
48
- copy_caddy_files(networks_dir / DEFAULT_NETWORK)
49
-
50
51
-def copy_caddy_files(directory: Path):
52
- """Copy caddy files to the specified directory"""
53
- copy_defaults(directory, "caddy", CHARTS_DIR.joinpath("caddy"), [])
54
- print(f"Copied caddy files to {directory / 'caddy'}")
55
56
57
def copy_scenario_defaults(directory: Path):
0 commit comments