Skip to content

Commit

Permalink
Update localnet entrypoint port (#2268)
Browse files Browse the repository at this point in the history
update port on localnet from 9944 to 9946
  • Loading branch information
garrett-opentensor authored Aug 26, 2024
1 parent b3c77c2 commit 0e0d0d5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bittensor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,14 @@ def debug(on: bool = True):
# Needs to use wss://
__bellagene_entrypoint__ = "wss://parachain.opentensor.ai:443"


if (
BT_SUBTENSOR_CHAIN_ENDPOINT := os.getenv("BT_SUBTENSOR_CHAIN_ENDPOINT")
) is not None:
__local_entrypoint__ = BT_SUBTENSOR_CHAIN_ENDPOINT
else:
__local_entrypoint__ = "ws://127.0.0.1:9944"
__local_entrypoint__ = "ws://127.0.0.1:9946"


__tao_symbol__: str = chr(0x03C4)

Expand Down

0 comments on commit 0e0d0d5

Please sign in to comment.