fixed bugs

This commit is contained in:
UpstreamData
2021-10-26 20:16:57 -06:00
parent 44a0a63580
commit 6868cafd95
3 changed files with 14 additions and 5 deletions

View File

@@ -10,6 +10,9 @@ class BMMiner(BaseMiner):
def __repr__(self) -> str:
return f"BMMiner: {str(self.ip)}"
async def get_hostname(self) -> str:
return "BMMiner Unknown"
async def send_config(self):
return None # ignore for now

View File

@@ -14,6 +14,9 @@ class CGMiner(BaseMiner):
def __repr__(self) -> str:
return f"CGMiner: {str(self.ip)}"
async def get_hostname(self) -> str:
return "CGMiner Unknown"
async def send_config(self):
return None # ignore for now