Skip to content

Commit

Permalink
Fix #45
Browse files Browse the repository at this point in the history
  • Loading branch information
Neil Booth committed Feb 17, 2019
1 parent 6634fc9 commit 8c8ef13
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion electrumsv/keystore.py
Expand Up @@ -732,7 +732,6 @@ def is_private_key_list(text):
is_mpk = lambda x: is_old_mpk(x) or is_xpub(x)
is_private = lambda x: is_seed(x) or is_xprv(x) or is_private_key_list(x)
is_master_key = lambda x: is_old_mpk(x) or is_xprv(x) or is_xpub(x)
is_private_key = lambda x: is_xprv(x) or is_private_key_list(x)
is_bip32_key = lambda x: is_xprv(x) or is_xpub(x)


Expand Down

0 comments on commit 8c8ef13

Please sign in to comment.