diff --git a/.travis.yml b/.travis.yml index 98374ad..1409e76 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,9 @@ language: python dist: xenial +os: + - linux + - osx + - windows python: - 3.7 - 3.8 diff --git a/src/cryptocom/exchange/api.py b/src/cryptocom/exchange/api.py index 2ebadf4..8eb92c7 100644 --- a/src/cryptocom/exchange/api.py +++ b/src/cryptocom/exchange/api.py @@ -20,7 +20,7 @@ class ApiProvider: """Provides HTTP-api requests and websocket requests.""" def __init__( self, *, api_key='', api_secret='', from_env=False, - auth_required=True, timeout=3, retries=20, + auth_required=True, timeout=3, retries=10, root_url='https://api.crypto.com/v1/', ws_root_url='wss://ws.crypto.com/kline-api/ws'): self.api_key = api_key