Skip to content
This repository was archived by the owner on Jul 7, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cryptofeed/exchanges/bybit.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ async def _book(self, msg: dict, timestamp: float, market: str):
if update_type == 'delta':
delta = {BID: data['b'], ASK: data['a']}

await self.book_callback(L2_BOOK, self._l2_book[pair], timestamp, timestamp=int(msg['ts']), raw=msg, delta=delta)
await self.book_callback(L2_BOOK, self._l2_book[pair], timestamp, timestamp=self.timestamp_normalize(int(msg['ts'])), raw=msg, delta=delta)

async def _ticker_open_interest_funding_index(self, msg: dict, timestamp: float, conn: AsyncConnection):
'''
Expand Down
Loading