update python-bittrex to 0.2.0

This commit is contained in:
gcarq
2017-11-09 00:31:53 +01:00
parent 0f1a36b8e9
commit fafbb0abfe
3 changed files with 8 additions and 4 deletions

View File

@@ -30,7 +30,11 @@ class Bittrex(Exchange):
global _API, _EXCHANGE_CONF
_EXCHANGE_CONF.update(config)
_API = _Bittrex(api_key=_EXCHANGE_CONF['key'], api_secret=_EXCHANGE_CONF['secret'])
_API = _Bittrex(
api_key=_EXCHANGE_CONF['key'],
api_secret=_EXCHANGE_CONF['secret'],
calls_per_second=5,
)
@property
def fee(self) -> float: