File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
images/utils/launcher/node Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ def get_xud_getinfo_connext_status(self):
81
81
if status == "Ready" :
82
82
return "Ready"
83
83
elif "ECONNREFUSED" in status :
84
- return "Can't connect to Connext node "
84
+ return "Waiting for connext to come up... "
85
85
else :
86
86
return "Starting..."
87
87
Original file line number Diff line number Diff line change @@ -58,15 +58,15 @@ def status(self):
58
58
lndltc_status = info ["lndMap" ][1 ][1 ]["status" ]
59
59
connext_status = info ["connext" ]["status" ]
60
60
61
+ if "Ready" == lndbtc_status \
62
+ or "Ready" == lndltc_status \
63
+ or "Ready" == connext_status :
64
+ return "Ready"
65
+
61
66
if "has no active channels" in lndbtc_status \
62
67
or "has no active channels" in lndltc_status \
63
68
or "has no active channels" in connext_status :
64
69
return "Waiting for channels"
65
-
66
- if "Ready" == lndbtc_status \
67
- and "Ready" == lndltc_status \
68
- and "Ready" == connext_status :
69
- return "Ready"
70
70
else :
71
71
not_ready = []
72
72
if lndbtc_status != "Ready" :
You can’t perform that action at this time.
0 commit comments