Update argv parsing to account for topic id
This commit is contained in:
parent
1953bd0c3c
commit
87b800286c
@ -1,5 +1,4 @@
|
|||||||
FROM --platform=linux/amd64 696230526504.dkr.ecr.us-east-1.amazonaws.com/allora-inference-base:latest
|
FROM --platform=linux/amd64 alloranetwork/allora-inference-base:latest
|
||||||
# FROM --platform=linux/amd64 allora-inference-base:dev
|
|
||||||
|
|
||||||
USER root
|
USER root
|
||||||
RUN pip install requests
|
RUN pip install requests
|
||||||
|
6
main.py
6
main.py
@ -15,8 +15,10 @@ def process(token_name):
|
|||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
# Your code logic with the parsed argument goes here
|
# Your code logic with the parsed argument goes here
|
||||||
try:
|
try:
|
||||||
if len(sys.argv) >= 2:
|
if len(sys.argv) >= 3:
|
||||||
token_name = sys.argv[1]
|
# Not using to discriminate by topicId for simplicity.
|
||||||
|
# topic_id = sys.argv[1]
|
||||||
|
token_name = sys.argv[2]
|
||||||
else:
|
else:
|
||||||
token_name = "ETH"
|
token_name = "ETH"
|
||||||
process(token_name=token_name)
|
process(token_name=token_name)
|
||||||
|
Loading…
Reference in New Issue
Block a user