refactor: remove and fix some hardcoded passwords.

This commit is contained in:
UpstreamData
2024-01-15 15:53:10 -07:00
parent d686cdacc8
commit 56dd1c80b5
5 changed files with 6 additions and 7 deletions

View File

@@ -32,7 +32,7 @@ class BaseMinerRPCAPI:
# ip address of the miner
self.ip = ipaddress.ip_address(ip)
self.pwd = "admin"
self.pwd = None
def __new__(cls, *args, **kwargs):
if cls is BaseMinerRPCAPI: