diff --git a/src/dexorder/bin/finaldata.py b/src/dexorder/bin/finaldata.py index 05be146..85c73c8 100644 --- a/src/dexorder/bin/finaldata.py +++ b/src/dexorder/bin/finaldata.py @@ -7,8 +7,6 @@ from datetime import timedelta from web3.types import EventData from dexorder import from_timestamp, blockchain, config -from dexorder.addrmeta import address_metadata -from dexorder.base.block import latest_block from dexorder.base.chain import current_chain from dexorder.bin.executable import execute from dexorder.blocks import get_block_timestamp, get_block @@ -46,9 +44,8 @@ async def flush_callback(): fork = current_fork.get() block = await get_block(fork.height, chain_id=chain_id) time = from_timestamp(block.timestamp) - log.info("flushing OHLC's") ohlcs.flush() - log.info(f'backfill completed through block {block.height} {time:%Y-%m-%d %H:%M:%S} {hexstr(block.hash)}') + log.info(f'OHLC\'s flushed through block {block.height} {time:%Y-%m-%d %H:%M:%S} {hexstr(block.hash)}') async def main():