feature: add is_mining to all miner types.

This commit is contained in:
UpstreamData
2023-06-23 14:38:38 -06:00
parent 7d1a702804
commit f2abe9fd9e
8 changed files with 37 additions and 152 deletions

View File

@@ -352,3 +352,6 @@ class BMMiner(BaseMiner):
return round(ideal_rate, 2)
except (KeyError, IndexError):
pass
async def is_mining(self, *args, **kwargs) -> Optional[bool]:
return None