From a1189bfe942f53102ab01330ad025aabcdc8cea7 Mon Sep 17 00:00:00 2001 From: Russell Warren <2751728+rwarren@users.noreply.github.com> Date: Sat, 8 Jan 2022 09:35:49 -0500 Subject: [PATCH] fix hodl key selection selection when using multiple keys --- hddcoin/hodl/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hddcoin/hodl/util.py b/hddcoin/hodl/util.py index 5083bf2ea31e..be5bf155ff98 100644 --- a/hddcoin/hodl/util.py +++ b/hddcoin/hodl/util.py @@ -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("")