diff --git a/.env.miner.example b/.env.miner.example index 378efad..bb42523 100644 --- a/.env.miner.example +++ b/.env.miner.example @@ -1,5 +1,6 @@ # Network Configuration -NETWORK=localnet # Options: localnet, testnet, finney +# Options: localnet, testnet, finney +NETWORK=testnet # Wallet Configuration COLDKEY=miner @@ -9,11 +10,11 @@ MINER_HOTKEY=default MINER_NAME=miner MINER_PORT=8092 - # Miner Settings TIMEOUT=16 VPERMIT_TAO_LIMIT=2 FORWARD_FUNCTION=base_miner # Logging -LOGGING_LEVEL=info # Options: info, debug, trace +# Options: info, debug, trace +LOGGING_LEVEL=debug diff --git a/.env.validator.example b/.env.validator.example index ba1b37b..c81f7ba 100644 --- a/.env.validator.example +++ b/.env.validator.example @@ -1,5 +1,6 @@ # Network Configuration -NETWORK=testnet # Options: localnet, testnet, finney +# Options: localnet, testnet, finney +NETWORK=testnet # Wallet Configuration COLDKEY=validator @@ -9,6 +10,6 @@ VALIDATOR_HOTKEY=default VALIDATOR_NAME=validator VALIDATOR_PORT=8091 - # Logging -LOGGING_LEVEL=info # Options: info, debug, trace +# Options: info, debug, trace +LOGGING_LEVEL=debug diff --git a/README.md b/README.md index e4782ea..f379af8 100644 --- a/README.md +++ b/README.md @@ -71,17 +71,6 @@ poetry install ## Configuration ### Makefile -Start by editing the Makefile with your wallet and network information: -``` -################################################################################ -# User Parameters # -################################################################################ -coldkey = default -validator_hotkey = validator -miner_hotkey = miner -netuid = $(testnet_netuid) -network = $(testnet) -``` ### .env Files Copy the example `.env` files and edit all desired values: diff --git a/precog/utils/bittensor.py b/precog/utils/bittensor.py index 4b4bae0..ce48803 100644 --- a/precog/utils/bittensor.py +++ b/precog/utils/bittensor.py @@ -89,7 +89,7 @@ def print_info(self) -> None: f"VTrust:{self.metagraph.Tv[self.my_uid]:.3f} | " f"Dividend:{self.metagraph.D[self.my_uid]:.3f} | " f"Emission:{self.metagraph.E[self.my_uid]:.3f} | " - f"Seting weights in {weight_timing} blocks" + f"Setting weights in {weight_timing} blocks" ) elif self.config.neuron.type == "Miner": log = (