diff --git a/server/block_processor.py b/server/block_processor.py index 1e661ac..fbe2c57 100644 --- a/server/block_processor.py +++ b/server/block_processor.py @@ -49,8 +49,8 @@ class Prefetcher(LoggedClass): synchronize. ''' with await self.semaphore: - while not self.queue.empty(): - self.queue.get_nowait() + while not self.tasks.empty(): + self.tasks.get_nowait() self.cache = [] self.cache_size = 0 self.fetched_height = height