File tree Expand file tree Collapse file tree 5 files changed +20
-38
lines changed Expand file tree Collapse file tree 5 files changed +20
-38
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ def _connected():
154
154
manuals += 1
155
155
# Even if more edges are specifed, bitcoind only allows
156
156
# 8 manual outbound connections
157
-
157
+
158
158
print ("manual " + str (manuals ))
159
159
print (tank .metadata .annotations ["init_peers" ])
160
160
if min (8 , int (tank .metadata .annotations ["init_peers" ])) > manuals :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ nodes :
2
+ - name : tank-0000
3
+ connect :
4
+ - tank-0002
5
+ metricsExport : true
6
+ - name : tank-0001
7
+ connect :
8
+ - tank-0002
9
+ metricsExport : true
10
+ metrics : txrate=getchaintxstats(10)["txrate"]
11
+ - name : tank-0002
12
+ connect :
13
+ - tank-0000
Original file line number Diff line number Diff line change
1
+ image :
2
+ repository : bitcoindevproject/bitcoin
3
+ pullPolicy : IfNotPresent
4
+ tag : " 27.0"
Original file line number Diff line number Diff line change 14
14
class LoggingTest (TestBase ):
15
15
def __init__ (self ):
16
16
super ().__init__ ()
17
- self .graph_file_path = Path (os .path .dirname (__file__ )) / "data" / "logging.graphml "
17
+ self .network_dir = Path (os .path .dirname (__file__ )) / "data" / "logging"
18
18
self .scripts_dir = Path (os .path .dirname (__file__ )) / ".." / "resources" / "scripts"
19
19
self .connect_logging_process = None
20
20
self .connect_logging_thread = None
@@ -54,7 +54,7 @@ def start_logging(self):
54
54
55
55
def setup_network (self ):
56
56
self .log .info ("Setting up network" )
57
- self .log .info (self .warcli (f"network deploy ./resources/networks/6_node_bitcoin " ))
57
+ self .log .info (self .warcli (f"network deploy { self . network_dir } " ))
58
58
self .wait_for_all_tanks_status (target = "running" , timeout = 10 * 60 )
59
59
self .wait_for_all_edges ()
60
60
You can’t perform that action at this time.
0 commit comments