From ca2b7b35d415b548314a20df7366b8737eab0ec8 Mon Sep 17 00:00:00 2001 From: hscott Date: Fri, 6 Dec 2024 12:12:43 -0500 Subject: [PATCH] typo --- precog/validators/weight_setter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/precog/validators/weight_setter.py b/precog/validators/weight_setter.py index 219f26a..c8c4dff 100755 --- a/precog/validators/weight_setter.py +++ b/precog/validators/weight_setter.py @@ -43,7 +43,7 @@ def __init__(self, config=None, loop=None): self.load_state() self.current_block = self.subtensor.get_current_block() self.blocks_since_last_update = self.subtensor.blocks_since_last_update( - neutid=self.config.netuid, uid=self.my_uid + netuid=self.config.netuid, uid=self.my_uid ) if self.config.wandb_on: setup_wandb(self) @@ -120,7 +120,7 @@ async def set_weights(self): try: self.current_block = self.subtensor.get_current_block() self.blocks_since_last_update = self.subtensor.blocks_since_last_update( - neutid=self.config.netuid, uid=self.my_uid + netuid=self.config.netuid, uid=self.my_uid ) except Exception: bt.logging.error("Failed to get current block, skipping block update")