Skip to content

Commit

Permalink
fix hodl key selection selection when using multiple keys
Browse files Browse the repository at this point in the history
  • Loading branch information
rwarren committed Jan 9, 2022
1 parent ef60cb8 commit a1189bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hddcoin/hodl/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ async def callCliCmdHandler(handler: th.Callable,
else:
vlog(1, "Prompting user for fingerprint (since none was specified)")
print("Choose the wallet key/fingerprint you would like to use:")
for i, fp in enumerate(sorted(fingerprints), 1):
for i, fp in enumerate(fingerprints, 1):
print(f" {i}: {fp}")
print("Enter a number, or pick q to quit [q]: ", end = "")
response = input("")
Expand Down

0 comments on commit a1189bf

Please sign in to comment.