From a4f576d6ecebbd23eb940ae8b1afbc0e6107a33a Mon Sep 17 00:00:00 2001 From: tim Date: Wed, 25 Sep 2024 16:32:37 -0400 Subject: [PATCH] "Runner started" log info --- src/dexorder/runner.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/dexorder/runner.py b/src/dexorder/runner.py index d89ce12..44edd4d 100644 --- a/src/dexorder/runner.py +++ b/src/dexorder/runner.py @@ -211,12 +211,11 @@ class BlockStateRunner(BlockProgressor): async def worker(self): try: - log.debug(f'runner worker started') + log.info(f'Runner started') w3 = current_w3.get() chain = current_chain.get() assert chain.id == await w3.eth.chain_id current_clock.set(BlockClock()) - fork = None while self.running: try: await asyncio.wait_for(self.new_head_event.wait(), timeout=1) # todo configure