Skip to content

Commit 2fe30ef

Browse files
committed
Fix seed found derivation path display
1 parent d2023a1 commit 2fe30ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

btcrecover/btcrseed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1417,7 +1417,7 @@ def _verify_seed(self, arg_seed_bytes, salt = None):
14171417
global seedfoundpath
14181418
seedfoundpath = "m/"
14191419
for index in current_path_index:
1420-
if index > 100:
1420+
if index >= 2147483648:
14211421
index -= 2 ** 31
14221422
seedfoundpath += str(index) + "'"
14231423
else:

0 commit comments

Comments
 (0)