Browse Source

qml wizard: fix creating wallet from master key

fixes https://github.com/spesmilo/electrum/issues/8260
master
SomberNight 3 years ago
parent
commit
48e37696b3
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/wizard.py

2
electrum/wizard.py

@ -235,7 +235,7 @@ class NewWalletWizard(AbstractWizard):
raise NotImplementedError()
def is_bip39_seed(self, wizard_data):
return wizard_data['seed_variant'] == 'bip39'
return wizard_data.get('seed_variant') == 'bip39'
def is_multisig(self, wizard_data):
return wizard_data['wallet_type'] == 'multisig'

Loading…
Cancel
Save