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 dd2a1b7 commit b29729eCopy full SHA for b29729e
images/boltz/wrapper.sh
@@ -2,7 +2,9 @@
2
3
CHAIN=$1
4
5
-case "$CHAIN" in
+# Use "${<variable>,,}" to convert the CHAIN variable to lower case
6
+# Reference: https://stackoverflow.com/a/2264537
7
+case "${CHAIN,,}" in
8
"btc")
9
PORT="9002"
10
;;
images/utils/launcher/__init__.py
@@ -193,7 +193,12 @@ def handle_command(self, cmd):
193
print(HELP)
194
else:
195
self.delegate_cmd_to_xucli(cmd)
196
+
197
except NodeNotFound as e:
198
+ if str(e) == "boltz" and self.config.network == "simnet":
199
+ print("Not available on simnet")
200
+ return
201
202
print(f"Node not found: {e}")
203
except ArgumentError as e:
204
print(e.usage)
0 commit comments