added unknown miner type

This commit is contained in:
UpstreamData
2021-10-07 16:49:36 -06:00
parent a0e88490c6
commit e0dd2ee1f3
5 changed files with 16 additions and 4 deletions

View File

@@ -6,7 +6,9 @@ import asyncio
async def main():
miner_network = MinerNetwork("192.168.1.1")
await miner_network.scan_network_for_miners()
miner_list = await miner_network.scan_network_for_miners()
print(miner_list)
if __name__ == '__main__':
asyncio.get_event_loop().run_until_complete(main())