From d9568461a8344fe1608d095226703da0f80c8595 Mon Sep 17 00:00:00 2001 From: Sverker Date: Thu, 11 Aug 2022 18:22:33 +0200 Subject: [PATCH] Update excavator.py QuickFix. The old adresses (nhmp.region.nicehash.com) and port(3200) did not work anymore. --- nuxhash/miners/excavator.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nuxhash/miners/excavator.py b/nuxhash/miners/excavator.py index aa20b04..ce2ebab 100644 --- a/nuxhash/miners/excavator.py +++ b/nuxhash/miners/excavator.py @@ -30,7 +30,6 @@ 'lyra2z', 'x16r' ] -NHMP_PORT = 3200 class ExcavatorError(Exception): @@ -135,7 +134,7 @@ def start(self): def _subscribe(self): region, wallet, worker = self._subscription - self.send_command('subscribe', [f'nhmp.{region}.nicehash.com:{NHMP_PORT}', + self.send_command('subscribe', [f'nhmp.auto.nicehash.com:9200', f'{wallet}.{worker}:x']) def stop(self):