File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,13 @@ nodes:
12
12
addnode :
13
13
- tank-0000
14
14
lnd :
15
- enabled : true
15
+ channels :
16
+ - id :
17
+ block : 300
18
+ index : 1
19
+ target : tank-0001-ln
20
+ capacity : 100000
21
+ push_amt : 50000
16
22
metricsExport : true
17
23
prometheusMetricsPort : 9332
18
24
extraContainers :
Original file line number Diff line number Diff line change 3
3
repository : bitcoindevproject/bitcoin
4
4
pullPolicy : IfNotPresent
5
5
tag : " 27.0"
6
+
7
+ lnd :
8
+ enabled : true
Original file line number Diff line number Diff line change @@ -68,10 +68,11 @@ def assert_log_msgs(self):
68
68
def warnet (self , cmd ):
69
69
self .log .debug (f"Executing warnet command: { cmd } " )
70
70
command = ["warnet" ] + cmd .split ()
71
- proc = run (command , capture_output = True )
71
+ capture_output = "--debug" not in cmd
72
+ proc = run (command , capture_output = capture_output )
72
73
if proc .stderr :
73
74
raise Exception (proc .stderr .decode ().strip ())
74
- return proc .stdout .decode ().strip ()
75
+ return proc .stdout .decode ().strip () if proc . stdout else ""
75
76
76
77
def output_reader (self , pipe , func ):
77
78
while not self .stop_threads .is_set ():
You can’t perform that action at this time.
0 commit comments