Skip to content

Commit e5b0b60

Browse files
authored
Merge branch 'staging' into feat/roman/selective_metagraph_back
2 parents e557c59 + 512d507 commit e5b0b60

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bittensor/core/settings.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@
126126
"_mock": False,
127127
},
128128
"wallet": {
129-
"name": "default",
130-
"hotkey": "default",
131-
"path": str(WALLETS_DIR),
129+
"name": os.getenv("BT_WALLET_NAME") or "default",
130+
"hotkey": os.getenv("BT_WALLET_HOTKEY") or "default",
131+
"path": os.getenv("BT_WALLET_PATH") or str(WALLETS_DIR),
132132
},
133133
}
134134
)

0 commit comments

Comments
 (0)