refactor: remove miner factory cache.

This commit is contained in:
b-rowan
2024-01-22 18:41:19 -07:00
parent 5e01f7517b
commit 27c48764a8
2 changed files with 0 additions and 13 deletions

View File

@@ -120,9 +120,6 @@ class MinerNetwork:
async def scan_network_for_miners(self) -> List[AnyMiner]:
logging.debug(f"{self} - (Scan Network For Miners) - Scanning")
# clear cached miners
miner_factory.clear_cached_miners()
miners = await asyncio.gather(
*[self.ping_and_get_miner(host) for host in self.hosts]
)