Skip to content

Commit efa02f9

Browse files
authored
Update SoloMiner.py
1 parent 6a72ee4 commit efa02f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SoloMiner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def get_input(prompt, data_type=str):
3333
connection_type = get_input("Enter connection type (stratum/rpc): ").lower()
3434
pool_address = get_input("Enter the pool address: ")
3535
pool_port = get_input("Enter the pool port: ", int)
36-
user_name = get_input("Enter the user name: ")
36+
username = get_input("Enter the user name: ")
3737
password = get_input("Enter the password: ")
3838
min_diff = get_input("Enter the minimum difficulty: ", float)
3939

@@ -50,7 +50,7 @@ def get_input(prompt, data_type=str):
5050
"connection_type": connection_type,
5151
"pool_address": pool_address,
5252
"pool_port": pool_port,
53-
"user_name": user_name,
53+
"user_name": username,
5454
"password": password,
5555
"min_diff": min_diff,
5656
"rpc_user": rpc_user,

0 commit comments

Comments
 (0)