1
0
(regression of 4a37668b01)
This commit is contained in:
Sander van Grieken
2024-11-19 09:13:27 +01:00
parent a04844b451
commit 49de400c27

View File

@@ -621,7 +621,8 @@ class TrustedCoinPlugin(BasePlugin):
# online continuation
xprv1, xpub1, xprv2, xpub2 = (wizard_data['xprv1'], wizard_data['xpub1'], None, wizard_data['xpub2'])
else:
xprv1, xpub1, xprv2, xpub2 = self.xkeys_from_seed(wizard_data['seed'], wizard_data['seed_extra_words'])
seed_extension = wizard_data['seed_extra_words'] if wizard_data['seed_extend'] else ''
xprv1, xpub1, xprv2, xpub2 = self.xkeys_from_seed(wizard_data['seed'], seed_extension)
data = {'x1': {'xpub': xpub1}, 'x2': {'xpub': xpub2}}