Skip to content

Commit

Permalink
Tweak SeedRecovery Wallet Type Selector
Browse files Browse the repository at this point in the history
  • Loading branch information
3rdIteration committed Jun 17, 2024
1 parent dbc177d commit d57eea0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions btcrecover/btcrseed.py
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,7 @@ def safe_get(lst, index):
return None


@register_selectable_wallet_class("Blockchain.info legacy Wallet mnemonic V3")
@register_selectable_wallet_class("Blockchain.info Legacy Wallet Recovery Mnemonic v3")
class BlockChainPasswordV3(BlockChainPassword):

def __init__(self, loading = False):
Expand Down Expand Up @@ -961,7 +961,7 @@ def decode_v3456_word_list(self, wlist, version, checksum):
obj['password'] = self.bytes_to_string(str_bytes)
return obj

@register_selectable_wallet_class("Blockchain.info legacy Wallet mnemonic V2")
@register_selectable_wallet_class("Blockchain.info Legacy Wallet Recovery Mnemonic v2")
class BlockChainPasswordV2(BlockChainPassword):

def __init__(self, loading = False):
Expand Down Expand Up @@ -2071,7 +2071,7 @@ def _performance_xpub():

############### Ethereum ###############

@register_selectable_wallet_class('Ethereum Standard BIP39/BIP44 (Or Eth clones, depending on what is enabled in the ./derivationpath-lists/ETH.txt)')
@register_selectable_wallet_class('Ethereum Standard BIP39/BIP44 (Or Most EVM Wallets)')
class WalletEthereum(WalletBIP39):

def __init__(self, path = None, loading = False):
Expand Down Expand Up @@ -3866,7 +3866,7 @@ def body(self, master):
for i, (cls, desc) in enumerate(selectable_wallet_classes):
self._index_to_cls.append(cls)
tk.Radiobutton(master, variable=self._selected_index, value=i, text=desc) \
.pack(anchor=tk.W)
.grid(row = i % 20, column = i // 20, sticky = tk.W, pady = 0)
def validate(self):
if self._selected_index.get() < 0:
tk.messagebox.showwarning("Wallet Type", "Please select a wallet type")
Expand Down

0 comments on commit d57eea0

Please sign in to comment.