Token info url is changed to https

Signed-off-by: yevh-berdnyk <ie.berdnyk@gmail.com>
This commit is contained in:
yevh-berdnyk 2018-10-08 18:08:09 +03:00
parent ce4d3eb88a
commit 95639d1bf2
No known key found for this signature in database
GPG Key ID: E9B425FDFC4DEA9C
1 changed files with 1 additions and 1 deletions

View File

@ -7,5 +7,5 @@ def get_ethereum_price_in_usd() -> float:
def get_token_info(address: str):
url = 'http://api.ethplorer.io/getTokenInfo/%s?apiKey=freekey' % address
url = 'https://api.ethplorer.io/getTokenInfo/%s?apiKey=freekey' % address
return requests.request('GET', url).json()