From 95639d1bf2db76497aaf2ed86690176df7b92089 Mon Sep 17 00:00:00 2001 From: yevh-berdnyk Date: Mon, 8 Oct 2018 18:08:09 +0300 Subject: [PATCH] Token info url is changed to https Signed-off-by: yevh-berdnyk --- test/appium/support/api/third_parties_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/appium/support/api/third_parties_api.py b/test/appium/support/api/third_parties_api.py index e69e3a8c72..333ed13599 100644 --- a/test/appium/support/api/third_parties_api.py +++ b/test/appium/support/api/third_parties_api.py @@ -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()