Adds checksum orderbook validation

This commit is contained in:
Jacob Plaster
2018-11-22 11:49:44 +00:00
parent c37a79998c
commit 088198e4c4
7 changed files with 195 additions and 9 deletions

View File

@@ -7,7 +7,8 @@ from ..utils.CustomLogger import CustomLogger
class BfxRest:
def __init__(self, API_KEY, API_SECRET, host='https://api.bitfinex.com/v2', loop=None, logLevel='INFO'):
def __init__(self, API_KEY, API_SECRET, host='https://api.bitfinex.com/v2', loop=None,
logLevel='INFO', *args, **kwargs):
self.loop = loop or asyncio.get_event_loop()
self.host = host
self.logger = CustomLogger('BfxRest', logLevel=logLevel)