Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update spotbit api url and path #2372

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/cryptoadvance/specter/util/price_providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,14 +168,15 @@ def get_price_at(specter, timestamp="now"):
if timestamp == "now":
price = failsafe_request_get(
requests_session,
"http://h6zwwkcivy2hjys6xpinlnz2f74dsmvltzsd4xb42vinhlcaoe7fdeqd.onion/now/{}/{}".format(
"http://r5sru63gzyrnaayaua2ydo32f4hf6vd33bq6qmtktx3wjoib2cwi2gqd.onion/api/now/{}/{}".format(
currency, exchange
k9ert marked this conversation as resolved.
Show resolved Hide resolved
),
)["close"]
else:
price = failsafe_request_get(
requests_session,
"http://h6zwwkcivy2hjys6xpinlnz2f74dsmvltzsd4xb42vinhlcaoe7fdeqd.onion/hist/{}/{}/{}/{}".format(
# TODO: Fix to use `start` and `end` query date time parameters instead of path parameters
"http://r5sru63gzyrnaayaua2ydo32f4hf6vd33bq6qmtktx3wjoib2cwi2gqd.onion/api/history/{}/{}/{}/{}".format(
currency,
exchange,
timestamp * 1000,
Expand Down