Skip to content

Commit 76023bb

Browse files
committed
remove debug logging
update documentation for cln
1 parent 7890267 commit 76023bb

File tree

3 files changed

+3
-14
lines changed

3 files changed

+3
-14
lines changed

docs/scenarios.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,3 @@ Total Tanks: 6 | Active Scenarios: 0
7272
## Running a custom scenario
7373

7474
You can write your own scenario file and run it in the same way.
75-
76-
## Scenarios with lightning nodes
77-
78-
When defining network.yaml all lnd nodes should be indexed in the same block before any cln nodes otherwise node responsiveness causes the expected index to get out of order with actual regardless of how the channels are opened
79-
Review `test/data/ln_mixed/network.yaml` for an example
80-

resources/plugins/simln/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ SimLN also requires access details for each node; however, the SimLN plugin will
1919
"cert": <path_to_tls_cert>
2020
}
2121
````
22-
SimLN also supports Core Lightning (CLN). CLN nodes connection details are transfered from the CLN node to SimLN node during launch-activity processing.
22+
SimLN plugin also supports Core Lightning (CLN). CLN nodes connection details are transfered from the CLN node to SimLN node during launch-activity processing.
2323
```` JSON
2424
{
2525
"id": <node_id>,
@@ -83,8 +83,8 @@ nodes:
8383
addnode:
8484
- tank-0000
8585
ln:
86-
lnd: true
87-
lnd:
86+
cln: true
87+
cln:
8888
channels:
8989
- id:
9090
block: 300

src/warnet/deploy.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
get_mission,
3838
get_namespaces_by_type,
3939
wait_for_ingress_controller,
40-
wait_for_pod,
4140
wait_for_pod_ready,
4241
)
4342
from .process import run_command, stream_command
@@ -391,7 +390,6 @@ def deploy_network(directory: Path, debug: bool = False, namespace: Optional[str
391390
p.join()
392391

393392
if needs_ln_init:
394-
click.echo("deploy_network->_run started")
395393
name = _run(
396394
scenario_file=SCENARIOS_DIR / "ln_init.py",
397395
debug=False,
@@ -400,11 +398,8 @@ def deploy_network(directory: Path, debug: bool = False, namespace: Optional[str
400398
admin=False,
401399
namespace=namespace,
402400
)
403-
click.echo("deploy_network->_run finished")
404401
wait_for_pod_ready(name, namespace=namespace)
405-
click.echo("wait_for_pod finished")
406402
_logs(pod_name=name, follow=True, namespace=namespace)
407-
click.echo("deploy_network finished")
408403

409404

410405
def deploy_single_node(node, directory: Path, debug: bool, namespace: str):

0 commit comments

Comments
 (0)