workspace

This commit is contained in:
tef 2022-01-10 19:29:32 -05:00
parent 11e0cba99b
commit f2575596ce
2 changed files with 2 additions and 2 deletions

View File

@ -162,6 +162,6 @@ class Strategy002(IStrategy):
"""
mode = "test"
coin = pair.split("/")[0]
subprocess.call("python3 /root/workspace2/execution/launcher.py " + mode + " " + coin, shell=True)
subprocess.call("python3 /root/workspace/execution/launcher.py " + mode + " " + coin, shell=True)
return True

View File

@ -175,5 +175,5 @@ class Strategy003(IStrategy):
"""
mode = "test"
coin = pair.split("/")[0]
subprocess.call("python3 /root/workspace3/execution/launcher.py " + mode + " " + coin, shell=True)
subprocess.call("python3 /root/workspace/execution/launcher.py " + mode + " " + coin, shell=True)
return True