reduce calls_per_second to 1

This commit is contained in:
gcarq 2017-11-15 23:16:39 +01:00
parent e8101a6da5
commit b83309b55d

View File

@ -27,13 +27,13 @@ class Bittrex(Exchange):
_API = _Bittrex(
api_key=_EXCHANGE_CONF['key'],
api_secret=_EXCHANGE_CONF['secret'],
calls_per_second=2,
calls_per_second=1,
api_version=API_V1_1,
)
_API_V2 = _Bittrex(
api_key=_EXCHANGE_CONF['key'],
api_secret=_EXCHANGE_CONF['secret'],
calls_per_second=2,
calls_per_second=1,
api_version=API_V2_0,
)