fix broken merge

This commit is contained in:
Dobromir Popov
2025-10-08 20:02:41 +03:00
parent a468c75c47
commit 270ba2e52b
12 changed files with 493 additions and 86 deletions

View File

@@ -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}")