You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When installing a miner with the provided install_miner.sh script, if either the wallet name or the hotkey name contains a special character, the files are copied as wallet name = mywallet and hotkey name = default. Paths that does not contain any special characters are not affected by this issue.
The right files are copied, but the names are changed in the server to avoid inconsistencies in .env file interpretation. Having special characters (with or without escaping) in the .env file, the values are interpreted differently by the application, docker and docker compose. All of them handle shell escaping differently.
The only downside of this seems to be that the logs will contain the wrong wallet name.
The text was updated successfully, but these errors were encountered:
When installing a miner with the provided
install_miner.sh
script, if either the wallet name or the hotkey name contains a special character, the files are copied as wallet name =mywallet
and hotkey name =default
. Paths that does not contain any special characters are not affected by this issue.The right files are copied, but the names are changed in the server to avoid inconsistencies in
.env
file interpretation. Having special characters (with or without escaping) in the.env
file, the values are interpreted differently by the application, docker and docker compose. All of them handle shell escaping differently.The only downside of this seems to be that the logs will contain the wrong wallet name.
The text was updated successfully, but these errors were encountered: