We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a72ee4 commit efa02f9Copy full SHA for efa02f9
1 file changed
SoloMiner.py
@@ -33,7 +33,7 @@ def get_input(prompt, data_type=str):
33
connection_type = get_input("Enter connection type (stratum/rpc): ").lower()
34
pool_address = get_input("Enter the pool address: ")
35
pool_port = get_input("Enter the pool port: ", int)
36
- user_name = get_input("Enter the user name: ")
+ username = get_input("Enter the user name: ")
37
password = get_input("Enter the password: ")
38
min_diff = get_input("Enter the minimum difficulty: ", float)
39
@@ -50,7 +50,7 @@ def get_input(prompt, data_type=str):
50
"connection_type": connection_type,
51
"pool_address": pool_address,
52
"pool_port": pool_port,
53
- "user_name": user_name,
+ "user_name": username,
54
"password": password,
55
"min_diff": min_diff,
56
"rpc_user": rpc_user,
0 commit comments