You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 16, 2022. It is now read-only.
We currently need all tickers in every getMarket call because of old ED code.
When we launch new UI, specify the token when grabbing tickers and returnTicker will only show data of that passed in token.
# get all tickers
tickers = await get_tickers()
# if token is passed in
if token:
Should become
# if token is passed in
if token:
# get ticker for passed in token
tickers = await get_tickers(token)
else:
# get all tickers
tickers = await get_tickers()
in get_market() in websocket_server.py
The text was updated successfully, but these errors were encountered:
JonathonDunford
changed the title
FUTURE: When we launch new UI, ONLY return ticker passed in on getMarket in returnTicker
When we launch new UI, ONLY return ticker passed in on getMarket in returnTicker
Feb 10, 2018
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
We currently need all tickers in every getMarket call because of old ED code.
When we launch new UI, specify the token when grabbing tickers and returnTicker will only show data of that passed in token.
Should become
in get_market() in websocket_server.py
The text was updated successfully, but these errors were encountered: