Skip to content

Commit 6a63817

Browse files
authored
Merge pull request #151 from web-genie-ai/feat/unused-ddos
chore: unuse ddos
2 parents 1efc975 + 36576b9 commit 6a63817

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

webgenie/base/neuron.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def __init__(self, config=None):
9191
else:
9292
self.wallet = bt.wallet(config=self.config)
9393
self.subtensor = bt.subtensor(config=self.config)
94-
self.metagraph = ShieldMetagraph(self.wallet, self.config.netuid, subtensor=self.subtensor)
94+
self.metagraph = self.subtensor.metagraph(self.config.netuid)
9595

9696
bt.logging.info(f"Wallet: {self.wallet}")
9797
bt.logging.info(f"Subtensor: {self.subtensor}")

webgenie/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import psutil
44
# Change this value when updating your code base.
55
# Define the version of the webgenie.
6-
__VERSION__ = "1.3.1" # version
6+
__VERSION__ = "1.3.2" # version
77

88
SPEC_VERSION = (
99
(1000 * int(__VERSION__.split(".")[0]))

0 commit comments

Comments
 (0)