diff --git a/Makefile b/Makefile index 721c621..bb1c0fc 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ localnet_netuid = 1 logging_level = trace # options= ['info', 'debug', 'trace'] netuid = $(testnet_netuid) -network = $(testnet) +network = test ## User Parameters coldkey = default @@ -29,7 +29,7 @@ validator: --neuron.name validator \ --wallet.name $(coldkey) \ --wallet.hotkey $(validator_hotkey) \ - --subtensor.chain_endpoint $(network) \ + --network $(network) \ --axon.port 30335 \ --netuid $(netuid) \ --logging.level $(logging_level) @@ -39,7 +39,7 @@ miner: --neuron.name miner \ --wallet.name $(coldkey) \ --wallet.hotkey $(miner_hotkey) \ - --subtensor.chain_endpoint $(network) \ + --network $(network) \ --axon.port 30336 \ --netuid $(netuid) \ --logging.level $(logging_level) \ @@ -52,7 +52,7 @@ miner2: --neuron.name miner2 \ --wallet.name $(coldkey) \ --wallet.hotkey miner2 \ - --subtensor.chain_endpoint $(network) \ + --network $(network) \ --axon.port 30337 \ --netuid $(netuid) \ --logging.level $(logging_level) \ diff --git a/precog/validators/weight_setter.py b/precog/validators/weight_setter.py index eb2a4a4..86a0b89 100755 --- a/precog/validators/weight_setter.py +++ b/precog/validators/weight_setter.py @@ -47,7 +47,6 @@ def __init__(self, config=None, loop=None): self.current_block - self.node_query("SubtensorModule", "LastUpdate", [self.config.netuid])[self.my_uid] ) self.tempo = self.node_query("SubtensorModule", "Tempo", [self.config.netuid]) - bt.logging.debug(f"Config:{self.config}") if self.config.wandb_on: setup_wandb(self) self.stop_event = asyncio.Event()