fix broken merge
This commit is contained in:
@@ -975,17 +975,17 @@ class MultiExchangeCOBProvider:
|
||||
logger.info(f"Disconnected from Kraken order book stream for {symbol}")
|
||||
|
||||
async def _stream_huobi_orderbook(self, symbol: str, config: ExchangeConfig):
|
||||
"""Stream Huobi order book data (placeholder implementation)"""
|
||||
"""Stream Huobi order book data (placeholder - not yet implemented)"""
|
||||
try:
|
||||
logger.info(f"Huobi streaming for {symbol} not yet implemented")
|
||||
logger.debug(f"Huobi streaming for {symbol} not yet implemented")
|
||||
await asyncio.sleep(60) # Sleep to prevent spam
|
||||
except Exception as e:
|
||||
logger.error(f"Error streaming Huobi order book for {symbol}: {e}")
|
||||
|
||||
async def _stream_bitfinex_orderbook(self, symbol: str, config: ExchangeConfig):
|
||||
"""Stream Bitfinex order book data (placeholder implementation)"""
|
||||
"""Stream Bitfinex order book data (placeholder - not yet implemented)"""
|
||||
try:
|
||||
logger.info(f"Bitfinex streaming for {symbol} not yet implemented")
|
||||
logger.debug(f"Bitfinex streaming for {symbol} not yet implemented")
|
||||
await asyncio.sleep(60) # Sleep to prevent spam
|
||||
except Exception as e:
|
||||
logger.error(f"Error streaming Bitfinex order book for {symbol}: {e}")
|
||||
|
||||
Reference in New Issue
Block a user