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 01e923c commit 12b6c48Copy full SHA for 12b6c48
images/utils/launcher/__init__.py
@@ -178,7 +178,7 @@ def handle_command(self, cmd):
178
elif arg0 == "deposit":
179
if len(args) == 0:
180
print("Missing chain")
181
- chain = args[0]
+ chain = args[0].lower()
182
args = args[1:]
183
if chain == "btc":
184
self.node_manager.cli("boltz", "btc", "deposit", *args)
@@ -189,7 +189,7 @@ def handle_command(self, cmd):
189
elif arg0 == "withdraw":
190
191
192
193
194
195
self.node_manager.cli("boltz", "btc", "withdraw", *args)
0 commit comments