fixed a small bug with bosminer MAC

This commit is contained in:
UpstreamData
2022-06-10 11:30:24 -06:00
parent dd8fe41ad1
commit 8948af55f2

View File

@@ -400,4 +400,4 @@ class BOSMiner(BaseMiner):
async def get_mac(self):
result = await self.send_ssh_command("cat /sys/class/net/eth0/address")
return result.upper()
return result.upper().strip()